stand alone
Posted: Sat Oct 20, 2007 7:27 pm
how do i build a stand alone player so a user on a different computer can play my project? when my rev program starts it asks about ide and laucher. i don't know how to implement them.
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on preOpenstack
hide this stack
set the itemDel to slash
set the defaultFolder to item 1 to -2 of the effective filename of this stack
go stack "Your Stack.rev" in new window
end preOpenStack
Code: Select all
on preOpenstack
lock messages
hide this stack
set the itemDel to slash
set the defaultFolder to item 1 to -2 of the effective filename of this stack
go stack "Your Stack.rev" in new window
send "startUp" to cd 1 of stack "Your Stack" -- short name
send "preOpenStack" to cd 1 of stack "Your Stack"
-- send as needed, until all
-- necessary handlers ran in the correct sequence
end preOpenStack