Search found 50 matches

by JacobS
Thu Mar 21, 2019 6:29 pm
Forum: iOS Deployment
Topic: mergDoc print not working
Replies: 2
Views: 4050

Re: mergDoc print not working

Never mind, I figured out the issue. Here's what I had to do if other people had the same issue: When you have "Search for required inclusions..." selected in the General tab in Standalone Settings, the mergX extensions are not properly included. You should select "Select inclusions for the standalo...
by JacobS
Wed Mar 20, 2019 8:15 pm
Forum: iOS Deployment
Topic: mergDoc print not working
Replies: 2
Views: 4050

Re: mergDoc print not working

Chelling, Were you able to get mergDocShowPreview to work in recent versions of LiveCode? I haven't been able to get mergDoc to work with LiveCode 9.0.3. It looks like mergDoc isn't getting included with the standalone app when it is built. I saw your post in the other forum, but decided to reply to...
by JacobS
Mon Nov 02, 2015 2:39 pm
Forum: Talking LiveCode
Topic: Is 081105004 a number for JSON?
Replies: 1
Views: 2370

Re: Is 081105004 a number for JSON?

Bob, Yes, you're right. JSON specifications do not allow leading zeros on numbers without a decimal point. See section 8 on page 3 of http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf. LiveCode doesn't have this restriction on numbers, so when you do put 081105004 is a number...
by JacobS
Mon Aug 31, 2015 1:15 pm
Forum: iOS Deployment
Topic: Help getting printing working
Replies: 2
Views: 3308

Re: Help getting printing working

Hi Matt, Whenever I need to do printing in an iOS app, I've always used Monte's mergDoc extension (http://mergext.com/home/mergdoc/). To print using mergDoc, you need to have a file that you want to print. If you're just printing the contents of a field, it wouldn't be too difficult to save the fiel...
by JacobS
Fri Aug 21, 2015 7:02 pm
Forum: Feature Proposals
Topic: Online Dictionary
Replies: 5
Views: 3646

Re: Online Dictionary

The Online Dictionary is back up at https://livecode.com/resources/api

(I know that this thread has been stagnant for a while, but I figured I should post a final response on the thread in case someone else stumbles upon it.)
-Jacob
by JacobS
Thu Jul 23, 2015 1:06 pm
Forum: Android Deployment
Topic: Export a picture to internal memory of the mobilephone
Replies: 6
Views: 5795

Re: Export a picture to internal memory of the mobilephone

Hi Razvan,

Check out the forum thread viewtopic.php?f=7&t=20444.
It's got a good explanation of how to take a picture, put it on the stack of the app, and then export that image to the mobile phone's internal memory.

Hope that helps,
Jacob
by JacobS
Thu Jul 02, 2015 7:47 pm
Forum: iOS Deployment
Topic: IOS crash report debugging - where is xcode dSYM?
Replies: 5
Views: 5165

Re: IOS crash report debugging - where is xcode dSYM?

Hmm. What version of LC are you using? Before I upgraded to LC 7.0.5, my app would crash fairly erratically at startup, but the first start would always crash. This is just like your problem. But LC 7.0.5 fixed this issue for me. If you're not already using LC 7.0.5, I would upgrade to it. As far as...
by JacobS
Fri Jun 05, 2015 3:19 pm
Forum: Feature Proposals
Topic: Online Dictionary
Replies: 5
Views: 3646

Online Dictionary

The LiveCode online API Dictionary at http://livecode.com/guides-documentation/ has been offline for 6 months or so. The webpage says "Coming Soon," but I have been unable to find any timeline as to when the documentation will be available. Does anyone have any ideas as to when it will be accessible...
by JacobS
Thu May 21, 2015 1:51 pm
Forum: Android Deployment
Topic: Crashing on card visual effect
Replies: 4
Views: 5576

Re: Crashing on card visual effect

Hi Media,

Which visual effects are you using? Only the reveal and scroll visual effects are supported on Android, according to the documentation.
Make sure you only use those if you're expecting to run the same code on iOS and Android.

Hope that helps,
Jacob
by JacobS
Tue May 12, 2015 1:31 pm
Forum: iOS Deployment
Topic: IOS crash report debugging - where is xcode dSYM?
Replies: 5
Views: 5165

Re: IOS crash report debugging - where is xcode dSYM?

Hi Havanna, Have you tried testing the app on a physical iOS device? The App Store review team always tests on real devices, so that's likely why they are experiencing crashes that you don't see. It's pretty easy to download crash logs through XCode from a physical iPad or iPhone as long as you have...
by JacobS
Tue Apr 07, 2015 7:16 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Mobile device "size" during development
Replies: 4
Views: 4062

Re: Mobile device "size" during development

Dave is absolutely right! The screenRect function is working exactly as it should: it returns the size of the screen, not the card!
I would definitely recommend using the dimensions of the card (or the stack) for mobile development. It makes developing in the LiveCode IDE much easier.

Jacob
by JacobS
Mon Apr 06, 2015 2:34 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Mobile device "size" during development
Replies: 4
Views: 4062

Re: Mobile device "size" during development

Hi R.J. When I develop mobile apps for Android, I always use the width and height of the current card to determine how to adjust the layout of that card. So in the resizeStack function I use: on resizeStack if the width of this card < the height of this card then resizePortrait else resizeLandscape ...
by JacobS
Fri Feb 20, 2015 2:34 pm
Forum: iOS Deployment
Topic: Configuring the keyboard with LC 7+
Replies: 2
Views: 2525

Re: Configuring the keyboard with LC 7+

Hi Dixie,

I'm using

Code: Select all

iphoneSetKeyboardType numeric
and it's working fine for me. I just tested it on iOS 6 and iOS 8.
I'm using XCode 6.1.1 and LC 7.0.1.

Maybe the difference in LC versions is the problem. Have you tested it in LC 7.0.1?

-Jacob
by JacobS
Mon Feb 09, 2015 7:32 pm
Forum: iOS Deployment
Topic: Button On / off
Replies: 10
Views: 7633

Re: Button On / off

Jean-Marc, Yes, that is a very good solution! I guess I didn't think of simply skinning a button and changing the image through code. This solution doesn't include the actual slide animation while dragging your mouse across it, but it's still a pretty good solution if you need a switch. fko, I'd loo...
by JacobS
Mon Feb 09, 2015 2:53 pm
Forum: iOS Deployment
Topic: Button On / off
Replies: 10
Views: 7633

Re: Button On / off

Hi fko2, I assume you're looking for something like this: http://benjaminmayo.co.uk/images/19.png Which Apple calls a "switch" control. Right now, LiveCode does not support creating a native switch control with the mobileControlCreate function. This means that you'll need to download MobGUI or a sim...