contents   index   previous   next



interface: SEGetResourceFunction

 

public boolean seGetResourceFunc(SEContext se, int id, 

                                 StringBuffer buf);

ScriptEase uses a number of text string resources, which it has internal string values for. You can implement this interface to override those values. This is useful for internalization, to translate the text strings into whatever language is appropriate. The id parameter indicates which resource ScriptEase is trying to access. You fill in the buf with the text you'd like to give the resource.

 

The list of identifier numbers and the English strings corresponding to them can be found in Include\rsrccore.jh and Include\rsrclib.jh.

 

 

 


interface: SEPrepareContext