Search found 3 matches

by robjr
Sun May 20, 2012 4:12 pm
Forum: iOS Deployment
Topic: printPaperOrientation and iOS
Replies: 0
Views: 1532

printPaperOrientation and iOS

I'm printing a pdf to a file and then emailing it.

Everything works fine except for the printPaperOrientation statement - the iPad just ignores the line and prints as portrait. I've searched everywhere on line and can't find if this is a LiveCode bug or I'm just using the wrong command - all I can ...
by robjr
Thu Apr 12, 2012 3:42 am
Forum: iOS Deployment
Topic: iOS deployment failure
Replies: 2
Views: 2929

iOS deployment failure

I have a LiveCode 5.5 app that I'm deploying to iPad. I have Lion and Xcode 4.3.1.

Here is the problem: I can drag my .app into the Organizer>Devices>Applications window in Xcode and the app downloads to the iPad just fine. However, if I try and install via iTunes or OTA (via AirLaunch), the ...
by robjr
Sat Mar 24, 2012 3:46 am
Forum: iOS Deployment
Topic: option menu on iPad
Replies: 1
Views: 2048

option menu on iPad

I'm using 5.5 and the option menu doesn't seem to work on the iPad. I'm using the following code as the button script:

on menuPick theItem
switch theItem
case "Topic1"
go to card 5
break
case "Topic2"
go to card 6
break
case "Topic3"
go to card 7
break
end switch
end menuPick

where ...