Re: Can't close windows

2011-03-25 Thread Joe Lewis Wilkins
Maybe it is disabled. Under Basic Properties for your stacks, check the control settings. Joe Lewis Wilkins Architect Director of Product Development for GSI www.glsysinc.com On Mar 24, 2011, at 10:29 PM, paul foraker wrote: As of a few weeks ago, I can no longer close stacks by clicking

Re: iOS quit app message?

2011-03-25 Thread BNig
Hi Gerry and Scott, I used the shutdown message successfully to save. Just remember to put the handler in the stack script if your stack has more than 1 card and be aware that pathnames in iOS are case sensitive and of course that you save to a 'known' location, 'cache' or 'documents', not 'temp'

Re: Urban Airship in LC

2011-03-25 Thread Thomas McGrath III
Thanks Peter, Looking into it now. Might just be the trick. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Mar 25, 2011, at 1:03 AM, Peter W A Wood wrote: Tom I think that Mark Smith has the answer for you - http://revonline2.runrev.com/stack/82/LibJson-1-0b

Tab panels

2011-03-25 Thread James Hurley
I prefer the tab panel to the drop down menus. The choices are always visible. But I have a problem. If a particular tab is selected, it will no longer respond to a menuPick message. Normally this is not a problem, but I am using the panel to select lines or sentences from a long text

Re: Tab panels

2011-03-25 Thread Bob Sneidar
In the past, roll your own seems to be the outcome of discussions about tab panels. Bob On Mar 25, 2011, at 10:11 AM, James Hurley wrote: I prefer the tab panel to the drop down menus. The choices are always visible. But I have a problem. If a particular tab is selected, it will no

4.6

2011-03-25 Thread Peter Haworth
I have no idea why but my upgrade to 4.6 didn't have a cost attached to it, I guess I somehow paid for it in the past. I was happy to see a couple of things in the new release. Substacks within a main stack are now listed alphabetically, making it much easier to find them in large

revWeb revlets broken in Firefox 4.0?

2011-03-25 Thread Richard K. Herz
Are revWeb revlets broken in Firefox 4.0? Just upgraded to Firefox 4.0 on Mac 10.5.8. Get error message when going to a revlet: There was an error loading the revlet - failed to stream revlet. Works OK with Safari 5.0.4 and worked OK with earlier Firefox on same Mac. Thanks Rich

Re: 4.6

2011-03-25 Thread stephen barncard
I'm not disappointed in the 'lack' of new features. A lot of stuff is going on 'under the hood'. Stability and bug fixes are always a big feature. Improvements to mobile eventually work their way back to the desktop (and plugin and server), as the team are revising major parts of the engine as

Re: Tab panels

2011-03-25 Thread J. Landman Gay
On 3/25/11 12:11 PM, James Hurley wrote: In summary, is there any way to force the tab panel to receive a second menupick message when it is already selected? If the menuhistory doesn't change, the tab panel doesn't bother to update itself. You might be able to hack it with something like

Re: Can't close windows

2011-03-25 Thread J. Landman Gay
On 3/25/11 12:29 AM, paul foraker wrote: As of a few weeks ago, I can no longer close stacks by clicking their red close button (Mac OS 10.6.6, LC 4.0.0). I have to use File / Close (Cmd W). Any ideas what might be happening with that? If you have a closeStackRequest handler in the message

Re: 4.6

2011-03-25 Thread Bob Sneidar
Given all that, it seems the new licensing model makes a LOT more sense. If a release doesn't help you much, you aren't paying for something in advance that you now find out you really didn't need. I got the deluxe deal where I paid something like 3 years ahead, because I saw it as an

Re: 4.6

2011-03-25 Thread Malte Brill
Well, I see some major stumbling blocks for one of my desktop projects lifted with this release. The lifting of the images may not be wider than 4096 px limitation on the Mac is really a game changer for the Traditional Chinese Medicine Management software we have been developing over the past

Control ID problem

2011-03-25 Thread Peter Haworth
I have a function that returns information about a control which takes the control's short ID as a parameter. This has been working fine for a long time but has suddenly started to throw a run time error for one specific control. The statement put the short name of control ID pid into

Re: Control ID problem

2011-03-25 Thread Bob Sneidar
Hmmm... is it a button? Try referring to it as a button instead of a control. Bob On Mar 25, 2011, at 12:46 PM, Peter Haworth wrote: I have a function that returns information about a control which takes the control's short ID as a parameter. This has been working fine for a long time

Re: Control ID problem

2011-03-25 Thread Bob Sneidar
Hmmm... not sure but this works fine for me. on mouseUp pMouseBtnNo breakpoint put the id of me into theID put the short name of control id theID end mouseUp I get the short name of the button in the message box. Seems like something else is not compiling there. Bob On Mar 25,

Call for Beta testers.

2011-03-25 Thread Richmond
This is a call for beta testers using Mac INTEL computers to spend approximately 15 minutes testing a few specific probblems with my Dveawriter Pro. If you can spare 15 minutes of your time and you have a Mac INTEL computer, I would be most grateful if you could contact me off-list. sincerely,

Re: Control ID problem

2011-03-25 Thread Peter Haworth
I can't refer to it as a button because this is a general purpose function that has to deal with any type of control, not just a button. But I did try doing that in the message box and got the same error. It's been working fine for months and fails just on this one button so yes, there's

Re: Control ID problem

2011-03-25 Thread Peter Haworth
Thanks Scott, that's a possibility, the stack in question is not the front-most one for sure. However, shouldn't the defaultStack property (which is set to the correct substack) taken care of that? Or is there some other property I can use to qualify the ID? Since this is a general purpose

Re: Control ID problem

2011-03-25 Thread Scott Rossi
Yes, setting the defaultStack to the name of the substack *should* work. You may want to check that you're not inadvertently setting focus back to the main stack somewhere in your scripts. Unless you're constantly changing stack names for some reason, IMO, you're better off using the long ID of

Re: Control ID problem

2011-03-25 Thread Peter Haworth
Thanks. Yes, the long ID would be best - I wrote this code not long after starting to use LC and before I understood all the ramifications of IDs, layers, etc! I guess I'll go back and change all the calls to the function to pass the long ID instead of the short one. I'm still somewhat

App Store Submission Certificate Invalid

2011-03-25 Thread RevList
I have signed my app (Colour Palette) with the certificate that I got through the KeyChain certificate process using codesign and productBuild codesign -f -s 3rd Party Mac Developer Application: Stewart Lynch /Users/slynch/Documents/Current\ Projects/Colour\ Palette/Colour\

Re: Tab panels

2011-03-25 Thread dunbarx
I have tried this in the tabmenu script: on mouseUp if the clickHistory of me = the menuhistory of me then send menupick the clickhistory of me to me set the clickHistory of me to the menuhistory of me end mouseUp It checks to see if the same tab has been clicked by another route,

Re: App Store Submission Certificate Invalid

2011-03-25 Thread Colin Holgate
I don't know what your problem will turn out to be, but this product seemed an interesting one, maybe worth a $3 investment: http://itunes.apple.com/us/app/product-builder/id421614213?mt=12 ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Control ID problem - even stranger

2011-03-25 Thread Peter Haworth
While looking into this further, I have discovered what I think is another anomaly. I have two substacks of the same main stack with one card in each one. Each card has one group on it - the two groups have the same short ID. The dictionary says that IDs are guaranteed to be unique within

Re: Control ID problem - even stranger

2011-03-25 Thread Scott Rossi
Peter: The expression same stack is key here. Substacks of a main stack are not the same stack. This is easy to test: create a new stack, add some substacks to it. If you drag a button into each of the substacks, the ID of each button should be 1004, and control ID numbering will start from

Re: Control ID problem - even stranger

2011-03-25 Thread Jim Ault
A stack file and a stack are not the same thing. There could be duplicate short id's, but not duplicate long id's. You need to be careful about making copies of stacks using 'Save As' and then defining them as substacks of the same main stack. This is a legal process, but LC does not scan

Re: Control ID problem - even stranger

2011-03-25 Thread Peter Haworth
Thanks for the explanation Scott. I don't think this had anything to do with the original problem I had but I have to admit I was under the impression that control IDs were unique within a stack file, not within each (sub)stack within a stack file. Pete Haworth On Mar 25, 2011, at 4:30 PM,

Re: Tab panels

2011-03-25 Thread James Hurley
Thanks everyone. You always come through. You have taught me a new property: MenuHistory I have found the following works for me. In place of the MenuPick handler I used only a mouseUP handler. (The TabMenu object handles all the highlighting chores.) on mouseUp put the menuhistory of me

Re: App Store Submission Certificate Invalid

2011-03-25 Thread RevList
How to use LiveCode use-livecode@lists.runrev.com on March 25, 2011 at 2:57 PM -0700 wrote: I don't know what your problem will turn out to be, but this product seemed an interesting one, maybe worth a $3 investment: http://itunes.apple.com/us/app/product-builder/id421614213?mt=12 Thanks. That

Re: revWeb revlets broken in Firefox 4.0?

2011-03-25 Thread Mark Wieder
Rich- Friday, March 25, 2011, 10:20:09 AM, you wrote: Are revWeb revlets broken in Firefox 4.0? Just upgraded to Firefox 4.0 on Mac 10.5.8. Get error message when going to a revlet: There was an error loading the revlet - failed to stream revlet. Works OK with Safari 5.0.4 and worked OK