Search found 993 matches
- Thu Jun 13, 2019 2:11 pm
- Forum: Community Projects
- Topic: LC 9.0.4 GLX Mac and Win app - saving standalone errors
- Replies: 7
- Views: 4250
Re: LC 9.0.4 GLX Mac and Win app - saving standalone errors
@Martin - I don't know the cause of the error so I only have suggestions of where to look. if you look at the Standalone builder settings for your stack is the merge code selected in the Inclusions tab? If you don't see it in the Inclusions tab maybe check the custom properties of the stack to see i...
- Thu Jun 06, 2019 7:54 pm
- Forum: Community Projects
- Topic: LC 9.0.4 GLX Mac and Win app - saving standalone errors
- Replies: 7
- Views: 4250
Re: LC 9.0.4 GLX Mac and Win app - saving standalone errors
Looking at the Levure packaging code I see that I had to start creating the folder passed as the 2nd param to `revSaveAsStandalone`. So try creating `theOutputFolder`using `create folder` first. I also have code in Levure that assigns a custom property of the stack that is being built as a standalon...
- Thu Jun 06, 2019 5:19 pm
- Forum: Community Projects
- Topic: LC 9.0.4 GLX Mac and Win app - saving standalone errors
- Replies: 7
- Views: 4250
Re: LC 9.0.4 GLX Mac and Win app - saving standalone errors
Error 91 is "can't find stack". Line 72 is the line of whatever script was executed. I haven't tried building any GLX standalones in LC 9. I know the standalone builder has changed so you will probably have to inspect the GLX plugin code and put sprinkle some debugging statements in to see what is g...
- Thu Jun 06, 2019 4:44 pm
- Forum: Community Projects
- Topic: Converting LC 6.7.3 App(GLX based) with Data Grids to LC9 - updating the stacks' version required?
- Replies: 3
- Views: 2559
Re: Converting LC 6.7.3 App(GLX based) with Data Grids to LC9 - updating the stacks' version required?
Thanks for the update. I’m glad you got it working.
- Mon May 27, 2019 11:56 pm
- Forum: Community Projects
- Topic: Converting LC 6.7.3 App(GLX based) with Data Grids to LC9 - updating the stacks' version required?
- Replies: 3
- Views: 2559
Re: Converting LC 6.7.3 App(GLX based) with Data Grids to LC9 - updating the stacks' version required?
Martin,
I don’t know why you are seeing that error. As to your question about updating all stacks in the GLX project, GLX is irrelevant in this case. GLX doesn’t care on way or the other as it is the engine that handles open stack files.
I don’t know why you are seeing that error. As to your question about updating all stacks in the GLX project, GLX is irrelevant in this case. GLX doesn’t care on way or the other as it is the engine that handles open stack files.
- Fri May 24, 2019 6:47 pm
- Forum: Community Projects
- Topic: GLX Application Framework based app in LC 9.0.5 - preferences.bundle external not loading
- Replies: 3
- Views: 2492
Re: GLX Application Framework based app in LC 9.0.5 - preferences.bundle external not loading
You’re welcome. I’m glad all of the work was already done 

- Fri May 24, 2019 1:41 pm
- Forum: Community Projects
- Topic: GLX Application Framework based app in LC 9.0.5 - preferences.bundle external not loading
- Replies: 3
- Views: 2492
Re: GLX Application Framework based app in LC 9.0.5 - preferences.bundle external not loading
Martin, The external is 32-bit and Livecode 9.0.5 is going to default to opening as 64-bit. Try downloading Levure and grabbing the Preferences external from the ./framework/helpers/preferences folder. That should work with 64-bit. Levure uses an extension by default but the external was updated wit...
- Fri Apr 05, 2019 10:57 pm
- Forum: Talking LiveCode
- Topic: Does `open socket` work with unix domain sockets?
- Replies: 0
- Views: 1086
Does `open socket` work with unix domain sockets?
I'm experimenting with watchman and trying to use the socket interface. It uses a unix domain socket. From the command line I can get the path to the file by issuing the following command: watchman get-sockname The output providers the path to the file: { "version": "4.9.0", "sockname": "/usr/local/...
- Wed Mar 06, 2019 2:58 pm
- Forum: LiveCode Builder
- Topic: Need help on how can I build an extension for my external dll and call it on my livecode builder
- Replies: 3
- Views: 2632
Re: Need help on how can I build an extension for my external dll and call it on my livecode builder
@jpags.me - `string` is not a valid variable type for foreign handlers. You can use ZStringNative, ZStringUTF8, or ZStringUTF16. This file lists them and has descriptions: https://github.com/livecode/livecode/blob/develop/docs/specs/lcb-type-naming.md A reference to ZString should appear in the LCB ...
- Wed Feb 06, 2019 8:59 pm
- Forum: Community Projects
- Topic: App Updater helper for Levure
- Replies: 37
- Views: 18126
Re: App Updater helper for Levure
That is correct.
- Wed Feb 06, 2019 8:55 pm
- Forum: Community Projects
- Topic: App Updater helper for Levure
- Replies: 37
- Views: 18126
Re: App Updater helper for Levure
For Sparkle I just use the DMG file that users download. WinSparkle expects an installer. I pass it one made with Inno Setup. Just make sure you set the proper command line arguments for Inno Setup in the appcast.xml file.
- Wed Feb 06, 2019 8:43 pm
- Forum: Community Projects
- Topic: App Updater helper for Levure
- Replies: 37
- Views: 18126
Re: App Updater helper for Levure
Update your appcast.xml template and use `[[VERSION]].[[BUILD]]` instead of just `[[BUILD]]` for the Windows `sparkle:version` setting. WinSparkle uses the full version from the exe file rather than the build number like Sparkle does. I just updated the app_updater helper with this change a little o...
- Wed Feb 06, 2019 5:33 am
- Forum: Community Projects
- Topic: Levure confusion
- Replies: 5
- Views: 2821
Re: Levure confusion
If you wanted to get to the bottom of it you could sprinkle some messages in the `windowManager.livecodescript` `openCard` handler to see if it ever gets called. There is an `if` statement in there so you could verify A) if `openCard` is making it to the `windowManager` script and B) if `set the vis...
- Sun Feb 03, 2019 12:15 am
- Forum: Community Projects
- Topic: Bakers Assistant for Levure apps
- Replies: 1
- Views: 1884
Bakers Assistant for Levure apps
I uploaded a new IDE plugin for use with Levure applications. It is still in the early stages of development but it makes it much easier (IMO) to browser my Levure apps within the IDE. Currently it lists your UI stacks, Template stacks, libraries, frontscripts, backscripts, and helpers. Github Repo:...
- Sat Feb 02, 2019 9:39 pm
- Forum: Community Projects
- Topic: Levure confusion
- Replies: 5
- Views: 2821
Re: Levure confusion
In the message_watcher.livecodescript file you will find the code that manages windows. Because of a bug in versions of LC earlier than 9.0.3 (still in development) the stack window is hidden in preOpenStack. In the windowManager.livecodescript file the window will be shown again in the openCard han...