Tony-
Sunday, October 17, 2004, 12:52:10 AM, you wrote:
TP> I want to create a command line application that will
TP> work on windows or a flavor of unix. The Unix box is
TP> rack mounted so there is no terminal or GUI running on
TP> it.
put your code in the preOpenStack handler:
on preOpenStack
start using "someStack"
-- handle command line arguments here
put lower($1) into theCommandLine
if the last char of theCommandLine is space then
delete the last char of theCommandLine
end if
switch char 2 of theCommandLine
case "t"
hide this stack
OpenStack -- do the work
write field "txtTasks" to stdout
quit
break
default
if theCommandLine is not empty then
write "$1=" & theCommandLine & "." to stdout
end if
break
end switch
end preOpenStack
--
-Mark Wieder
[EMAIL PROTECTED]
_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution