Search found 77 matches
- Tue Sep 08, 2015 11:23 pm
- Forum: Linux
- Topic: LiveCode Standalone Application Not Working
- Replies: 4
- Views: 6250
Re: LiveCode Standalone Application Not Working
I'm using LiveCode 7.1 (rc1)
- Tue Sep 08, 2015 10:09 pm
- Forum: Linux
- Topic: LiveCode Standalone Application Not Working
- Replies: 4
- Views: 6250
Re: LiveCode Standalone Application Not Working
Running from the command line gives no messages. It just immediately closes. I used ldd to list the dependencies, each ending with ".so.1" and ".so.6". Every dependency listed can be found in my /usr/lib and /lib directories. The only exception is linux-gate.so.1 which points to 0xffffe000 instead o...
- Tue Sep 08, 2015 3:50 am
- Forum: Linux
- Topic: LiveCode Standalone Application Not Working
- Replies: 4
- Views: 6250
LiveCode Standalone Application Not Working
I have been attempting to make a media center using an old tablet-like PC running SliTaz-JustX with a UI application I made in LiveCode to manage the media on an external drive slot. The problem is that the standalone I created will not run. It returns an error code 1 immediately on starting without...
- Sun Jul 26, 2015 8:51 am
- Forum: Talking LiveCode
- Topic: Severe Memory Leak Problems
- Replies: 4
- Views: 3921
Re: Severe Memory Leak Problems
Submitted bug report.
http://quality.runrev.com/show_bug.cgi?id=15646
http://quality.runrev.com/show_bug.cgi?id=15646
- Sun Jul 26, 2015 12:57 am
- Forum: Talking LiveCode
- Topic: Severe Memory Leak Problems
- Replies: 4
- Views: 3921
Severe Memory Leak Problems
I have been playing around with images and files in LiveCode and have noticed some extremely severe memory leaks. It seems as though LiveCode likes to create new versions of variables when changing scope and then quickly lose the pointers to the previous versions, making them impossible to delete or...
- Tue Apr 28, 2015 12:53 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Initialization Error - failed to load external?
- Replies: 7
- Views: 7558
Re: Initialization Error - failed to load external?
Same problem here. Even with all inclusions disabled the revdb.dll file persists as though it was selected for inclusion and the program crashes with an error if the dll is not there even though it was not directly included and will not be used. As far as I can tell, nothing can be done to prevent t...
- Tue Apr 28, 2015 12:23 am
- Forum: Talking LiveCode
- Topic: Problems with media files
- Replies: 1
- Views: 2253
Re: Problems with media files
Nevermind about the files not playing. It was just that my updater was not working and I was stuck at LC 7.0.0.
I'd still like the option of playing files located in memory instead of on disk, but that's probably not happening for some time.
I'd still like the option of playing files located in memory instead of on disk, but that's probably not happening for some time.
- Mon Apr 27, 2015 11:34 pm
- Forum: Talking LiveCode
- Topic: Problems with media files
- Replies: 1
- Views: 2253
Problems with media files
I was working on a project involving a cross-platform VHD-type file being run within a virtualized OS. My intention was to perform all functions internally (as in, not write out files from this virtual disk unless the user directly attempts to do so), but I am having serious problems with the video ...
- Mon Sep 22, 2014 6:52 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: player looping problem
- Replies: 16
- Views: 14409
Re: player looping problem
I apologize for reviving a very old thread, but this problem has yet to be solved. The player still pauses for a small time before restarting the loop even with uncompressed audio. I've tried to work around this and have made a command that mimics seamless looping, but it isn't very efficient. It wo...
- Wed Feb 26, 2014 5:56 am
- Forum: Talking LiveCode
- Topic: Global Functions?
- Replies: 3
- Views: 4531
Global Functions?
Is there any way to set a function as "global" so that it can be called from any handler in the same stack or subsequent substacks in similar fashion as global variables? There are other ways of doing a similar thing, but this would be very useful since I'd rather not change it to an "on ..." or nee...
- Mon Feb 24, 2014 5:41 am
- Forum: Talking LiveCode
- Topic: Some Windows Function Magic Here...
- Replies: 7
- Views: 5963
Re: Some Windows Function Magic Here...
Thanks Simon. I just figured, if I knew how to do it in c++, and I didn't know how to make an "external" for LiveCode, I might as well make an extension process instead. There's really nothing to it. I decided to start putting my progress on here as I go because I'm sure there's someone out there wh...
- Mon Feb 24, 2014 2:39 am
- Forum: Talking LiveCode
- Topic: Some Windows Function Magic Here...
- Replies: 7
- Views: 5963
Re: Some Windows Function Magic Here...
It's just one of those weekends when I don't have anything better to do than to play around with this... so here's some more stuff. I've added a few more functions and set it up to be called from inside the IDE without shell calls. The ".ext" executable I added works like a small, backgrounded exten...
- Sun Feb 23, 2014 6:28 am
- Forum: Talking LiveCode
- Topic: Some Windows Function Magic Here...
- Replies: 7
- Views: 5963
Re: Some Windows Function Magic Here...
I jumped the gun a bit earlier. Here's another executable with a bunch more Windows API functions that might prove useful for anyone working on things that need them. Now you can access other programs' windows as well. You'd probably never need to use a most of them, but here they are anyway. Just r...
- Sun Feb 23, 2014 4:15 am
- Forum: Talking LiveCode
- Topic: Some Windows Function Magic Here...
- Replies: 7
- Views: 5963
Some Windows Function Magic Here...
I'm still working on it, but I thought I might as well share what I have so far with others since this exists nowhere else online. Here's a small and very simple windows c++ executable I have been working on that allows you to lock programs to the desktop and/or modify the desktop workspace so that ...
- Thu Dec 19, 2013 3:18 am
- Forum: Feature Proposals
- Topic: New keyword pixel?
- Replies: 18
- Views: 8529
Re: New keyword pixel?
Well it's good to know that it isn't entirely impossible to just change the image's pixels to what you want. In fact, this method doesn't sound all that bad and can be done fairly quickly with a repeat loop. Having the ability to just do "set pixel (x,y) of img "imageName" to (A,R,G,B)" would make t...