Open a stack on the desktop
Posted: Wed Jul 29, 2020 10:38 pm
Hi all,
Where can I find the code to open a stack on the desktop from a standalone?
Max
Where can I find the code to open a stack on the desktop from a standalone?
Max
Questions and answers about the LiveCode platform.
https://forums.livecode.com/
Code: Select all
open stack(specialFolderPath("Desktop") & "/your_stacks-name.livecode")
Code: Select all
go url("binFile:" & specialFolderPath("Desktop") & "/your_stacks-name.livecode")
here!maxs wrote: Wed Jul 29, 2020 10:38 pmWhere can I find the code to open a stack on the desktop from a standalone?
Code: Select all
...
put specialfolderpath("desktop") & "/name of your stack here.livecode" into tStack
go stack tStack
...