Search found 4 matches

by jason.lubken
Sat Oct 06, 2007 9:36 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Setting image quality programmatically
Replies: 2
Views: 3807

Thanks so much Lynn. Things look terrible with 'Normal', but scaling is too slow in some cases with 'Best'. I couldn't agree more with the documentation issues. I don't know why this property isn't part of the properties array either...

Thanks again!
by jason.lubken
Sat Oct 06, 2007 7:38 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Setting image quality programmatically
Replies: 2
Views: 3807

Setting image quality programmatically

There is an image property named "Quality" which allows one to select "Normal", "Good" or "Best" via a combobox. Is there a way to access this property programmatically? It doesn't appear to be included in the properties array of the image.

Thanks
by jason.lubken
Tue Sep 18, 2007 7:08 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Importing PNGs
Replies: 1
Views: 2753

Importing PNGs

Am I missing some important step before importing PNGs? On Windows XP, I have imported the images from: http://entropymine.com/jason/testbed/pngtrans/ ... using "import paint from file..." with the paintCompression set to PNG, but only two or three of the images appear correctly. Is the libpng that ...
by jason.lubken
Fri Sep 14, 2007 4:25 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Getting only the immediate child groups of a group
Replies: 1
Views: 3142

Getting only the immediate child groups of a group

I've tried something like... function childGroupExists theChildGroupName, theParentGroup repeat with i = 1 to the number groups in theParentGroup if the name of group i of theParentGroup is theChildGroupName then return true end if end repeat return false end childGroupExists ... but "the number of ...