Re: Scrolling text w/o scroll bars in iOS

2011-03-08 Thread Randy Hengst
Thank you Jacque… I'll give it go. take care, randy hengst - On Mar 7, 2011, at 11:03 PM, J. Landman Gay wrote: > On 3/7/11 9:02 PM, Randy Hengst wrote: >> I'd love to see a specific example of scrolling one text >> field with the iOS scroller showing. I really haven't been able to >> organiz

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread J. Landman Gay
On 3/7/11 9:02 PM, Randy Hengst wrote: I'd love to see a specific example of scrolling one text field with the iOS scroller showing. I really haven't been able to organize the overlay deal. I just did a quick one, it works fine. Make a copy of the Scroller Example in the Mobile Resources folde

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread J. Landman Gay
On 3/7/11 9:02 PM, Randy Hengst wrote: but, Jacque, I'd love to see a specific example of scrolling one text field with the iOS scroller showing. I really haven't been able to organize the overlay deal. The best example is the one that ships with LiveCode in the Mobile section of Resources. T

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread Randy Hengst
Steve and Jacque, Steve I did it using the script below in the text field… no scroll bar shows…. but, Jacque, I'd love to see a specific example of scrolling one text field with the iOS scroller showing. I really haven't been able to organize the overlay deal. local tScollField local tStartY

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread J. Landman Gay
On 3/7/11 2:50 PM, Steve Jones wrote: This doesn't seem to work for me - either in the iPhone simulator or downloaded to my iPhone. It does work in the internal "test:\" mode to LiveCode though. So not sure what's up there. Do you mean you don't want any kind of scroller at all, or do you wan

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread Steve Jones
This doesn't seem to work for me - either in the iPhone simulator or downloaded to my iPhone. It does work in the internal "test:\" mode to LiveCode though. So not sure what's up there. Steve On Mar 7, 2011, at 2:07 PM, Colin Holgate wrote: > Try this on a field that is set to not show scro

Re: Scrolling text w/o scroll bars in iOS

2011-03-07 Thread Colin Holgate
Try this on a field that is set to not show scrollbars, lock text, and not focusable: local startscroll,startv on mousedown put the scroll of me into startscroll put the mousev into startv end mousedown on mousestilldown set the scroll of me to startscroll - the mousev + startv end mou