Re: Saving by script takes you to a new dimension

2013-03-07 Thread Monte Goulding
Would stackFileVersion make any difference? -- M E R Goulding Software development services mergExt - There's an external for that! On 08/03/2013, at 4:48 PM, "J. Landman Gay" wrote: > What's different between Cmd-S and a scripted "save this stack"? ___

Re: Saving by script takes you to a new dimension

2013-03-07 Thread Peter Haworth
Hi Jacque, I don't have an answer for you, just a suggestion. Looking at the code in the IDE File menu handler for Save, it does not use the save command but calls a handler named revIDESaveRequest. I didn't spot anything weird in that handler but it calls another handler named revSave which I ha

Re: Editing polygon points

2013-03-07 Thread John Craig
Wow - looks like an interesting stack! I'm after something much simpler, though :) On 07/03/2013 14:19, in...@kenjikojima.com wrote: John, I have made a wireframe drawing stack. You have to open stack "animationEngine" before this. go stack url "http://www.kenjikojima.com/runrev/draw3D.livec

Re: Editing polygon points

2013-03-07 Thread John Craig
Thanks, Jim- that's half way there ! :) On 07/03/2013 15:38, Jim Hurley wrote: Hi John, There is a much overlooked feature in RR that allows you to manually reshape points. Under the Object menu select "Reshape graphic." And you can delete points using the Inspector. Just delete the offendin

Saving by script takes you to a new dimension

2013-03-07 Thread J. Landman Gay
I have a text file with html strings that I am transferring to fields in a stack. One line of text equals one card's field content. A handler loops through the text one line at a time, setting the htmltext of a background field on every card. The html text is very simple and sometimes contains

Re: 1001 things to do...

2013-03-07 Thread Peter W A Wood
On 7 Mar 2013, at 23:09, Tiemo Hollmann TB wrote: > It's really interesting and great to see the variety of skills and > creativity of the list members on http://livecode1001.blogspot.de/ > > But Scotts Rossis UIs are really mind-blowing! A couple more to come :-) Peter http://LiveCode1001.blog

Re: Mucking around with polygon graphics.

2013-03-07 Thread Dave Probert
Hi, The list of points is in a property (points) of the graphic and it's simply a return separated list of x,y, coords. put item 1 of line 1 of the points of grc "G1" into WUN That should do it. Dave -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Mucking-ar

Re: Update process in the Apple App Store

2013-03-07 Thread Scott Morrow
Would it work to have the (updated app) check and notice that the data in the support folder had been created / last modified by an older version? -- Scott Morrow On Mar 7, 2013, at 5:27 AM, Graham Samuel wrote: > > I can of course ask the user to go through some process (like clicking a > bu

Re: Progress bar color

2013-03-07 Thread Magicgate Software - Skip Kimpel
Thank you Monte... was hoping I could do it with the built in control. Guess I will have to use a custom progress bar if I want to do this. SKIP On Thu, Mar 7, 2013 at 5:04 PM, Monte Goulding wrote: > Here you go: > > > http://stackoverflow.com/questions/15282648/can-i-change-the-default-color-

Re: Progress bar color

2013-03-07 Thread Monte Goulding
Here you go: http://stackoverflow.com/questions/15282648/can-i-change-the-default-color-of-a-progress-bar-in-livecode/15282649#15282649 On 08/03/2013, at 8:50 AM, Magicgate Software - Skip Kimpel wrote: > Is there a way to change the default color of the progress bar to any color > other than

Progress bar color

2013-03-07 Thread Magicgate Software - Skip Kimpel
Is there a way to change the default color of the progress bar to any color other than green? For instance, I would like it to be red until it gets to 100% and then it turns green. SKIP ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: docs.runrev.com (and structured docs, and BvG docu)

2013-03-07 Thread Björnke von Gierke
> Hi Björnke! > > Thanks for responding. Consider my horses held. > > When I tried BvG Docu on a current version of LiveCode, attempting to > generate produced an error "sorry, I couldn't find the > '/packaged_xml/dictionary/clumps.index' file. And indeed, it appears that > this file doesn't

Re: Editing polygon points

2013-03-07 Thread Monte Goulding
On 08/03/2013, at 7:22 AM, John Craig wrote: > Well - that will do your reputation no harm ;) Wohoo... 91... only 1409 to go so I can create a LiveCode tag ;-) -- Monte Goulding M E R Goulding - software development services mergExt - There's an external for that! __

Re: Editing polygon points

2013-03-07 Thread John Craig
Well - that will do your reputation no harm ;) On 07/03/2013 19:44, Monte Goulding wrote: On 08/03/2013, at 12:28 AM, John Craig wrote: Is it possible to visually edit the points of a polygon and can I add and delete individual points? http://stackoverflow.com/questions/15272215/editing-pol

RE: Mucking around with polygon graphics.

2013-03-07 Thread John Dixon
> Boy-O-Boy; here I am at my most 'dangerous'; nothing to do than get > stimulated by postings on the Use-List. > > So, I made a regular polygon graphic with 7 points, called it "G1", and > then thought "funny things" and tried this in a button: > > on mouseUp > put item 1 of point 1 of

Re: docs.runrev.com (and structured docs, and BvG docu)

2013-03-07 Thread François Chaplais
make sure you have the latest version of the docu stack, especially if you are on the mac. François Le 7 mars 2013 à 20:43, Ben Rubinstein a écrit : > On 07/03/2013 18:39, Björnke von Gierke wrote: >> >> On 07.03.2013, at 19:22, Ben Rubinstein wrote: >> >>> (I tried to launch BvG docu recently,

Mucking around with polygon graphics.

2013-03-07 Thread Richmond
Boy-O-Boy; here I am at my most 'dangerous'; nothing to do than get stimulated by postings on the Use-List. So, I made a regular polygon graphic with 7 points, called it "G1", and then thought "funny things" and tried this in a button: on mouseUp put item 1 of point 1 of graphic "G1" into

Re: docs.runrev.com (and structured docs, and BvG docu)

2013-03-07 Thread Ben Rubinstein
On 07/03/2013 18:39, Björnke von Gierke wrote: On 07.03.2013, at 19:22, Ben Rubinstein wrote: (I tried to launch BvG docu recently, but couldn't get it going - it was unhappy at the lack of an index file in recent editions, and even when I found an older edition with that file to point it at

Re: Editing polygon points

2013-03-07 Thread Monte Goulding
On 08/03/2013, at 12:28 AM, John Craig wrote: > Is it possible to visually edit the points of a polygon and can I add and > delete individual points? > > http://stackoverflow.com/questions/15272215/editing-polygon-points-with-livecode > It appears everyone is too used to replying here... I

Re: passing binary data to MySQL BLOB field

2013-03-07 Thread Peter Haworth
'Cause you replied to the original question about using blobs! I see the dictionary entry now, missed that. Pete lcSQL Software On Thu, Mar 7, 2013 at 10:13 AM, Björnke von Gierke wrote: > Why me, and not one of the hundreds of other list-readers :P > > I've never done

Re: docs.runrev.com (and structured docs, and BvG docu)

2013-03-07 Thread Björnke von Gierke
On 07.03.2013, at 19:22, Ben Rubinstein wrote: > (I tried to launch BvG docu recently, but couldn't get it going - it was > unhappy at the lack of an index file in recent editions, and even when I > found an older edition with that file to point it at, it failed for some > reason I failed to f

docs.runrev.com (and structured docs, and BvG docu)

2013-03-07 Thread Ben Rubinstein
A recent post from Alejandro tipped me off to docs.runrev.com, which somehow I'd never discovered. Does anyone know the status of this? It's labelled as "Revolution community documentation" - and looks almost really useful, except that it's very out of date - no mention of any of the mobile s

Re: passing binary data to MySQL BLOB field

2013-03-07 Thread Björnke von Gierke
Why me, and not one of the hundreds of other list-readers :P I've never done arrays with binary, but the dictionary entry for revExecuteSQL says: "To pass binary data in an array element, prepend "*b" to the element's key." I Assume that means: put "I am binary!" into myArray["*bSomeKey"] reve

Bezier curves and open source

2013-03-07 Thread Andrew Meit
Kevin, Will Bezier curves finally get full support in open source LC?? I assume the svg support from the stretch goals handle Bezier curves?? Thanks andrew ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Pasting a group field

2013-03-07 Thread Björnke von Gierke
Pasting complex object into word processing is nontrivial. I suggest not to try to code it yourself :) Most likely it's easier to buy one of the word-exporting add-ons for creating word documents from scratch. On 06.03.2013, at 16:25, Charles Szasz wrote: > I have grouped some rectangles conta

Re: 1001 things to do...

2013-03-07 Thread Jeff Reynolds
Tiemo, i believe one of the wikipedia entries for mind blowing is scott rossi jeff On Mar 7, 2013, at 10:20 AM, use-livecode-requ...@lists.runrev.com wrote: > But Scotts Rossis UIs are really mind-blowing! ___ use-livecode mailing list use-livecode@l

LiveCode and Mathematica

2013-03-07 Thread Andrew Meit
I would help test it. I have been wanting Mathematica support inside an x-talk for decades. Go for it. Please. andrew ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscripti

Re: Editing polygon points

2013-03-07 Thread Jim Hurley
Hi John, There is a much overlooked feature in RR that allows you to manually reshape points. Under the Object menu select "Reshape graphic." And you can delete points using the Inspector. Just delete the offending line among the Points. Adding points is tricky. But you can just add a new li

Re: Update process in the Apple App Store

2013-03-07 Thread Robert Brenstein
On 07.03.2013 at 14:27 Uhr +0100 Graham Samuel apparently wrote: I can of course ask the user to go through some process (like clicking a button) to complete the update, but it would be far preferable for the app to do this aspect of the update automatically without user intervention. This woul

Re: 1001 things to do...

2013-03-07 Thread Roger Guay
Hear, hear!! On Mar 7, 2013, at 8:09 AM, Tiemo Hollmann TB wrote: > It's really interesting and great to see the variety of skills and > creativity of the list members on http://livecode1001.blogspot.de/ > > But Scotts Rossis UIs are really mind-blowing! > > Chapeau! > > Tiemo > > > > >

1001 things to do...

2013-03-07 Thread Tiemo Hollmann TB
It's really interesting and great to see the variety of skills and creativity of the list members on http://livecode1001.blogspot.de/ But Scotts Rossis UIs are really mind-blowing! Chapeau! Tiemo ___ use-livecode mailing list use-livecode@lists.

Re: Editing polygon points

2013-03-07 Thread in...@kenjikojima.com
John, I have made a wireframe drawing stack. You have to open stack "animationEngine" before this. go stack url "http://www.kenjikojima.com/runrev/draw3D.livecode"; Create a New Point: Click on Grid Move a Point: MacOS: Option Key + Drag a Point Windows: Alt Key + Drag a Point Add a New Po

Re: AW: Anyone using App Wrapper from Ohanaware.com

2013-03-07 Thread Guglielmo Braguglia
Hi Tiemo, mmm ... App Wrapper is something different, more like "RB Package Maker" (http://www.bluecolin.com/rbpms/index.html) which I use and work very fine with LiveCode (/he does //Packaging, Code Signing, Sandboxing, Override info.plist settings, etc./). Guglielmo On 3/7/13 14:41 PM, T

Re: Editing polygon points

2013-03-07 Thread dunbarx
Hi. I don't think you can access the points of a polygon directly, nor can you address a particular point, as in: set the loc of point 3 of grc "yourGraphic" to newValue I could be wrong. But you can address the points as a group. Make a simple polygon with a few vertices. Make a butt

AW: Anyone using App Wrapper from Ohanaware.com

2013-03-07 Thread Tiemo Hollmann TB
Hi Matthias, I don't know App Wrapper. I'm using Installer Maker from Mark S. and it's integrated in LC: http://www3.economy-x-talk.com/file.php?node=installer-maker Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Matth

Editing polygon points

2013-03-07 Thread John Craig
Is it possible to visually edit the points of a polygon and can I add and delete individual points? http://stackoverflow.com/questions/15272215/editing-polygon-points-with-livecode ___ use-livecode mailing list use-livecode@lists.runrev.com Please v

Update process in the Apple App Store

2013-03-07 Thread Graham Samuel
Folks, I'm thinking of selling a desktop app from the Mac via the App Store. I daresay I can struggle with the Apple bureaucracy to get the thing into the Store, but there's one thing I'd like to ask LiveCoders before I start, concerning the subsequent update process. The nature of my app is th

Anyone using App Wrapper from Ohanaware.com

2013-03-07 Thread Matthias Rebbe
Hi, today MacZot is selling App Wrapper from Ohanaware for just 24.95$ instead of 49.95$. Is anyone of you using that tool for your Livecode standalones? And if so how is your experience? Regards Matthias ___ use-livecode mailing list use-livecode

Re: Vote for LiveCode - About.com Reader's Choice Best Mobile App Creator

2013-03-07 Thread ha...@exformedia.se
Can't see the logic behind that list… Funambol : A syncronizing engine Livecode : Well we all now what this is Memotoo : Also a synchronizing engine MobiCart : Lets you easily take your product catalog to mobile devices SaasMob : Can't wrap my head around that… It says that you can "create mobile

Re: RevOnline, again.

2013-03-07 Thread neil
Dear Richmond et al., Thank you for informing us about the issues you are experiencing with revOnline. We are currently investigating the cause of the issues and will hopefully have a solution shortly. Kind Regards, Neil Roger -- RunRev Support Team ~ http://www.runrev.com Support Open Source L

AW: what is the opposite of split?

2013-03-07 Thread Tiemo Hollmann TB
Oh sure, thanks Alejandro > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Alejandro Tejada > Gesendet: Donnerstag, 7. März 2013 09:50 > An: use-revolut...@lists.runrev.com > Betreff: Re: what is the opposite of split? > > Hi

Re: what is the opposite of split?

2013-03-07 Thread Alejandro Tejada
Hi Thiemo, Look here: http://docs.runrev.com/Command/combine The combine command combines the elements of the array into a single variable. After the command is finished executing, the variable specified by array is no longer an array. -- View this message in context: http://runtime-revolutio

what is the opposite of split?

2013-03-07 Thread Tiemo Hollmann TB
Hello, I just have a drop out. With "split" I can create an array from a simple variable. Is there a reverse command to make a simple variable out of an array? Thanks Tiemo ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit