iphonePick Font Problem

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
jnmediaGAd195
Posts: 58
Joined: Mon Dec 05, 2011 5:35 pm

iphonePick Font Problem

Post by jnmediaGAd195 » Sun Jan 04, 2015 12:18 am

I am testing my app on an iPad 2 and an iPad mini 3. I am using iphonePick for picklists. It looks fine on the iPad 2 but is cut off on the iPad mini. Is there a way to set the picklist width or adjust the font? Any help is appreciated.
Judy
Attachments
ipad mini picklist.PNG
Screenshot of iPad mini picklist

Dixie
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1336
Joined: Sun Jul 12, 2009 10:53 am

Re: iphonePick Font Problem

Post by Dixie » Sun Jan 04, 2015 9:54 am

It might be an idea if you post your script...

I am not seeing a problem with iphonePickList... I put the phonetic alphabet into a list and just to make sure that it would resize itself, I put in one longer line... the alphabet only displays until 'foxtrot', after that you can scroll through the rest of the aplhabet list...

Code: Select all

on mouseDown
   /*Make a list */
   put "Alpha,Bravo,Charlie,Delta,A much longer line is placed here,Echo," & \
         "Foxtrot,Golf,Hotel,India,Juliet,Kilo,Lima,Mike,November,Oscar,Papa," & \
         "Quebec,Roger,Sierra,Tango,Uniform,Victor,Whisky,Xray,Yankee,Zulu" into theList
   /* Make the list comma returned */
   repeat with count = 1 to the number of items of theList
      put item count of theList & cr after thePickList
   end repeat
   /*get rid of the trailing carriage return */
   delete the last char of thePickList
   /*display the list */
   iphonePick thePickList
end mouseDown
Attachments
pickSCreenShot.png

jnmediaGAd195
Posts: 58
Joined: Mon Dec 05, 2011 5:35 pm

Re: iphonePick Font Problem

Post by jnmediaGAd195 » Sun Jan 04, 2015 3:54 pm

Thanks. This is my code:

put " Picture Counting" & cr & " Picture Arithmetic" & cr & " Arithmetic" & cr & " Times Tables" into optionList
iphonePick optionlist, tSelect

Post Reply