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
			
							iphonePick Font Problem
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
- 
				jnmediaGAd195
- Posts: 58
- Joined: Mon Dec 05, 2011 5:35 pm
Re: iphonePick Font Problem
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...
			
							
			
									
									
						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- 
				jnmediaGAd195
- Posts: 58
- Joined: Mon Dec 05, 2011 5:35 pm
Re: iphonePick Font Problem
Thanks.  This is my code:
put " Picture Counting" & cr & " Picture Arithmetic" & cr & " Arithmetic" & cr & " Times Tables" into optionList
iphonePick optionlist, tSelect
			
			
									
									
						put " Picture Counting" & cr & " Picture Arithmetic" & cr & " Arithmetic" & cr & " Times Tables" into optionList
iphonePick optionlist, tSelect
