[ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
Hey everyone! At the RunRevLive 2011 conference I gave a talk on custom controls and demonstrated an easy to use method of adding custom controls to your stacks. It received a lot of great feedback, and so I've worked on it over the last five weeks and now have a really great LiveCode add-on called

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread René Micout
Hello Ken, :-) :-) :-) :-) Bon souvenir de Paris René Le 5 juin 2011 à 09:08, Ken Ray a écrit : > Hey everyone! At the RunRevLive 2011 conference I gave a talk on custom > controls and demonstrated an easy to use method of adding custom controls to > your stacks. It received a lot of great feedba

Why I love Appleworks

2011-06-05 Thread Richmond Mathewson
Ever since I bought my first Mac I have used Clarisworks / Appleworks as my primary word-processor ( I even use the Windows version along with WINE on my Linux rig). I use it for writing long stretches of code . . . The NICEST thing about it is that I can use the 4 key that have funny arrows o

Why I love Appleworks

2011-06-05 Thread Richmond Mathewson
WOULDN'T IT BE LOVELY if there were a way to implement those 4 keys so that they worked for the script-editor! OR, put another way: Is it possible to hack the Script-Editor? Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Pleas

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
My apologies, but I just noticed a minor bug - if you open the Inspector for either the stsImageWell or srCalendar DropTools and you're on Windows or Linux, the Inspector palette did not show a close box, so you couldn't close the Inspector other than by script. This doesn't affect the DropTools P

UITextField... and nothing?

2011-06-05 Thread Mark Schonewille
Hi, Why doesn't this do anything? iPhoneCreate "UITextField","test" iPhoneControlSet "test","text","hi" put iPhoneControlGet("test","text") into x iPhoneControlDelete "test" answer x It just shows an empty dialog. Shouldn't this work and show a dialog containing "hi"? -- Best regards, Mark Sc

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Roger Eller
I saw the demo. iDrooled. And now it's here. Awesome! Thanks Ken! ˜Roger ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mai

Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Todd Geist
Hello How does one stop the Save Stack Dialog that pops up in the IDE when ever you close a stack? In my testing On closeStackRequest doesn't fire until AFTER the dialog pops up and the user clicks "Save", So doing this *on* closeStackRequest *save* this stack *pass* closeStackRequest *e

Re: UITextField... and nothing?

2011-06-05 Thread John Dixon
Hello Mark... I have attached a stack that put the text of the UITextField into an answer dialog.. it places it into the answer dialog after you have finished editing.. be well Dixie On 5 Jun 2011, at 15:50, Mark Schonewille wrote: > Why doesn't this do anything? > > iPhoneCreate "UITextFi

5000 lines of code

2011-06-05 Thread Richmond Mathewson
If anybody really cares here is a PDF of the code in ONE object in my Devawriter Pro: read it and weep . . . :) http://andregarzia.on-rev.com/richmond/PRO/KODE/5000.pdf you never know; you might learn something, get a headache, or both! ___ use-livec

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Todd Geist
I stumbled on this message suspendStack This fires before the Save Dialog shows. So this will prevent the dialog from ever showing on suspendStack save this stack end suspendStack Todd On Sun, Jun 5, 2011 at 8:02 AM, Todd Geist wrote: > Hello > > How does one stop the Save Stack Dialog t

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Todd Geist
actually no it doesn't work gr On Sun, Jun 5, 2011 at 8:27 AM, Todd Geist wrote: > I stumbled on this message > > suspendStack > > This fires before the Save Dialog shows. So this will prevent the dialog > from ever showing > > on suspendStack >save this stack > end suspendStack > > Todd

Re: [mobile:Android] mobileSetAllowedOrientations gives error

2011-06-05 Thread Roger Eller
On Fri, Jun 3, 2011 at 12:02 PM, J. Landman Gay wrote: > On 6/3/11 10:10 AM, Nonsanity wrote: > >> Am I wrong in thinking this command doesn't exist unless the stack is >> running in a mobile environment? In other words... >> >> on preOpenStack >> if the environment is "mobile" then >>

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Robert Brenstein
suspendStack serves a different purpose but the save dialog will pop even if you save the stack in the script of any handler... If you want to avoid that, set the stack mode to modeless in the preopenstack handler. Robert On 05.06.2011 at 8:31 Uhr -0700 Todd Geist apparently wrote: actually

Re: UITextField... and nothing?

2011-06-05 Thread Mark Schonewille
Thanks, Dixie! I received your stack off-list. I noticed that you use "input" instead of "UITextField". I corrected this and now it works. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkp

Re: SubStacks and message path

2011-06-05 Thread Robert Brenstein
On 04.06.2011 at 12:58 Uhr +0100 Keith Clarke apparently wrote: Hi Jim, Thanks for the response, clarification and tips. This app has one MainStack (so far!) and it's script contains a handler on preOpenStack, to start using stack "SOAP". So, thanks for confirming that this should place the SO

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Mark Schonewille
Hi Todd, Are you on a Mac? What you are trying to do won't work without lots of editing in the front scripts of the IDE. If I remember correctly, the reason is that the gRevStackStatus will contain true as soon as a field gets focus and the closeStackRequest handler in the frontscript will make

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Todd Geist
Thanks Ok At least I am not crazy. This really can't be done easily Thanks Todd On Sun, Jun 5, 2011 at 9:03 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi Todd, > > Are you on a Mac? What you are trying to do won't work without lots of > editing in the front scripts of t

Re: [mobile:Android] mobileSetAllowedOrientations gives error

2011-06-05 Thread J. Landman Gay
On 6/5/11 10:47 AM, Roger Eller wrote: I am seeing some strange things. The release notes say: -- Here orientations must be a comma-delimited list consisting of at least one of -- portrait, portrait upside down, landscape left and landscape right. So, I have this in preOpenStack: if the envir

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Scott Rossi
Recently, Ken Ray wrote: > Hey everyone! At the RunRevLive 2011 conference I gave a talk on custom > controls and demonstrated an easy to use method of adding custom controls to > your stacks. It received a lot of great feedback, and so I've worked on it > over the last five weeks and now have a r

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Jan Schenkel
--- On Sun, 6/5/11, Todd Geist wrote: > Hello > > How does one stop the Save Stack Dialog that pops up in the > IDE when ever > you close a stack? In my testing On closeStackRequest > doesn't fire until > AFTER the dialog pops up and the user clicks "Save", So > doing this > > *on* closeStackReq

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Jan Schenkel
--- On Sun, 6/5/11, Ken Ray wrote: > Hey everyone! At the RunRevLive 2011 > conference I gave a talk on custom > controls and demonstrated an easy to use method of adding > custom controls to > your stacks. It received a lot of great feedback, and so > I've worked on it > over the last five weeks

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Pete
Great! Wish this had been around a couple of months ago when I put together my own tools palette! One question. When I drag and drop the calendar control, I get a message about it needing a library and a dalog box to choose the library - which library does it need? Pete Molly's Revenge

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
> Great! Wish this had been around a couple of months ago when I put together > my own tools palette! > > One question. When I drag and drop the calendar control, I get a message > about it needing a library and a dalog box to choose the library - which > library does it need? Actually it's *in

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Mike Bonner
I think its asking what folder you want it to put the library in, then it creates it on its own, and will supply the correct "start using.. " command. Or add it to the stack for you. I did notice a typo in 1 line of the library script * put ("stack" && q("_" & pCalSize & "Calendar")) && "of stac

Windows? [OT]

2011-06-05 Thread Richmond Mathewson
Has anybody, ever, managed to get ReactOS: http://www.reactos.org/en/index.html to boot successfully, and install the thing? I have wasted more time than I could, possibly, have spent earning the money for a Windows licence, trying to get ReactOS to work.

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread stephen barncard
q is often a name for a handler that adds quotes - are you sure it's not needed? (I ran into the same stoppage...) On 5 June 2011 11:41, Mike Bonner wrote: > I think its asking what folder you want it to put the library in, then it > creates it on its own, and will supply the correct "start us

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Mike Bonner
Hmm that does make sense, but couldn't find a handler in the library that did so. Removing them makes it appear to work ok for me, but there are probably reasons to add quotes to it that I don't understand. I couldn't find a q handler in the library. On Sun, Jun 5, 2011 at 12:55 PM, stephen barnca

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Pete
Thanks Ken and Mike, misunderstood the message. Pete Molly's Revenge On Sun, Jun 5, 2011 at 11:41 AM, Mike Bonner wrote: > I think its asking what folder you want it to put the library in, then it > creates it on its own, and will supply the correct "start using

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Jim Ault
On Jun 5, 2011, at 11:41 AM, Mike Bonner wrote: I think its asking what folder you want it to put the library in, then it creates it on its own, and will supply the correct "start using.. " command. Or add it to the stack for you. I did notice a typo in 1 line of the library script * put

Re: 5000 lines of code

2011-06-05 Thread Mark Wieder
Richmond- Sunday, June 5, 2011, 8:13:27 AM, you wrote: > If anybody really cares here is a PDF of the code in > ONE object in my Devawriter Pro: read it and weep . . . :) That may be the longest mouseUp handler / switch statement I've ever seen A few suggestions: I'm not sure if it will make

Re: 5000 lines of code

2011-06-05 Thread Richmond Mathewson
On 06/05/2011 10:03 PM, Mark Wieder wrote: Richmond- Sunday, June 5, 2011, 8:13:27 AM, you wrote: If anybody really cares here is a PDF of the code in ONE object in my Devawriter Pro: read it and weep . . . :) That may be the longest mouseUp handler / switch statement I've ever seen A few s

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Mike Bonner
Ah k, ty for the explanation of why. I like merge so I did the line that way. * put merge("stack [[quote]]_[[pCalSize]]Calendar[[quote]] of stack [[quote]][[the short name of me]][[quote]]") into tCalStack* On Sun, Jun 5, 2011 at 1:02 PM, Jim Ault wrote: > On Jun 5, 2011, at 11:41 AM, Mike

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
> Hmm that does make sense, but couldn't find a handler in the library that > did so. Removing them makes it appear to work ok for me, but there are > probably reasons to add quotes to it that I don't understand. I couldn't > find a q handler in the library. Whoops! Good catch! I've uploaded a ne

Re: 5000 lines of code

2011-06-05 Thread Mark Wieder
Richmond- Sunday, June 5, 2011, 12:07:00 PM, you wrote: >> Also, you spend a lot of effort making sure that DDROP has the correct >> value, but then you never use it. > The switch code is generic, and the DDROP value is used in other objects. Took me a couple of times through that to get what y

Re: Windows?

2011-06-05 Thread Scott Rossi
This seems like a really useful option, thanks Matthias. I will still need a production system, so I guess the standard OEM options are still the most typical. Thanks & Regards, Regards, Scott Rossi Creative Director Tactile Media, UX Design Recently, Matthias Rebe wrote: > Hi Scott, > >

Re: 5000 lines of code

2011-06-05 Thread Richmond Mathewson
On 06/05/2011 10:33 PM, Mark Wieder wrote: Richmond- Sunday, June 5, 2011, 12:07:00 PM, you wrote: Also, you spend a lot of effort making sure that DDROP has the correct value, but then you never use it. The switch code is generic, and the DDROP value is used in other objects. Took me a coup

Re: Why I love Appleworks

2011-06-05 Thread François Chaplais
You can try suitable variants of EMACS (but I doubt it will have a LC mode). On the Mac, I use Alpha (especially for TeX) it is available at http://bdesgraupes.pagesperso-orange.fr/alphabinaries.html The versions at the bottom are PPC and require Rosetta on intel machines (it works really fine)

Re: Is it possible to get rid of The Save Stack Dialog?

2011-06-05 Thread Todd Geist
Thanks Jan On Sun, Jun 5, 2011 at 11:08 AM, Jan Schenkel wrote: > --- On Sun, 6/5/11, Todd Geist wrote: > > Hello > > > > How does one stop the Save Stack Dialog that pops up in the > > IDE when ever > > you close a stack? In my testing On closeStackRequest > > doesn't fire until > > AFTER the

Re: Windows? [OT]

2011-06-05 Thread Roger Eller
On Sun, Jun 5, 2011 at 2:53 PM, Richmond Mathewson wrote: > Has anybody, ever, managed to get ReactOS: > > http://www.reactos.org/en/index.html > > to boot successfully, and install the thing? > > I have wasted more time than I could, possibly, have spent earning the > money for > a Windows licenc

Re: Windows? [OT]

2011-06-05 Thread Roger Eller
On Sun, Jun 5, 2011 at 4:34 PM, Roger Eller wrote: > On Sun, Jun 5, 2011 at 2:53 PM, Richmond Mathewson wrote: > > Has anybody, ever, managed to get ReactOS: >> >> http://www.reactos.org/en/index.html >> >> to boot successfully, and install the thing? >> >> I have wasted more time than I could, po

Re: Windows? [OT]

2011-06-05 Thread Roger Eller
On Sun, Jun 5, 2011 at 4:34 PM, Roger Eller wrote: > On Sun, Jun 5, 2011 at 2:53 PM, Richmond Mathewson wrote: > > Has anybody, ever, managed to get ReactOS: >> >> http://www.reactos.org/en/index.html >> >> to boot successfully, and install the thing? >> >> I have wasted more time than I could, po

Re: Windows? [OT]

2011-06-05 Thread Richmond Mathewson
On 06/05/2011 11:37 PM, Roger Eller wrote: On Sun, Jun 5, 2011 at 4:34 PM, Roger Eller wrote: On Sun, Jun 5, 2011 at 2:53 PM, Richmond Mathewson wrote: Has anybody, ever, managed to get ReactOS: http://www.reactos.org/en/index.html to boot successfully, and install the thing? I have wasted

Re: [mobile:Android] mobileSetAllowedOrientations gives error

2011-06-05 Thread Roger Eller
On Sun, Jun 5, 2011 at 1:53 PM, J. Landman Gay wrote: > On 6/5/11 10:47 AM, Roger Eller wrote: > > I am seeing some strange things. >> >> So, I have this in preOpenStack: >> >> if the environment is "mobile" then >> mobileSetAllowedOrientations "landscape right, portrait, portrait >> upsided

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Thomas McGrath III
The tool just stopped working after an error and now it can not drag a control to a stack. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Jun 5, 2011, at 3:15 PM, Ken Ray wrote: > >> Hmm that does make sense, but couldn't find a handler in the library that >> did so. Re

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
> The tool just stopped working after an error and now it can not drag a control > to a stack. What was the error? Ken Ray Sons of Thunder Software, Inc. Email: k...@sonsothunder.com Web Site: http://www.sonsothunder.com/ ___ use-livecode mailing li

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Colin Holgate
I tried a command-v paste of an image onto the stsInmageWell thing, and got a script error. The line was trying to do a PasteImage, but the command was called _PasteImage. Putting the underscore there fixed the issue. ___ use-livecode mailing list use-l

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
> I tried a command-v paste of an image onto the stsInmageWell thing, and got a > script error. The line was trying to do a PasteImage, but the command was > called _PasteImage. Putting the underscore there fixed the issue. Thanks for finding that... I've uploaded a new version (1.0.1) that fixes

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Ken Ray
>> I tried a command-v paste of an image onto the stsInmageWell thing, and got a >> script error. The line was trying to do a PasteImage, but the command was >> called _PasteImage. Putting the underscore there fixed the issue. > > Thanks for finding that... I've uploaded a new version (1.0.1) that

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Thomas McGrath III
I didn't catch the error. I clicked before I thought to write it down. I will redownload and again. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Jun 5, 2011, at 8:55 PM, Ken Ray wrote: >> The tool just stopped working after an error and now it can not drag a >> contro

How do you build the tabs like in the script editor

2011-06-05 Thread Mark Stuart
Hi all, It's a while since I've been on the list but anyway, how would I go about building the same tab interface (multiple document interface) as the LC script editor? As the user wants to open a document, they would have the choice of overwriting the existing open document, or opening the docume

[TEASER] It is Alive! SFTP support in LiveCode

2011-06-05 Thread Andre Garzia
Folks, Today, more precisely at 3:03 AM, the SFTP external worked for the first time and transfered its first file. It was a simple text file called test.txt whose content was simply "YES", but hey, it worked. The SFTP external is based on libCURL and libSSH2. Right now I managed to build it only

Logical Expressions

2011-06-05 Thread Van Brollini
What is the best way to do multiple logical comparisons and get them to work? For example if ((gUSL <= pos_vrange) AND (gUSL >= neg_vrange)) then get TRUE put it into tTester[x]["rng_check"] else get FALSE put it into tTes