stand alone
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
stand alone
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.
Dear rushvan,
The easiest way to do this is to use a so-called splash stack, which opens the mainstack of your project automatically. You need a script in the "splash" stack similar to this:
Now make a standalone of this splash-stack and it should open your mainstack. Of course, if you have a startUp handler in your mainstack, you need to make sure that this handler runs before any other handler. For example, with
You will have to adjust above script to the requirements of your own project.
Best,
Mark
The easiest way to do this is to use a so-called splash stack, which opens the mainstack of your project automatically. You need a script in the "splash" stack similar to this:
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
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
-
- Posts: 11
- Joined: Sun May 14, 2006 9:10 am
You can try "Broadcast". It is a tool to distributing an application made with Media. It can be downloaded on my Web site (http://www.auverlot.fr/broadcasten.html).
Olivier
http://www.auverlot.fr
Olivier

http://www.auverlot.fr