Re: Message Box spurious messages

2013-05-15 Thread Jacques Hausser
Same here. It's obvious that the necessary, exciting, and ultimately beneficial changes announced by Heather were not fully tested before the release of the new website… Probably to many hares to chase with the beginning of conference. Also if you try the button latest RunRev news (the one with

Re: Message Box spurious messages

2013-05-15 Thread Pierre Sahores
Same here (LC 5.5.4, Mac OS X 10.7.5). Le 15 mai 2013 à 01:18, Cal Horner a écrit : This Message Box message started appearing yesterday for no apparent reason: Message execution error: Error description: Handler: can't find handler Hint: X The following server error was encountered:

Re: Message Box spurious messages

2013-05-15 Thread Shawn Blc
Same here on 6.0.1 Build 1513 Commercial. On Wed, May 15, 2013 at 2:23 AM, Pierre Sahores s...@sahores-conseil.comwrote: Same here (LC 5.5.4, Mac OS X 10.7.5). Le 15 mai 2013 à 01:18, Cal Horner a écrit : This Message Box message started appearing yesterday for no apparent reason:

Re: Message Box spurious messages

2013-05-15 Thread René Micout
The same thing for me 6.0.0 build 1511 Community Mac OS X 10.8.3 when I open dictionary Le 15 mai 2013 à 09:40, Shawn Blc shawnlivec...@gmail.com a écrit : Same here on 6.0.1 Build 1513 Commercial. ___ use-livecode mailing list

Re: Import Snapshot in iOS

2013-05-15 Thread Björnke von Gierke
Is there a bug report for this? On 15.05.2013, at 06:47, Mark Wilcox wrote: Yes, the code I looked at definitely took a rect and not an object. I suspect the new method is not taking a snapshot of the screen at all but rendering the object into an image. Wouldn't using the new method and

Re: Message Box spurious messages

2013-05-15 Thread Björnke von Gierke
So opening the dictionary results in weird errors related to some network or online feature, but only when selecting certain entries, for example selecting # is no problem, but sele ting $_GET does. Most likely that's the comments which are stored on their site, and somehow don't work and/or

[OT] HyperMidi

2013-05-15 Thread René Micout
Hello, Thierry Douez (SunnYmidi's author) have some internet problems and asked me to ask this question on the forum : Is there anyone (HyperCard's fellows…) that has the documentation of HyperMidi http://www.earlevel.com/HyperMIDI/ Thank you Bon souvenir de Paris René

Re: [AN] iOS to Android issues...

2013-05-15 Thread J. Landman Gay
On 5/13/13 3:48 PM, Paul Maguire wrote: 1) The graphics are missing. All my graphics are linked to from an included folder I have next to the main app. I have included them in the Standalone Application Settings (I also have a couple of fonts). All this works nicely when creating the

Re: ClipboardData

2013-05-15 Thread Magicgate Software - Skip Kimpel
Craig, can you think of a good way to do/test that? SKIP On Tue, May 14, 2013 at 10:13 PM, dunb...@aol.com wrote: Hi. But that means the space char had to have been present in the original. Let's say your spaceless text was: Onetwothree... Can you find out what the 4th char in this

RE: Import Snapshot in iOS

2013-05-15 Thread John Dixon
Ender... There is not a problem with importing a snapshot from a rectangle !.. and it doesn't matter is acceleratedRendering is true or false.. or has even left the room ..:-) Date: Wed, 15 May 2013 03:13:59 +0300 From: endern...@gmail.com To: use-livecode@lists.runrev.com Subject: Re:

Re: ClipboardData

2013-05-15 Thread dunbarx
Hi. Run this, maybe in a button and with your text already in the clipBoardData: on mouseUp repeat with y = 1 to 20 --there surely must be a few spaces in that many chars put char y of the clipBoardData : charToNum(char y of the clipBoardData) into line y of fld resultField end

RE: Import Snapshot in iOS

2013-05-15 Thread Mark Wilcox
Is everyone using the same versions of LiveCode and iOS? The code in GitHub looks like it won't successfully capture a rectangle from an accelerated screen on any recent iOS version. John Dixon dixo...@hotmail.co.uk wrote: Ender... There is not a problem with importing a snapshot from a

Re: ClipboardData

2013-05-15 Thread Magicgate Software - Skip Kimpel
Okay... ran that and no sign of ASCII 32 there... just the next character. SKIP On Wed, May 15, 2013 at 8:58 AM, dunb...@aol.com wrote: Hi. Run this, maybe in a button and with your text already in the clipBoardData: on mouseUp repeat with y = 1 to 20 --there surely must be a few

Re: ClipboardData

2013-05-15 Thread Magicgate Software - Skip Kimpel
Just an FYI, there are other spaces scattered throughout the lines of text, however only some of them show up when pasting from clipboard in LC. SKIP On Wed, May 15, 2013 at 9:28 AM, Magicgate Software - Skip Kimpel s...@magicgate.com wrote: Okay... ran that and no sign of ASCII 32 there...

Re: Import Snapshot in iOS

2013-05-15 Thread Richard Gaskin
Mark Wilcox wrote: Yes, the code I looked at definitely took a rect and not an object. I suspect the new method is not taking a snapshot of the screen at all but rendering the object into an image. Wouldn't using the new method and asking for the current card work for most scenarios? I

Speed of Building Applications with LiveCode

2013-05-15 Thread Andrew Kluthe
This is an odd kind of post for the list, Sometimes with LiveCode I am able to put things together so quickly that it is hard for me to compare development times in livecode to development times in other environments. It makes me tend to expect things much more quickly after a while. So, all

Timing

2013-05-15 Thread Bert Shuler
I have a game board that is 20x20 with 400 images, each is 10px x 10px. As my character, a snake, navigates through, it grows. So on second 1, the snake is 1 cell in length, on second 2 it is 2 cells long, etc... I want to use an animated gif in each cell the snake occupies to show the snake

Re: Timing

2013-05-15 Thread Mike Bonner
You'll need to control the gif frames yourself to do this. In the dictionary look at framecount, currentframe, palindromeframes, and repeatcount Basically you'll want to set repeatcount to 0 for all of the gifs, then write your own loop to set the current frame of all the gifs in question so

Re: Timing

2013-05-15 Thread Mark Schonewille
Bert, GIF's are slow in LiveCode and take up a lot of CPU power and each image will use memory (much more than the size of the actual GIF file). Since you're going to have to set the frames by script anyway, it will be much more efficient to use image objects. Save each GIF frame as an

RE: Import Snapshot in iOS

2013-05-15 Thread J. Landman Gay
Yes, I asked about this and according to RR import from rect hasn't been implemented in iOS for some technical reasons. But you can import snapshot from rect of this card and it should work. Mark Wilcox m_p_wil...@yahoo.co.uk wrote: Is everyone using the same versions of LiveCode and

Re: ClipboardData

2013-05-15 Thread J. Landman Gay
Did you include the version of Word in your bug report? They'll need that. Magicgate Software - Skip Kimpel s...@magicgate.com wrote: Okay... ran that and no sign of ASCII 32 there... just the next character. SKIP On Wed, May 15, 2013 at 8:58 AM, dunb...@aol.com wrote: Hi. Run this,

Re: Speed of Building Applications with LiveCode

2013-05-15 Thread Björnke von Gierke
You should ask for more money, and hire a help :) Or accept clients less often, maybe? I'd say if you feel overwhelmed it's a good time for some holiday too. On 15.05.2013, at 15:07, Andrew Kluthe wrote: This is an odd kind of post for the list, Sometimes with LiveCode I am able to put

Re: Timing

2013-05-15 Thread J. Landman Gay
On 5/15/13 9:58 AM, Mark Schonewille wrote: Bert, GIF's are slow in LiveCode This may no longer be the case with the new image caching. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Deleted menus hanging around

2013-05-15 Thread Dr. Hawkins
I duplicated my stack to make a license control system, and removed most of the stacks. My menus were still there, so I set them to not behave like a background with a property inspector, and deleted that group from that card from the message box. Then I deleted the card. The custom menus are

Re: Timing

2013-05-15 Thread Richmond
On 05/15/2013 06:21 PM, J. Landman Gay wrote: On 5/15/13 9:58 AM, Mark Schonewille wrote: Bert, GIF's are slow in LiveCode This may no longer be the case with the new image caching. the new image caching as in 6.0.1 or 'hang on a bit' ? Richmond.

Re: Timing

2013-05-15 Thread Mark Schonewille
Hi Jacque, It may, or it may not. On my Mac, the CPU still has to work very hard if LiveCode displays GIF's or default buttons. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer

Re: Speed of Building Applications with LiveCode

2013-05-15 Thread Geoff Canyon
If you're building 8 fully featured database applications one after the next, how much are you having to do for app #2, 3, etc.? Editing a row is editing a row -- you should be growing better and better libraries with each iteration? On Wed, May 15, 2013 at 9:07 AM, Andrew Kluthe

Re: Timing

2013-05-15 Thread Scott Rossi
As Mark S said, it would be way more efficient to use buttons than images. Is there only one animation, or are there multiple animations? If the animations are the same, then setting the icon of the buttons to the the id of the animated GIF should keep all the animations in sync, because the

Re: Message Box spurious messages

2013-05-15 Thread Dar Scott
Is this because of the lack of the runrev server or because of a bad response from the server? Surely LiveCode should work without Internet access, even the IDE. Perhaps testing the IDE without Internet access is appropriate in community development. Dar On May 15, 2013, at 1:40 AM, Shawn

Re: Speed of Building Applications with LiveCode

2013-05-15 Thread Andrew Kluthe
Geoff - And this is the case, but it is also wildly different kinds of data and reporting to go with each. I have common database libraries and techniques shared between each, but the design and workflow of each app + reporting + backends depending on how complex each app is quickly builds up.

g Conference get-together

2013-05-15 Thread Mark Wieder
We're going drinking tonight at Hemma's. All invited. I'll be there about 21:30. Have fun. 75, Holyrood Rd, Edinburgh. -- Mark Wieder ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: g Conference get-together

2013-05-15 Thread Ian Wood
There's six of us there already, we've grabbed a big table upstairs. Ian On 15 May 2013, at 19:40, Mark Wieder mwie...@ahsoftware.net wrote: We're going drinking tonight at Hemma's. All invited. I'll be there about 21:30. Have fun. 75, Holyrood Rd, Edinburgh. -- Mark Wieder

Re: g Conference get-together

2013-05-15 Thread Ian Wood
By the way, the food servings are massive! Ian On 15 May 2013, at 20:02, Ian Wood revl...@azurevision.co.uk wrote: There's six of us there already, we've grabbed a big table upstairs. Ian On 15 May 2013, at 19:40, Mark Wieder mwie...@ahsoftware.net wrote: We're going drinking

Re: g Conference get-together

2013-05-15 Thread Pascal Lehner
Was great to meet some of this list at the conference. I can't make it tonight, but will see you all (I hope) at the cocktails tomorrow evening.. Best, Pascal 2013/5/15 Ian Wood revl...@azurevision.co.uk By the way, the food servings are massive! Ian On 15 May 2013, at 20:02, Ian Wood

Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread Richmond
The reasons for this are probably fairly basic. I have a wee stack that contains a fld FF containing the text dog, and a button Button containing this script: on mouseUp if fld FF contains dog then put cat into fld FF else put dog into fld FF end if end mouseUp

Re: Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread Randy Hengst
Hi Richmond, How about putting all this in the card script? And put nothing in the button. on kindOfAnimal if fld FF contains dog then put cat into fld FF else put dog into fld FF end if end kindOfAnimal on colorOfText if the textColor of fld FF is

Re: Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread Mark Schonewille
Richmond, You need to pass the mouseUp command on to the card. on mouseUp if fld FF contains dog then put cat into fld FF else put dog into fld FF end if pass mouseUp end mouseUp -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software

Re: Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread Richmond
On 05/15/2013 10:33 PM, Randy Hengst wrote: Because my wee stack was a story, and what I have is my Devawriter Pro program where each card has about 50 buttons; and, being a lazy slob, I have no great urge to go through the script of each and every button on some 15 cards putting in 1 line of

Re: Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread Richmond
On 05/15/2013 10:52 PM, Mark Schonewille wrote: Richmond, You need to pass the mouseUp command on to the card. on mouseUp if fld FF contains dog then put cat into fld FF else put dog into fld FF end if pass mouseUp end mouseUp Now that is a piece of extremely

Re: Rethinking rsa encryption of license keys

2013-05-15 Thread Dar Scott
On May 14, 2013, at 6:43 PM, Dr. Hawkins wrote: And whyle I'm asking such things, is one of the ciphers on livecode's list symmetrical? Unless something exotic has been added recently, they all are, in the sense that you use the same key (and seed or IV, if used) for decrypting as you use

Re: [AN] iOS to Android issues...

2013-05-15 Thread Paul Maguire
On 15 May 2013, at 11:52, J. Landman Gay jac...@hyperactivesw.com wrote: On 5/13/13 3:48 PM, Paul Maguire wrote: 1)The graphics are missing. All my graphics are linked to from an included folder I have next to the main app. I have included them in the Standalone Application Settings (I

[Beginner] Hints/Tips on how to Update Livecode Application Remote and Automatic

2013-05-15 Thread Graham Pearson
As I create an application and before I send it out to those that have used my Adobe Air application which is being converted to Livecode. I am looking for resources on how to Update the Application Remotely and Automatic as possible. I am sifting through the 35,000 messages in my RunRev Folder

Re: Message Box spurious messages

2013-05-15 Thread Jacques Hausser
Right - the problem disappears without internet access… and instead of user contributed notes you have no internet connection found, but except for that the dictionary answers correctly without opening the message window. Well, it's perhaps not so bad to work on my stack without being distracted

Re: Heirarchy and where the mouseUp signal is detected.

2013-05-15 Thread dunbarx
Richmond. If you already have those buttons coded, you have locked yourself into the message hierarchy, and will have to change all the scripts. The hierarchy is fundamental, and a powerful aspect of the language. As you know. But I don't think changing the scripts is all that onerous.

cPanel

2013-05-15 Thread JB
What happened to the cPanel? It use to have tools and info on the left side when you logged knto the cPanel and now they are gone a,ong with other database tools and usage graphs. -=JB=- ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Message Box spurious messages

2013-05-15 Thread Peter Haworth
On Wed, May 15, 2013 at 2:28 PM, Jacques Hausser jacques.haus...@unil.chwrote: Warning: As I told before, it is still dangerous to click on button(s) Latest RunRev news (wi-fi logo) on the new website: Niagara of new tabs. I had to force quit Firefox to stop it, and even that was not so

Re: automated iOS rejection: Non-public API usage

2013-05-15 Thread Michael Hatch
I too have been effected by this issue. Having been in possession of the 5.5 iOS deployment option for only a little while, I'm quite bummed as it seems to have become obsolete. If someone knows or discovers a workaround in 5.5 It would save my project and make my month. On Mon, May 13, 2013 at

Android Push Notifications

2013-05-15 Thread Pascal Lehner
Hey everyone, I used to set up a test with Android push notifications following this HowTo and the stack that comes with it: http://lessons.runrev.com/m/4069/l/59312 I managed to set up all the dev stuff and actually generate my mobile's token. But when I try to send a notification using the

Re: Message Box spurious messages

2013-05-15 Thread Matthias Rebbe
I reported this to runrev already on tuesday evening. I got a message from heather on wednesday morning. They will fix it asap. Regards, Matthias Am 16.05.2013 um 00:04 schrieb Peter Haworth p...@lcsql.com: On Wed, May 15, 2013 at 2:28 PM, Jacques Hausser jacques.haus...@unil.chwrote:

Re: cPanel

2013-05-15 Thread JB
If I use Safari the cPanel appears like it should but when I use Firefox it does not log in without first showing a error pate and after logging in the cPanel does not show the tools and info. I used to have trouble using the cPanel with Safari so amd I better using Safari now that they upgraded?

Re: cPanel

2013-05-15 Thread JB
I pasted the web address of the Safari cPanel into Firefox and now it works like it should. -=JB=- On May 15, 2013, at 3:27 PM, JB wrote: If I use Safari the cPanel appears like it should but when I use Firefox it does not log in without first showing a error pate and after logging in the

Re: Deleted menus hanging around

2013-05-15 Thread J. Landman Gay
On 5/15/13 10:55 AM, Dr. Hawkins wrote: My menus were still there, so I set them to not behave like a background with a property inspector, and deleted that group from that card from the message box. Then I deleted the card. The custom menus are still appearing in my remaining cards,

Re: [Beginner] Hints/Tips on how to Update Livecode Application Remote and Automatic

2013-05-15 Thread J. Landman Gay
On 5/15/13 3:55 PM, Graham Pearson wrote: As I create an application and before I send it out to those that have used my Adobe Air application which is being converted to Livecode. I am looking for resources on how to Update the Application Remotely and Automatic as possible. I am sifting

Re: [AN] iOS to Android issues...

2013-05-15 Thread J. Landman Gay
On 5/15/13 3:39 PM, Paul Maguire wrote: In my build I am using 'new referenced control/image file' for all images. This workflow works fine for publishing to IOS but fails to load any images in Android. If I use a script to embed all linked media and compile for Android, all is well - images

RE: automated iOS rejection: Non-public API usage

2013-05-15 Thread John Dixon
Maybe someone looking at this list, who is attending the conference might ask some questions... as it seems that liveCode submissions for approval to the iTunes store are being rejected wholesale... I have a stack that I wish to submit, and don't want to suffer the same fate as you guys...

Re: automated iOS rejection: Non-public API usage

2013-05-15 Thread J. Landman Gay
On 5/15/13 5:08 PM, Michael Hatch wrote: I too have been effected by this issue. Having been in possession of the 5.5 iOS deployment option for only a little while, I'm quite bummed as it seems to have become obsolete. If someone knows or discovers a workaround in 5.5 It would save my project

Export Snapshot on Windows

2013-05-15 Thread Marty Knapp
I'm working on an app where I use the export snapshot on 3 different cards, placing these images into a temp stack, one after the other. Then I export a composite of the three images to file. The temp stack I place off-screen, then delete the stack when I'm done exporting. On Mac it works

Re: Rethinking rsa encryption of license keys

2013-05-15 Thread Dar Scott
My mistake. I was limiting my thinking to what is returned by cipherNames(). On May 15, 2013, at 2:37 PM, Dr. Hawkins wrote: On Wed, May 15, 2013 at 12:58 PM, Dar Scott d...@swcp.com wrote: Unless something exotic has been added recently, they all are, in the sense that you use the same

Re: g Conference get-together

2013-05-15 Thread Dar Scott
I think this is an attempt by Mark Wieder to torture us who were not able to go. On May 15, 2013, at 12:40 PM, Mark Wieder wrote: We're going drinking tonight at Hemma's. All invited. I'll be there about 21:30. Have fun. 75, Holyrood Rd, Edinburgh. -- Mark Wieder

Re: g Conference get-together

2013-05-15 Thread mwieder
There's six of us there already, we've grabbed a big table upstairs. Now put that back... you can't take it with you... -- Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: automated iOS rejection: Non-public API usage

2013-05-15 Thread Magicgate Software - Skip Kimpel
So that will also mean that it will force all of us running the commercial version of 5.5.4 to pay for the new commercial version, right? SKIP On Wed, May 15, 2013 at 7:18 PM, J. Landman Gay jac...@hyperactivesw.comwrote: On 5/15/13 5:08 PM, Michael Hatch wrote: I too have been effected by

Radio button icons

2013-05-15 Thread Peter Haworth
I'm using my own icons for a grouped set of radio buttons for the first time. I assumed that if I specified a hilitedicon for each of them that when I clicked on one to select it, it would show the hilitedicon then go back to to the standard icon when clicked again, but that doesn't happen - I

Re: Radio button icons

2013-05-15 Thread dunbarx
Peter. If you: set the hilite of btn yourButton to not the hilite of btn yourButton does the icon switch from one to the other? (autoHilite set to false) Does the hoverIcon or armedIcon work OK? Craig Newman -Original Message- From: Peter Haworth p...@lcsql.com To: How to use