Re: Hacking the GUI

2013-10-09 Thread Thomas McGrath III
Jim, Are you saying that you got smooth rotating of large images on iOS? Thanks Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On Oct 9, 2013, at 1:45 AM, Jim sims s...@ezpzapps.com wrote: I just spent a few hours on an iOS app where i was using Grab to move a large,

Re: Hacking the GUI

2013-10-09 Thread Jim sims
If by rotate you mean like 3D then no way ;-) I mean using grab to move a large photo around on an iPad. What had to be done was to disable/kill the scroller that lived in the same space. There is a scrolling group of about one hundred rows that have groups of: THUMBNAIL_MAGE - FIELD - FIELD

Re: Hacking the GUI

2013-10-09 Thread Thomas McGrath III
Jim, No, I was referring to rotate around a 2d point on a flat plane not 3D. Rotating an image around a point on a 2D plane still causes anomalies on iOS in the rotated image and I was hoping it was fixed and you had done it smoothly. Tom -- Tom McGrath III http://lazyriver.on-rev.com

Re: Hacking the GUI

2013-10-09 Thread Earthednet-wp
Sheesh! I didn't know there was a grab command. I'll try it. I'm new to LC, so ... Thanks! Bill William Prothero http://es.earthednet.org On Oct 8, 2013, at 10:42 PM, Brahmanathaswami, Sannyasin bra...@hindu.org wrote: Why doesn't Grab me Work for u? On Oct 8, 2013, at 7:36 PM,

Hacking the GUI

2013-10-08 Thread Richmond
After far too long; a few more features to muck up the Livecode GUI. The stack is contained in the lc_hacker.livecode.zip file at the RunRev Facebook page: https://www.facebook.com/groups/runrev/ Richmond. ___ use-livecode mailing list

Re: Hacking the GUI

2013-10-08 Thread proth...@earthednet.org
Folks: The documentation says that you can add points. If I do: put 10,10 - 5,5 I get 10,5,5 This is pretty useless. Is there a use for this? I'd like to have a quick way of adding and subtracting points without doing it item by item. I'm using version 6.1.1 Bill William Prothero

Re: Hacking the GUI

2013-10-08 Thread Alex Tweedly
I don't believe you can do that, I've always just added item by item - but I could easily be wrong. It may be as simple as needing parenthesis or quotes or something similar. Can you be more explicit about where in the docs it says you can ? Thanks -- Alex. On 08/10/2013 23:52,

Re: Hacking the GUI

2013-10-08 Thread Earthednet-wp
The docs under point, in the docs accessed through the script editor mention adding points. Bill William Prothero http://es.earthednet.org On Oct 8, 2013, at 4:38 PM, Alex Tweedly a...@tweedly.net wrote: I don't believe you can do that, I've always just added item by item - but I could

Re: Hacking the GUI

2013-10-08 Thread Monte Goulding
On 09/10/2013, at 11:51 AM, Earthednet-wp wrote: The docs under point, in the docs accessed through the script editor mention adding points. It doesn't mention doing what you are proposing. It talks about how the engine evaluates what is and isn't a point. In the example the addition in

Re: Hacking the GUI

2013-10-08 Thread J. Landman Gay
On 10/8/13 7:51 PM, Earthednet-wp wrote: The docs under point, in the docs accessed through the script editor mention adding points. The docs say: The points of a graphic is a list of points (two integers separated by a comma), one per line In your example you have three integers on a

Re: Hacking the GUI

2013-10-08 Thread J. Landman Gay
On 10/8/13 9:17 PM, J. Landman Gay wrote: Maybe you meant this: 10,10 -5,5 I think my answer was condescending, I apologize. Monte's is better. The dictionary in 6.1.1 doesn't have an example of addition in the points entry. Is that in a different version's dictionary? -- Jacqueline

Re: Hacking the GUI

2013-10-08 Thread Monte Goulding
On 09/10/2013, at 1:25 PM, J. Landman Gay wrote: I think my answer was condescending, I apologize. Maybe I read a different answer ;-) The dictionary in 6.1.1 doesn't have an example of addition in the points entry. Is that in a different version's dictionary? It's the point entry not

Re: Hacking the GUI

2013-10-08 Thread J. Landman Gay
On 10/8/13 9:29 PM, Monte Goulding wrote: On 09/10/2013, at 1:25 PM, J. Landman Gay wrote: I think my answer was condescending, I apologize. Maybe I read a different answer ;-) The dictionary in 6.1.1 doesn't have an example of addition in the points entry. Is that in a different

Re: Hacking the GUI

2013-10-08 Thread Earthednet-wp
Folks, Thanks for the comments. What I'm doing is dragging an image that is larger than the viewing area. I set the loc of the image (according to the mouseloc) inside a repeat loop. The general idea is below. On drag repeat while the mouseStillDown --set the loc of the image according

Re: Hacking the GUI

2013-10-08 Thread Brahmanathaswami, Sannyasin
Why doesn't Grab me Work for u? On Oct 8, 2013, at 7:36 PM, Earthednet-wp proth...@earthednet.org wrote: Folks, Thanks for the comments. What I'm doing is dragging an image that is larger than the viewing area. I set the loc of the image (according to the mouseloc) inside a repeat loop.

Re: Hacking the GUI

2013-10-08 Thread Jim sims
I just spent a few hours on an iOS app where i was using Grab to move a large, 2-4mb, photo around. Was jerky, until i realized that the scroller was accounting for the jerkiness. Found a way to do preopenstack before and after that moving process (killing reviving) the scroller. Can grab photo