Search found 16 matches

by wsterdan
Tue Sep 20, 2011 5:46 am
Forum: iOS Deployment
Topic: iOS SDK Socket Command Mode set
Replies: 11
Views: 8091

Re: iOS SDK Socket Command Mode set

Hi; I don't believe sockets are supported at this time; the latest iOS release notes in the "What doesn't Work" section still reads "socket syntax and functionality (planned for a future release)". One way to test it would be to run the same code from the desktop and see what happens. Hope I'm wrong...
by wsterdan
Tue Dec 28, 2010 5:23 pm
Forum: iOS Deployment
Topic: iOS app live in app store
Replies: 22
Views: 16704

Re: iOS app live in app store

Hi, all. My first LC iOS app is now live in the app store and I'm happy to say that it was a pain free process! It's called 'snowballer' and it's by 'splash21'. Searching for either should find it. I threw in multiple animated objects, sounds and file access for saving the high score. Please give a...
by wsterdan
Sat Dec 18, 2010 7:27 am
Forum: iOS Deployment
Topic: Block auto rotation?
Replies: 9
Views: 8947

Re: Block auto rotation?

What happens when you hold the iPad in portrait and open your app? I'm using iPod and want my app to only display in landscape right. When I open in portrait, the app shows in landscape right and then immediately rotates to portrait. In fact, when I open the app with the iPod held in any orientatio...
by wsterdan
Fri Dec 17, 2010 5:57 am
Forum: iOS Deployment
Topic: Block auto rotation?
Replies: 9
Views: 8947

Re: Block auto rotation?

I'm using Landscape and an iPad (rather than Portrait and an iPod) but it works perfectly, the app starts up on the device in Landscape and stays there, no matter what way I turn it.

-- Walt Sterdan
by wsterdan
Sat Dec 11, 2010 5:01 am
Forum: iOS Deployment
Topic: iPad layout and scripting
Replies: 2
Views: 3568

Re: iPad layout and scripting

Hi; Not sure if this is what you mean by the width of the stack window being variable but if you want your stack to always open to an iPad size, you can use this in your stack script (originally posted to me by Jan Schenkel... thanks again Jan): on preOpenStack    local tRectangle    put the windowB...
by wsterdan
Fri Dec 10, 2010 1:29 pm
Forum: iOS Deployment
Topic: Need help to create for Ipad
Replies: 12
Views: 9200

Re: Need help to create for Ipad

I select iPad and the iPad simulator start but the size of the application is iPhone... :( nor the whole iPad screen. Besides selecting the iPad simulator under the Development menu, have you also selected the iPad option in the "Standalone Application Settings/iOS" under the "File" menu? Be sure t...
by wsterdan
Thu Dec 09, 2010 1:53 am
Forum: iOS Deployment
Topic: Need help to create for Ipad
Replies: 12
Views: 9200

Re: Need help to create for Ipad

JosepM wrote: I'm really confused about how to create for iPad. I have a stack of 1024x768 but it always appears as the iPhone size app into the iPad.
Before running the simulation, under the "Development" menu choose "Simulator Version" and then "iPad".

Hope that helps.

-- Walt Sterdan
by wsterdan
Fri Nov 12, 2010 9:24 pm
Forum: iOS Deployment
Topic: Deploy error message
Replies: 13
Views: 13515

Re: Deploy error message

Thanks Kevin (thanks as well for the updates, so far, so good).

-- Walt
by wsterdan
Fri Nov 12, 2010 5:12 pm
Forum: iOS Deployment
Topic: Deploy error message
Replies: 13
Views: 13515

Re: Deploy error message

Thanks Robert, I'm not on that one; is that only offered through the LiveCode Developer Program?

-- Walt
by wsterdan
Fri Nov 12, 2010 4:49 pm
Forum: iOS Deployment
Topic: Deploy error message
Replies: 13
Views: 13515

Re: Deploy error message

Looks like it was some kind of licensing issue. I went to Help - Re-license LiveCode like Heather mentioned on the list and now the plugin works as expected. Robert Sounds great, glad it was something simple. Which list did Heather mention it on? I thought I was caught up on the lists, but I'm stil...
by wsterdan
Fri Nov 12, 2010 4:18 pm
Forum: iOS Deployment
Topic: Deploy error message
Replies: 13
Views: 13515

Re: Deploy error message

RRobert wrote:
What type of deployment are you attempting?
iPhone and iPod

revMobile 4.0.0-prelease-14
Mac OS X 10.6.5
XCode Version 3.2.4
iOS 4.1 SDK

Robert
Pretty much my set-up exactly.

I don't know if it would help, but here's the plug-in settings I'm using:
by wsterdan
Fri Nov 12, 2010 3:52 pm
Forum: iOS Deployment
Topic: Deploy error message
Replies: 13
Views: 13515

Re: Deploy error message

What type of deployment are you attempting? I'm able to deploy my apps to my iPad and to my iPod Touch (1st Gen) using LC 4.5.1 and plug-in 4.0.0-prerelease-14 (2010-11-10). I was having trouble after first updating the plug-in, but I've since updated my OS to 10.6.5 and updated my XCode to 3.2.4 an...
by wsterdan
Wed Nov 10, 2010 8:48 pm
Forum: iOS Deployment
Topic: Hiding the Status Bar -- possible?
Replies: 2
Views: 3970

Re: Hiding the Status Bar -- possible?

kevinmiller wrote:It will be in the next build for iOS, RSN.
Great news, thanks Kevin.

Looking forward to the next build...

-- Walt Sterdan
by wsterdan
Thu Nov 04, 2010 10:41 pm
Forum: iOS Deployment
Topic: Hiding the Status Bar -- possible?
Replies: 2
Views: 3970

Hiding the Status Bar -- possible?

Is it possible to hide the Status Bar for iOS deployment? If not, is it something that might be added soon?

I've got a huge batch of images set to 1024x768 that I'd hate to have to crop to allow for the Status Bar (yes, I'm *that* lazy). ;)

Thanks,
Walt Sterdan
by wsterdan
Wed Nov 03, 2010 6:57 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Beginner: Card/Screen size problem
Replies: 3
Views: 3617

Re: Beginner: Card/Screen size problem

Something like this should do the trick: on preOpenStack local tRectangle put the windowBoundingRect into tRectangle put item 1 of tRectangle + the minWidth of me into item 3 of tRectangle put item 2 of tRectangle + the minHeight of me into item 4 of tRectangle set the rectangle of me to tRectangle...