Page 1 of 1
iphonePick Font Problem
Posted: Sun Jan 04, 2015 12:18 am
by jnmediaGAd195
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
Re: iphonePick Font Problem
Posted: Sun Jan 04, 2015 9:54 am
by Dixie
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
Re: iphonePick Font Problem
Posted: Sun Jan 04, 2015 3:54 pm
by jnmediaGAd195
Thanks. This is my code:
put " Picture Counting" & cr & " Picture Arithmetic" & cr & " Arithmetic" & cr & " Times Tables" into optionList
iphonePick optionlist, tSelect