Search found 147 matches

by Randy Hengst
Thu Nov 03, 2016 7:55 pm
Forum: iOS Deployment
Topic: Fill iPad 12.9 Retina display?- Solved LC release 8.1.3-rc-1
Replies: 16
Views: 11288

Re: How do I make my app fill iPad 12.9 Retina display?

Yes, the screen shots from within the simulator are the ones I submit when I updated apps. In the simulator all you do is the basic command/S and you have a screen shot. I simply opened the app in the various iPad sizes and took screen shots.
by Randy Hengst
Thu Nov 03, 2016 3:36 pm
Forum: iOS Deployment
Topic: Fill iPad 12.9 Retina display?- Solved LC release 8.1.3-rc-1
Replies: 16
Views: 11288

Re: How do I make my app fill iPad 12.9 Retina display?

I’ve not seen the problem you describe. I’m using LC 8.1. Mac OS 10.11.4. Xcode 7.3.1 Simulator for 9.3 The iPad Pro 12.9 is an option. Within the simulator I can take screen shots for submission to Apple. I checked yesterday for the first time that my apps do indeed fill the screen of the Pro. I ma...
by Randy Hengst
Sat Sep 24, 2016 2:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Dead in the Water - Testing IOS app on my iPad - Solved
Replies: 4
Views: 2992

Re: Dead in the Water - Testing IOS app on my iPad - Solved

David, One other thing you might find handy… if you were talking about screen shots to send to apple as part of placing the your app on the App Store, then you’ll want to get the screen shots from within the simulator. Invoking command-s while in the simulator takes a screen shot with the size being...
by Randy Hengst
Tue Jul 19, 2016 1:04 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: scripting the level of a button ?
Replies: 14
Views: 6618

Re: scripting the level of a button ?

Mark,

You’re right, of course… I didn’t even think about that.

I was just putting an example too together quickly…

At least in my experimenting it seemed to address the issue Craig noted.
by Randy Hengst
Mon Jul 18, 2016 9:08 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: scripting the level of a button ?
Replies: 14
Views: 6618

Re: scripting the level of a button ?

Hi Craig, I see the same thing on Mac 10.11.4 with LC 7.1.4. But, when I use the names of the buttons (I used “one” and “two”), the layer report reflects the layering I see with the buttons themselves… I think the issue is that once button two becomes layer one, then it’s button 1… my understanding ...
by Randy Hengst
Wed Jun 22, 2016 5:01 pm
Forum: iOS Deployment
Topic: Recently used apps button
Replies: 9
Views: 6885

Re: Recently used apps button

I admit I’ve not done much experiementing with LC8, but a quick check of the plist hack for the 9.3 simulator in LC 8.0.2 (rc2) seems to work just fine.
by Randy Hengst
Tue Jun 21, 2016 1:04 am
Forum: iOS Deployment
Topic: Recently used apps button
Replies: 9
Views: 6885

Re: Recently used apps button

I’m still using this hack posted on the email ‘Rev Developer List’ list by Ralph DiMola in Oct 2013. I’m using LC7.1.4 and Xcode 7.3.1 1) Duplicate the LC app 2) Browse the contents 3) In the all the folders in tools/runtime/iOS remove these 2 lines from all the Setting.plist files <key>UIApplicatio...
by Randy Hengst
Sun Jun 19, 2016 1:53 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Cut of Decimals
Replies: 8
Views: 4738

Re: Cut of Decimals

How about this:

on mouseUp
local mNum
put 60 / 13 into mNum
set the numberFormat to "#."
put the trunc of mNum into mNum
end mouseUp
by Randy Hengst
Sun May 01, 2016 9:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Easy way to fill in combo box, option menu, pop up menu, dro
Replies: 3
Views: 3046

Re: Easy way to fill in combo box, option menu, pop up menu,

Assuming I’m understanding you correctly…. You could type all of the lines into an LC field and then put this script into a button: set the text of button "OptionDemo" to field “OptionList" Or, create multiple custom properties in the option button itself and then use a script like this: set the tex...
by Randy Hengst
Wed Dec 09, 2015 10:28 pm
Forum: iOS Deployment
Topic: Best Combo for iOS 9?
Replies: 6
Views: 4106

Re: Best Combo for iOS 9?

Yep, I was just sharing a different combination that worked. The original question asked a combination of LC/Xcode that worked on iOS9. The builds do work on a device with iOS 9.1 even though I don't have the iOS9 simulator with Xcode 6.4.
by Randy Hengst
Wed Dec 09, 2015 9:15 pm
Forum: iOS Deployment
Topic: Best Combo for iOS 9?
Replies: 6
Views: 4106

Re: Best Combo for iOS 9?

I’ve recently successfully submitted an iOS app using LC7.1, Xcode 6.4 on Mac 10.10.5… and mobileComposeMail works just fine. I’ve only run the app under iOS 9.1
by Randy Hengst
Wed Dec 09, 2015 8:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Exporting graphics
Replies: 4
Views: 2775

Re: Exporting graphics

You can take a screen shot from within the iOS simulator (command S). You might find that to be an easier way to create your splash screen.
by Randy Hengst
Fri Aug 14, 2015 7:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Need system time in seconds - Solved
Replies: 5
Views: 3408

Re: Need system time in seconds - Solved

You might have already noticed this, but you can also
put the long seconds
by Randy Hengst
Wed Jul 22, 2015 3:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Beginner question: How can I see a list of properties?
Replies: 10
Views: 5152

Re: Beginner question: How can I see a list of properties?

That’s handy, Richard. Thanks for sharing.

be well,
randy
by Randy Hengst
Sat Jul 11, 2015 2:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: the line number in a variable
Replies: 2
Views: 2451

Re: the line number in a variable

You could try:

local tVariableWithLines

repeat with x = 1 to the number of lines in tVariableWithLines
if line x of tVariableWithLines = "C" then
answer x
end if
end repeat

be well,
randy

Go to advanced search