Create Portable Executable of LC IDE and my app
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Create Portable Executable of LC IDE and my app
Dear Geniuses,
Livecode has a bug that makes my app useless as a standalone. Its being worked on, but we have to wait basically another month before a stable release minus this bug is available. Everything works fine in the IDE however... so I wanted to engage some of my beta users by creating a "portable" version of livecode IDE and my app ....
My question is, is it possible to launch a stack inside the IDE and hide the development tools on startup?....I'm going to attempt to create a portable app .... I can't wait another month to start testing, and do not wish to ask my beta users to install livecode IDE.
Any thoughts on this ?
Thanks,
Tom
Livecode has a bug that makes my app useless as a standalone. Its being worked on, but we have to wait basically another month before a stable release minus this bug is available. Everything works fine in the IDE however... so I wanted to engage some of my beta users by creating a "portable" version of livecode IDE and my app ....
My question is, is it possible to launch a stack inside the IDE and hide the development tools on startup?....I'm going to attempt to create a portable app .... I can't wait another month to start testing, and do not wish to ask my beta users to install livecode IDE.
Any thoughts on this ?
Thanks,
Tom
Founder & Developer @ MakeShyft R.D.A - https://www.makeshyft.com
Build Software with AppStarterStack for Livecode - https://www.AppStarterStack.com
Save Time with The Time Saver's Toolbox - https://www.TimeSaversToolbox.com
Build Software with AppStarterStack for Livecode - https://www.AppStarterStack.com
Save Time with The Time Saver's Toolbox - https://www.TimeSaversToolbox.com
Re: Create Portable Executable of LC IDE and my app
Code: Select all
on hideLCStacks
put "revTools","revMenubar","revProjectBrowser" into theStacks
repeat for each item theStack in theStacks
if the visible of stack theStack then
hide stack theStack
end if
end repeat
end hideLCStacks
EDIT: its "revIDEProjectBrowser" for livecode 8
Knowledge is meant to be shared.
Re: Create Portable Executable of LC IDE and my app
Just out of curiosity, what is the bug?
Knowledge is meant to be shared.
Re: Create Portable Executable of LC IDE and my app
There is an option "suspend development tools" in menu "Development"makeshyft wrote: Any thoughts on this ?
Should not be too complicate to find the command sent behind.
Then, build a small plugin which starts during LC IDE startup and send the message found above.
There is still this little stack "Restore tools" to hide.
I've never done that, but as you said: Any thoughts on this ?
HTH and good luck.
Thierry
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: Create Portable Executable of LC IDE and my app
The next version of my devolution toolkit extends the Hide Tools button to include all IDE stuff, including the "Restore IDE" stack - it uses:Thierry wrote:There is still this little stack "Restore tools" to hide.
I've never done that, but as you said: Any thoughts on this ?
Code: Select all
set the vis of stack "revRestore" to false
revIDESuspendDevelopmentTools
If you need to restore the IDE environment you can do the reverse:
Code: Select all
revIDERestoreDevelopmentTools
set the vis of stack "revRestore" to true
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Re: Create Portable Executable of LC IDE and my app
Hi Tom,
With a fresh mind in an early sunny morning...
Here is a tool I'm using since more than a year: lcxcode
In simple words,
I get rid of *all* the stacks of the Edinburgh LC IDE and write my own home.rev stack.
This is the smallest IDE I've seen so far, and the fun is: with almost no GUI.
All the user interface is done in Xcode.
This allows me when coding any external in Xcode, with *one* simple keyboard shortcut,
to compile the external, build the LiveCode standalone of my Test stack, install it on y iPad,
launch it, starts it and then I can start testing it within an Xcode debugger session.
All this process is pretty fast, and much more convenient than using the simulator.
Therefore, in your case, you could take the same approach and build your own
which starts your stack...
Not knowing your skills, this solution might be not what you are looking for.
Good luck,
Thierry
With a fresh mind in an early sunny morning...
Here is a tool I'm using since more than a year: lcxcode
In simple words,
I get rid of *all* the stacks of the Edinburgh LC IDE and write my own home.rev stack.
This is the smallest IDE I've seen so far, and the fun is: with almost no GUI.
All the user interface is done in Xcode.
This allows me when coding any external in Xcode, with *one* simple keyboard shortcut,
to compile the external, build the LiveCode standalone of my Test stack, install it on y iPad,
launch it, starts it and then I can start testing it within an Xcode debugger session.
All this process is pretty fast, and much more convenient than using the simulator.
Therefore, in your case, you could take the same approach and build your own
which starts your stack...
Not knowing your skills, this solution might be not what you are looking for.
Good luck,
Thierry
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
Re: Create Portable Executable of LC IDE and my app
Nice.
Nice. Nice.Your message contains 5 characters. The minimum number of characters you need to enter is 10.
PowerDebug http://powerdebug.ahsoftware.net
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev