Search found 150 matches

by SteveTX
Sun Jul 14, 2013 1:44 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Best advice for developing back end server for app
Replies: 15
Views: 7887

Re: Best advice for developing back end server for app

Depends on the data, the frequency, the endpoint, the service, etc. We're gathering and sending light amounts of data, periodically, from 100k+ phones over cellular networks. We put the data into JSON format, encrypt it, and auth the server before sending it. Depending on how many concurrent users y...
by SteveTX
Sat Jul 13, 2013 7:33 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: mobile splash screen vs card & image [solved]
Replies: 3
Views: 2839

Re: mobile splash screen vs card & image

Found the "best" way to do it, and by best I mean speed optimized. Don't use native splash screen, and don't use a separate card. On preOpenCard create a splash screen group, on openCard show the group. Do your draws/create graphics, initialize all settings, and when they are finished, hide the spla...
by SteveTX
Sat Jul 13, 2013 7:30 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: object transparency masking? [solved]
Replies: 3
Views: 2410

Re: object transparency masking?

solved. Instead of setting visible the object, use show or hide "with visual effect".
by SteveTX
Sat Jul 13, 2013 6:57 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: create mobileControl in grp?
Replies: 2
Views: 1978

create mobileControl in grp?

I am looking through the documentation about mobileControlCreate and mobileControlSet and I don't see any layer or grouping properties, only that you can really set them to visible or not, suggesting they sit on top of the card/stack. Is there a way to group / layer these controls?
by SteveTX
Sat Jul 13, 2013 4:18 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: forcing a group to stay at layer top [solved]
Replies: 6
Views: 3079

Re: forcing a group to stay at layer top

perhaps:

Code: Select all

on create new control
set the layer of the last control to (the layer of group "theTopMost" -1)
by SteveTX
Sat Jul 13, 2013 10:31 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: forcing a group to stay at layer top [solved]
Replies: 6
Views: 3079

forcing a group to stay at layer top [solved]

I've set a group to layer top, and set the lockLoc of the layer to true. Subsequent controls I create are on top of the desired top group. Is there a way to keep a layer at the top and force new layers to be created underneath without constantly sending set layer messages?
by SteveTX
Sat Jul 13, 2013 4:31 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: locking screen or creating in hidden groups during animation
Replies: 1
Views: 1518

locking screen or creating in hidden groups during animation

I want to know if there is any qualitative difference between locking a screen and creating controls vs creating an invisible group and doing the control creation in it? If there really is not difference, wouldn't this be preferable when performing animations concurrent to creating items, rather tha...
by SteveTX
Fri Jul 12, 2013 11:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: two cards open concurrent?
Replies: 2
Views: 1744

two cards open concurrent?

Is it possible to have two cards open concurrently? I want card #2 to be running while card #1 is displayed.
by SteveTX
Fri Jul 12, 2013 11:28 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Dictionary as PDF?
Replies: 13
Views: 7846

Re: Dictionary as PDF?

The bottomline is that the dictionary runs about 2 to 5 seconds behind the user activity even on very ample resources, resulting in misclicks and an extremely frustrating experience, and it seems to be because it is overly sophisticated trying to be predictive/reactive in its controls.
by SteveTX
Thu Jul 11, 2013 2:07 am
Forum: Android Deployment
Topic: get source control of scrollerDidScroll message
Replies: 1
Views: 2089

get source control of scrollerDidScroll message

handler scrollerDidScroll occurs for all mobileControl native scrollers. If you have more than one scroller, it does not distinguish. Is there a good way to find out what control the message scrollerDidScroll is referencing?
by SteveTX
Wed Jul 10, 2013 5:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Dictionary as PDF?
Replies: 13
Views: 7846

Re: Dictionary as PDF?

I would just be happy with a version of the dictionary that doesn't have instant search / crash the IDE. If that means a PDF, so be it.
by SteveTX
Tue Jul 09, 2013 3:17 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't set property "script" [solved]
Replies: 7
Views: 4720

Re: can't set property "script"

wrote script into a command that would delete and recreate the button but ran into a similar issue but in a different form: Type Chunk: can't delete object Object application Line if there is a button buttonName then delete button buttonName Hint animateMenuClose Is there a way to escape the message...
by SteveTX
Tue Jul 09, 2013 2:53 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't set property "script" [solved]
Replies: 7
Views: 4720

Re: can't set property "script"

Discovered the issue, I think. The error is dependent upon executing the script assigned to the button. Message path was mouseUP on button "MenuButton1" calling a command that called a command that would modify the script of button "MenuButton1", thus making it a self-modifying handler that violates...
by SteveTX
Tue Jul 09, 2013 12:42 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: can't set property "script" [solved]
Replies: 7
Views: 4720

Re: can't set property "script"

assignMenuButton buttonPos: 1 behindImage: button_back.png buttonBehavior: showMain

Go to advanced search