Re: Layering Mobile Controls

2013-03-02 Thread Ender Nafi Elekçioğlu
Thanks Pierre, Your code is excellent. But as I said, I'm trying to avoid to inject any code/script into the html files. It's too risky with online webpages. One has to save the page and resources first, then alter the html file, then set the url of browser to this saved & altered html file. It's

Re: Keys of a custom property array

2013-03-02 Thread dunbarx
And I thought I was going to be clever by trying: do "get the keys of the testArray of me" No dice, but Peter's way works fine. The question is: why? get the keys of (the uArray of button "xyz") --works get the keys of the uArray of button "xyz" --does not work All I (thought I) knew about

Re: Keys of a custom property array

2013-03-02 Thread Peter Haworth
Hi Jacque, I just tried: get the keys of (the uArray of button "xyz") ... and got the keys of uArray. Pete lcSQL Software On Sat, Mar 2, 2013 at 8:06 PM, J. Landman Gay wrote: > If I store an array as a custom property, is there a way to get its keys > without putting t

Re: Keys of a custom property array

2013-03-02 Thread J. Landman Gay
On 3/3/13 12:26 AM, Mark Wieder wrote: Jacque- Saturday, March 2, 2013, 10:06:01 PM, you wrote: If I store an array as a custom property, is there a way to get its keys without putting the whole thing into a variable first? Sure, but it's roundabout and I can't guarantee that the engine does

Re: Keys of a custom property array

2013-03-02 Thread dunbarx
Jacque. I tried this: on mouseUp repeat with y = 1 to 4 put y into myArray[y] end repeat set the testArray of me to myArray --try to get the keys directly get the keys of the testArray of me --throws an error combine the testArray of me using return --also throws an error --p

Re: Two Windows

2013-03-02 Thread Timothy Miller
On Mar 2, 2013, at 4:19 PM, J. Landman Gay wrote: > On 3/2/13 5:59 PM, stephen barncard wrote: >> one can create a copy of Livecode and run each version (name it Livecode B >> or something) in a different space, yet cut and paste between. No name >> space conflicts this way! > > I do that all

Re: Keys of a custom property array

2013-03-02 Thread Mark Wieder
Jacque- Saturday, March 2, 2013, 10:06:01 PM, you wrote: > If I store an array as a custom property, is there a way to get its keys > without putting the whole thing into a variable first? Sure, but it's roundabout and I can't guarantee that the engine doesn't end up doing that anyway. set the

Re: sharing menus among substacks

2013-03-02 Thread Peter Haworth
Probably the closest is to use a behavior. Set up a menu somewhere in your stack that includes all the scripts to handle its usage. Then set the behavior of of each of your menus to the ID of that button Pete lcSQL Software On Sat, Mar 2, 2013 at 5:24 PM, Dr. Hawkins wro

Keys of a custom property array

2013-03-02 Thread J. Landman Gay
If I store an array as a custom property, is there a way to get its keys without putting the whole thing into a variable first? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: sharing menus among substacks

2013-03-02 Thread J. Landman Gay
On 3/2/13 9:24 PM, Dr. Hawkins wrote: Some time ago, I went through the hassle of making menus, and copying them between my substacks. Is there *any* way to simply have a single menu set that stays in sync among substacks, rather then needing to copy to every substack every time??? Set the def

Re: Set the Finder icon of a stack?

2013-03-02 Thread J. Landman Gay
On 3/2/13 8:25 PM, Paul Hibbert wrote: I think the dictionary is a little misleading, the summary states; "or used as the desktop icon of a stack file or application", so I read desktop icon = finder icon, sadly not, desktop icon = dock icon only. You're right, it is. You could add a user note

sharing menus among substacks

2013-03-02 Thread Dr. Hawkins
Some time ago, I went through the hassle of making menus, and copying them between my substacks. Is there *any* way to simply have a single menu set that stays in sync among substacks, rather then needing to copy to every substack every time??? ___ use-l

using the internal postgres on OSX

2013-03-02 Thread Dr. Hawkins
Is there *anything* out there that suggests how to use the internal postresql server on OSX? In particular, I want to configure it to use on the local network for my stack. sqlite just doesn't cut it when simultaneous access is possible . . . -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___

Re: Set the Finder icon of a stack?

2013-03-02 Thread Paul Hibbert
Thank you for your reply Jacque. I spent some more time playing with this and eventually realised it only affects the Dock Icon. I think the dictionary is a little misleading, the summary states; "or used as the desktop icon of a stack file or application", so I read desktop icon = finder icon,

Re: On-Rev tool updated

2013-03-02 Thread in...@kenjikojima.com
Mark, Now I am using TextWrangler and Cyberduck. But they are very inconvenient. My update request was only adding one ftp on-rev server address. If I cannot have an updated tool, I wish my server returns to odin.on-rev. I mailed it to on-rev support and received a reply at January 18th that wa

Re: On-Rev tool updated

2013-03-02 Thread Mark Wieder
Kenji- Saturday, March 2, 2013, 11:42:02 AM, you wrote: > Does anybody know the On-Rev tool updated? > I cannot use the On-Rev tool since I changed from odin.on-rev to tio.on-rev > last December. Hasn't been updated in years. Just as buggy as ever. Is there something you need to do with it that

Re: Sauce Bottle

2013-03-02 Thread Mark Wieder
Roger- Saturday, March 2, 2013, 4:22:39 PM, you wrote: > In what way does the "I imagine" differentiate it from the regular > LiveCode? Is it because the open source version doesn't exist yet, so you > can only imagine it? ;-D > Do we also refer to it as LCIi? No, I think the plural is LCWei o

Re: mySQL OLD_PASSWORD

2013-03-02 Thread Sergey Pashkov
Hello, Kay, > So my question remains. The reason I'm not using the new format is because > back when I upgraded mySQL Rev could not handle the new password format. I'm > speaking to mySQL with LiveCode. So I need to know if anyone knows if > LiveCoded has been upgraded so it can handle new mySQ

Re: Sauce Bottle

2013-03-02 Thread Roger Eller
In what way does the "I imagine" differentiate it from the regular LiveCode? Is it because the open source version doesn't exist yet, so you can only imagine it? ;-D Do we also refer to it as LCIi? ~Roger On Mar 2, 2013 6:37 PM, "Monte Goulding" wrote: > LiveCode I imagine > > -- > M E R Gould

Re: Two Windows

2013-03-02 Thread J. Landman Gay
On 3/2/13 5:59 PM, stephen barncard wrote: one can create a copy of Livecode and run each version (name it Livecode B or something) in a different space, yet cut and paste between. No name space conflicts this way! I do that all the time, only my second copy is using the MetaCard IDE. I keep

Re: Two Windows

2013-03-02 Thread stephen barncard
one can create a copy of Livecode and run each version (name it Livecode B or something) in a different space, yet cut and paste between. No name space conflicts this way! On Sat, Mar 2, 2013 at 11:29 AM, Timothy Miller < gand...@doctortimothymiller.com> wrote: > Hello, > > When working on a lo

Re: Android Droid fonts - here is the download link

2013-03-02 Thread J. Landman Gay
On 3/2/13 7:31 AM, David Bovill wrote: And if anyone knows the answer to the font question below :) On 1 March 2013 17:00, David Bovill wrote: Thanks it does - just wandering what the relationship between the results returned by the fontstyle function (ie "bold-italic") are and the textstyle

Re: Sauce Bottle

2013-03-02 Thread Monte Goulding
LiveCode I imagine -- M E R Goulding Software development services mergExt - There's an external for that! On 03/03/2013, at 8:04 AM, Richmond wrote: > Is there any word as to what the Open Source version of Livecode will be > called? > > Richmond. > > __

Re: Set the Finder icon of a stack?

2013-03-02 Thread J. Landman Gay
On 3/1/13 6:39 PM, Paul Hibbert wrote: Some quotes from the dictionary… icon Type: property Syntax: set the icon to {imageID | imageName} Platforms: Desktop, Server, Web and Mobile Summary: Specifies an image that is displayed in a button, or used as the desktop icon of a stack file or applica

Sauce Bottle

2013-03-02 Thread Richmond
Is there any word as to what the Open Source version of Livecode will be called? Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://li

Layering Mobile Controls

2013-03-02 Thread Ender Nafi Elekçioğlu
Hi all, Is there any workaround to use two different mobile controls whose "rect" properties are same? Here is the case: I have three fullscreen browser controls {created by *mobileControlCreate "browser"* command}, the left and right controls are outside of the screen {something like this:

Re: Two Windows

2013-03-02 Thread dunbarx
Hi. Why not just make a copy of the file? You will want to name the stack itself differently. Craig Newman -Original Message- From: Timothy Miller To: How to use LiveCode Sent: Sat, Mar 2, 2013 2:30 pm Subject: Two Windows Hello, When working on a long and complex document with

On-Rev tool updated

2013-03-02 Thread in...@kenjikojima.com
Hi, Does anybody know the On-Rev tool updated? I cannot use the On-Rev tool since I changed from odin.on-rev to tio.on-rev last December. Thanks, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ ___ use-livecode mailing list use-livecode@lists.ru

Two Windows

2013-03-02 Thread Timothy Miller
Hello, When working on a long and complex document with a word processor, I sometimes find it useful to display the same document in two windows, simultaneously. I can cut and paste from one window to the other, or read one part of the document while typing in another, and so on. Now I have th

revOnline updates to libUndo and libSOAP

2013-03-02 Thread Mark Wieder
All- Now that the Kickstarter excitement has settled down a bit and the server maintenance has finished, I had the chance to post some updates to a couple of library stacks on revOnline. libUndo: substack for unlimited undo/redo functionality libUndo had a problem with the Redo function when I ex

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Jim Schaubeck
Thank you Mike and Roger!  That did the trick!   __   jim schaubeck   jimschaub...@yahoo.com/  714.321.4499 From: Mike Bonner To: How

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Roger Guay
Look up moveStack in the dictionary. Use this handler in the stack script of your main stack. You'll have to play around with the parameters to exactly center your subStack. Let me know if you need help with that. Roger On Mar 2, 2013, at 8:15 AM, Jim Schaubeck wrote: > Thank you Roger! Th

Re: Campaign success stories

2013-03-02 Thread Roger Eller
I wonder what the criteria is for being published on Flipboard's default technology pages. I know you can customize the feeds, but I think more people would see an article if delivered in the default configuration. I love to read with Flipboard. It puts online news back into a newspaper. https://

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Jim Schaubeck
Figured it out and feel dumb...I used moveStack from the main stack to set the loc of the substack Thanks Roger for pointing out the Float Above Everything tip   __   jim schaubeck

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Mike Bonner
After setting up a big stack and a smaller stack I put the following into the card of the stack that will stay in the background. *on* movestack *lock* screen *set* the bottomleft of stack "overlaystack" to the globalloc of the bottomleft of this card *unlock* screen *end* movestack

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Jim Schaubeck
Thank you Roger!  That works to easily keep the substack on top! How to I have the substack "track" the main stack when the main stack is dragged somewhere else on the screen?   __   jim schaubeck   

Re: Substack tracking main stack and staying at top level

2013-03-02 Thread Roger Guay
Hi Jim, Just check the "Float above evertyhing" in the stack properties of the substack. Roger On Mar 2, 2013, at 8:00 AM, Jim Schaubeck wrote: > Livecode friends, > I would like to have a substack open and stay in a certain area of the main > stack. Also, if the main stack is clicked, the s

Substack tracking main stack and staying at top level

2013-03-02 Thread Jim Schaubeck
Livecode friends, I would like to have a substack open and stay in a certain area of the main stack.  Also, if the main stack is clicked, the substack stays at top level.   Can someone please advise as to how I can do this? I can do this with groups but too many groups gets a bit challenging to m

Android Droid fonts - here is the download link

2013-03-02 Thread David Bovill
Found this - may be useful to some. Free ttf fonts to download - they are the ones that show up pre-installed in your Android stacks once deployed - so now you can use them in your development environment: - http://damieng.com/blog/2007/11/14/droid-font-family-courtesy-of-google-ascender A

Campaign success stories

2013-03-02 Thread Alex Shaw
Here's one.. http://www.h-online.com/open/news/item/LiveCode-Kickstarter-campaign-successful-1814435.html regards alex ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscrip