At 5:11 AM -0800 1/18/2002, Mike McManus wrote: >Why does the line > >replaceText((line n of textToParse),"red","blue") > >always generate the error: Expression: missing ')' before factor.
It's because it's not a complete Transcript statement. Every valid statement starts with a command, and replaceText isn't a command - it's a function. You can fix this by simply changing it to something like put replaceText ((line n of textToParse),"red","blue") into line n of textToParse -- Jeanne A. E. DeVoto ~ [EMAIL PROTECTED] http://www.runrev.com/ Runtime Revolution Limited - Power to the Developer! _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
