Richmond Mathewson wrote:
Hey, Look, Richmond is reinventing the wheel :)

would be grateful if anybody can tell me why:

put the charToNum(char 10 of the mask of img"GOTTIT") into fld "fNEW"

throws a

        compiling at 7:39:53 PM
Type    Function: missing 'of'
Object  Mask
Line    put the charToNum(char 10 of the mask of img"GOTTIT") into fld "fNEW"
Hint    

the thing that I like the most is the 'Hint' :)

There are two ways to write built-in functions:

 function()

or:

 the function of

You are combining the two, and like it says, you are missing "of". You can fix it either of these ways:

 put the charToNum of char 10 of the mask of img"GOTTIT" into fld "fNEW"
 put charToNum(char 10 of the mask of img"GOTTIT") into fld "fNEW"

--
Jacqueline Landman Gay         |     [email protected]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
  • Mask Richmond Mathewson
    • Re: Mask J. Landman Gay
    • Mask Richmond Mathewson

Reply via email to