Search found 9107 matches

by FourthWorld
Mon Nov 05, 2012 8:07 pm
Forum: Mac OS
Topic: Display Home folder space in Menu Bar
Replies: 7
Views: 5447

Re: Display Home folder space in Menu Bar

The diskSpace function may help.
by FourthWorld
Fri Nov 02, 2012 11:33 pm
Forum: SoCal LiveCode Group
Topic: November Meeting
Replies: 7
Views: 8864

Re: November Meeting

Yep, sockets can be a lot of fun but will take some experimentation to use well. I like 'em for peer-to-peer apps, but for client-server I prefer working at a higher level letting HTTP do most of the work, being a well-defined protocol with lots of tools available. I'll dig up that mchttpd stack and...
by FourthWorld
Fri Nov 02, 2012 9:44 pm
Forum: SoCal LiveCode Group
Topic: November Meeting
Replies: 7
Views: 8864

Re: November Meeting

This Lesson is a good introduction to using sockets in LiveCode: http://lessons.runrev.com/s/lessons/m/4071/l/12924-how-to-communicate-with-other-applications-using-sockets If there's interest I could dig up the old mchttpd stack and pass it around as an example of making a simple web server entirel...
by FourthWorld
Fri Nov 02, 2012 9:42 pm
Forum: Announcements
Topic: GLX2 script editor released for Revolution
Replies: 62
Views: 95879

Re: GLX2 script editor released for Revolution

Nice work on the update, Mark. I appreciate your continued support of this FOSS effort.
by FourthWorld
Fri Nov 02, 2012 3:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [SOLVED] Is there a 5.5 trial available somewhere?
Replies: 22
Views: 16796

Re: Is there a 5.5 trial available somewhere?

LiveCode is currently at v5.5.3, available at runrev.com
by FourthWorld
Fri Nov 02, 2012 3:47 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Image Transparent Color
Replies: 3
Views: 3056

Re: Image Transparent Color

JPG doesn't support transparency.

IIRC PNG supports it through the alpha channel, rather than through the setting of a color as with GIF.

PNG alpha data can be obtained through the image's alphaData property, and you can manipulate those pixels however you want.
by FourthWorld
Fri Nov 02, 2012 3:45 pm
Forum: Android Deployment
Topic: How to test a LiveCode app on Android
Replies: 2
Views: 2756

Re: test

What sort of test do you want to try?
by FourthWorld
Fri Nov 02, 2012 3:44 pm
Forum: Android Deployment
Topic: Support for Density-independent Pixel
Replies: 1
Views: 2525

Re: Support for Density-independent Pixel

LC v5.5.3 includes a mobilePixelDensity function.
by FourthWorld
Fri Nov 02, 2012 3:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving text from text field to .txt file
Replies: 3
Views: 2319

Re: Saving text from text field to .txt file

Any changes to your main application can be saved within the application... ...provided you've set the filename property of the stack being saved to a writable location. Keep in mind that most OSes won't allow writes to the location where the app is stored, so you'll want to move any savable elemen...
by FourthWorld
Wed Oct 31, 2012 9:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: array to string and string to array?
Replies: 8
Views: 8448

Re: array to string and string to array?

I've been using split and combine. What does your source data look like?
by FourthWorld
Wed Oct 31, 2012 8:32 pm
Forum: SoCal LiveCode Group
Topic: November Meeting
Replies: 7
Views: 8864

Re: November Meeting

It seems Paul is organizing a meeting for November:
http://lists.runrev.com/pipermail/use-l ... 79655.html
by FourthWorld
Mon Oct 29, 2012 7:21 pm
Forum: Mac OS
Topic: Newline character for logging
Replies: 7
Views: 6775

Re: Newline character for logging

I still don't understand why, if I'm on OS X, LiveCode thinks that a CR is the correct end-of-line marker The reason is largely historical, but at this point protects legacy code written expecting it. Before OS X the Mac line ending was always ASCII 13, and since OS X is a Unix much of the OS now u...
by FourthWorld
Mon Oct 29, 2012 5:13 pm
Forum: Mac OS
Topic: Newline character for logging
Replies: 7
Views: 6775

Re: Newline character for logging

It may be worth noting that for most logging the data can get quite large, so rather than writing log entries by putting the entire container in the file as a whole thing, you may want to consider incrementally appending the log as most logging tools do. In LiveCode you can do this by opening the fi...
by FourthWorld
Mon Oct 29, 2012 5:09 pm
Forum: Mac OS
Topic: Newline character for logging
Replies: 7
Views: 6775

Re: Newline character for logging

Similar to how you can specify "text" or "binary" when using the "open file" command, you can also specify binary mode with using the "put...url" syntax as well by just replacing "file:" with "binfile:".
by FourthWorld
Mon Oct 29, 2012 3:17 pm
Forum: Mac OS
Topic: Newline character for logging
Replies: 7
Views: 6775

Re: Newline character for logging

The LiveCode engine uses ASCII 10 as the value for the constant "CR" internally, in fields, variables, etc. This is the same line-break character used on Unix, where the engine was born in '92, and also uses this on Linux, the first platform the engine was ported to and the one which uses the same c...

Go to advanced search