script (opentype Feature)

Discuss FontCreator here, please do not post support requests, feature requests, or bug reports!
Post Reply
raghugada
Posts: 5
Joined: Fri Mar 31, 2017 8:04 am

script (opentype Feature)

Post by raghugada »

Hi,
I am trying to substitute glyps using open type feature

using the script
....
feature start{
lookup test;
}
lookup test{
sub j k -> l;
}

after successfuly executing the script i see its not showing substitution
Erwin Denissen
Moderator
Moderator
Posts: 11108
Joined: Fri Oct 04, 2002 12:41 am
Location: Bilthoven, The Netherlands
Contact:

Re: script (opentype Feature)

Post by Erwin Denissen »

Make sure the feature is added to the corresponding Script-Language.

Code: Select all

script latn {
  feature start;
}

feature start liga {
  lookup test;
}

lookup test {
  sub j k -> l;
}
Also ensure you have enabled the specific feature:
Ligature.png
Ligature.png (46.95 KiB) Viewed 2894 times
Erwin Denissen
High-Logic
Proven Font Technology
Post Reply