Search found 95 matches

by Ledigimate
Fri Mar 10, 2017 9:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Cannot get LC 8.1.3 to make an Android file
Replies: 1
Views: 1682

Re: Cannot get LC 8.1.3 to make an Android file

Hi David

Do you see an error message when you save as standalone application?

- Gerrie
by Ledigimate
Sat Mar 04, 2017 10:49 am
Forum: Talking LiveCode
Topic: Scripting Style - Backscript or start using
Replies: 5
Views: 3593

Re: Scripting Style - Backscript or start using

Hmm... thanks J-M, I was planning to make my app update itself by downloading stacks from a server. You've just saved me a lot of future frustration. But it does make sense, though. Apple cannot approve apps which can add unapproved features to itself.
by Ledigimate
Tue Feb 28, 2017 10:48 am
Forum: iOS Deployment
Topic: Datagrids are corrupted
Replies: 3
Views: 3346

Re: Datagrids are corrupted

Hi Max

One possible cause is if you're handling the saveStackRequest message in your script. Datagrids internally handle this message and will break if your own saveStackRequest handler doesn't pass on the message.

- Gerrie
by Ledigimate
Tue Feb 28, 2017 8:56 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: revSEObjectDeleted error SOLVED
Replies: 2
Views: 2445

Re: revSEObjectDeleted error

Hi Jean-Marc,

If you comment out the line of code in question, does it still show any error when the stack is opened?

- Gerrie
by Ledigimate
Mon Feb 27, 2017 12:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Script of Datagrid Group triggered by Click in Scrollbar
Replies: 3
Views: 2400

Re: Script of Datagrid Group triggered by Click in Scrollbar

That's great :D The part you've commented out also takes the visibility of the datagrid's scrollbars into account, because if not then it would behave as if they were visible even when they're not. To see what I mean you need to play with the datagrid's "Show hScrollbar" or "Show vScollbar" properti...
by Ledigimate
Sat Feb 25, 2017 7:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Script of Datagrid Group triggered by Click in Scrollbar
Replies: 3
Views: 2400

Re: Script of Datagrid Group triggered by Click in Scrollbar

Hi Monty, You can use the following code to mask out the datagrid scrollbars: on mouseUp pButton local hScrollClicked, vScrollClicked if pButton is 1 then put the clickLoc into tLoc put (the dgProps["show hscrollbar"] of me) and within(scrollbar 1 of me, tLoc) into hScrollClicked put (the dgProps["s...
by Ledigimate
Sat Feb 25, 2017 9:26 am
Forum: Talking LiveCode
Topic: Datagrid - strange behavior
Replies: 8
Views: 5585

Re: Datagrid - strange behavior

Hi Simon I've also dealt with custom datagrids that seemed to break for no apparent reason, and eventually found that in my case it was caused by one really important line of code which was missing from my saveStackRequest handler. If you handle the saveStackRequest message in a stack with a datagri...
by Ledigimate
Tue Feb 21, 2017 6:27 pm
Forum: Talking LiveCode
Topic: Imported vs. referenced images - performance benefit?
Replies: 5
Views: 3006

Re: Imported vs. referenced images - performance benefit?

Thank you so much Jean-Marc, :D you've saved me a lot of work!

I'll adapt your script for my stack and I will let you know how my stack performs after the images has been converted.
by Ledigimate
Mon Feb 20, 2017 6:18 pm
Forum: Talking LiveCode
Topic: Imported vs. referenced images - performance benefit?
Replies: 5
Views: 3006

Re: Imported vs. referenced images - performance benefit?

I need to find a way to automate the image conversion process, because I would hate having to convert each image by hand, one-by-one. If there's anyone out there who has had to do this before, and you can provide a conversion script I can use, I would appreciate that so much. In the mean time, I'll ...
by Ledigimate
Mon Feb 20, 2017 2:59 pm
Forum: Talking LiveCode
Topic: Imported vs. referenced images - performance benefit?
Replies: 5
Views: 3006

Imported vs. referenced images - performance benefit?

Dear LiveCoders, I have an app that makes extensive use of imported images in its user interface. Something I've noticed is that my stack's file size is quite big. I know I can decrease the file size by using referenced images in stead of imported images, but before I embark on the cumbersome task o...
by Ledigimate
Wed Dec 21, 2016 10:07 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How stop iTunes playing in a sandboxed app?
Replies: 2
Views: 2199

Re: How stop iTunes playing in a sandboxed app?

A sandboxed app isn't supposed to be able to interact with other applications via applescript because if it could, wouldn't that defeat the purpose of the sandbox?
by Ledigimate
Tue Dec 13, 2016 1:18 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Listing all the stacks that make up a stack
Replies: 2
Views: 2048

Re: Listing all the stacks that make up a stack

the mainStacks
lists all main stacks currently loaded into memory (one stack per line).

the subStacks of stack "mainStackName"
lists the substacks of a main stack, (one per line).

I hope this helps.

Gerrie
by Ledigimate
Thu Dec 08, 2016 4:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: why check box does not move when stack is resized?
Replies: 2
Views: 2470

Re: why check box does not move when stack is resized?

In the datagrid's behavior script, change ## Expand field to fill available width put the rect of btn "btnCheck" of me into theFieldRect put item 3 of pControlRect - 5 into item 3 of theFieldRect set the rect of btn "btnCheck" of me to theFieldRect to ## Reposition the check box set the left of btn ...
by Ledigimate
Fri Dec 02, 2016 7:50 am
Forum: Android Deployment
Topic: Simple button animation not working on Android...
Replies: 13
Views: 8313

Re: Simple button animation not working on Android...

An alternative to using a button and seperate image objects for each frame, is taking advantage of LiveCode's built-in support for animated GIFs. You would then have only one image that animates automatically, so there would be no need for sending messages to make it animate. You can use messages to...
by Ledigimate
Thu Nov 17, 2016 7:33 pm
Forum: Android Deployment
Topic: Free simple tool for creating keystore file
Replies: 24
Views: 24884

Re: Free simple tool for creating keystore file

Thank you, Kroka!

I'm just curious, though... Does Google Play Store really accept apps signed with a self-signed key instead of one issued by a Certificate Authority?

Go to advanced search