Recently, Magnus von Br�msen wrote: > So, can anybody tell me what is wrong with this script: > > on mouseUp > ask file "Save your order" with "Untitled.txt" > if it is empty then exit mouseUp > open it > write field "totalOrder" to file it > end mouseUp
Looks like you're missing a line to finish the write command. Try this: open file it write field "totalOrder" to file it close file it Regards, Scott Rossi Creative Director Tactile Media, Multimedia & Design Email: [EMAIL PROTECTED] Web: www.tactilemedia.com _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
