set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
Using this kind of processing in a loop is extremely fast on 5.5: set the textstyle["box"] of char x to y of fld 1 to true On 7.0.1 it goes at a snail's pace. I haven't bothered to do any benchmarks yet, just wondered if anyone else has noticed this (or is it another of these things peculiar t

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
5.5 can mark up a fld containing almost 4000 lines, with a box round (at least) one word of each line, in 7 seconds. 7.0.1 takes 136 seconds to process the same field, and switches after a short while from using a LC-style "busy" cursor, to using the windows system busy cursor. Normally when I se

Re: Code 2014 - Vote for LiveCode

2014-12-31 Thread Peter W A Wood
Richmond Well tweeted, well almost well tweeted. You vote hasn’t been counted yet although it does appear in the list of “votes” when you click on the LiveCode circle. You tweeted Livecode. Had you tweeted LiveCode or livecode you vote would have been counted. I’ve made a request for Livecode

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Malte Brill
Hi Bernard, I am afraid 7.x is quite a bit slower in many places... see: http://forums.livecode.com/phpBB2/viewtopic.php?f=67&t=22072 Most of this has to do with the rewrite of the engine I guess. Add the overhead for unicode... Boils down to I can not make the switch to 7.x just yet, before t

Re:set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread James Hale
See http://quality.runrev.com/show_bug.cgi?id=11817 Some benchmarks and improvements (should have seen the slowdown before, well you can see.) Hope it gets better. James ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: Code 2014 - Vote for LiveCode

2014-12-31 Thread Richmond
On 31/12/14 12:37, Peter W A Wood wrote: Richmond Well tweeted, well almost well tweeted. You vote hasn’t been counted yet although it does appear in the list of “votes” when you click on the LiveCode circle. You tweeted Livecode. Had you tweeted LiveCode or livecode you vote would have been

Delete this card command not working in LIvecode 5.5.3

2014-12-31 Thread stgoldb...@aol.com
If I want to delete a card using the message box in LC 5.5.3 (on Mac 10.9.5) it works if I type delete this card in the message box. However, I get an error message if I try the same thing from a button on the card or from a script in the stack. This didn't used to be the case. Any sugge

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bob Sneidar
Do you lock the screen before doing something like this? Bob S > On Dec 31, 2014, at 02:28 , Bernard Devlin wrote: > > 5.5 can mark up a fld containing almost 4000 lines, with a box round (at > least) one word of each line, in 7 seconds. > > 7.0.1 takes 136 seconds to process the same field,

Re: Delete this card command not working in LIvecode 5.5.3

2014-12-31 Thread Bob Sneidar
That is because you are deleting the parent object of the object a running script is on. Try sending in time. Bob S > On Dec 31, 2014, at 07:36 , stgoldb...@aol.com wrote: > > If I want to delete a card using the message box in LC 5.5.3 (on Mac 10.9.5) > it works if I type > > > delete thi

Re: Delete this card command not working in LIvecode 5.5.3

2014-12-31 Thread Eric Corbett
You can not delete a control whose script is still running. Try in the button: on mouseUp local tID put the long I'd of this card into tID send "deleteMe tID" to me in 1 milliseconds end mouseUp Then put the deleteMe handler in the stack. - e > On Dec 31, 2014, at 07:36, "stgo

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
Hi Malte Does the server version of LC have the ability to set styledText? I've never used it, so I'm not aware of its limitations. From my reading of that forum post, it seems the preferred method is to create a sample script/results which run on LC server. Reading the contributions to that thr

Re: Code 2014 - Vote for LiveCode

2014-12-31 Thread Devin Asay
You can delete your tweet then retweet with the proper case. Whew! Too much rhyming in that sentence. DNA On Dec 31, 2014, at 6:14 AM, Richmond wrote: > On 31/12/14 12:37, Peter W A Wood wrote: >> Richmond >> >> Well tweeted, well almost well tweeted. You vote hasn’t been counted yet >> alth

Re: Code 2014 - Vote for LiveCode

2014-12-31 Thread Richmond
On 31/12/14 18:00, Devin Asay wrote: You can delete your tweet then retweet with the proper case. Whew! Too much rhyming in that sentence. DNA Tom Bodine also tweeted "Livecode" . . . ! Richmond. ___ use-livecode mailing list use-livecode@lists

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
This is with the screen locked. Regards, Bernard On Wed, Dec 31, 2014 at 3:36 PM, Bob Sneidar wrote: > Do you lock the screen before doing something like this? > > Bob S > > > On Dec 31, 2014, at 02:28 , Bernard Devlin wrote: > > > > 5.5 can mark up a fld containing almost 4000 lines, with a b

Late to the party

2014-12-31 Thread Richmond
No, not the New Year party! My younger son flew to Doha about 3 years ago to some daft sports conference financed by the sheikhs out there as part of their attempts to buy respectability. Anyway, at one point one of the al-Thani "lot" gave my son an iPad 1 (my younger son is a bit "like that

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Dr. Hawkins
On Tue, Dec 30, 2014 at 11:22 AM, Peter Haworth wrote: > Your code refers to chstk in one place and chcStk in another. > chcStk is a custom property telling whether to use the default pallet or another field; chStck holds the result of that. Overall, it appears I'm being bitten by *Bug 10862*

revFontLoad

2014-12-31 Thread Dan Friedman
Greetings! I am trying to load a font with the revFontLoad command, but my standalone errors "can't find handler". Yes, "Font Support" is selected in the Standalone Builder. It works fine in the IDE. I looked in the standalone app's contents and the revFont.bundle file is there. Any thought

Re: revFontLoad

2014-12-31 Thread Roger Eller
Search the dictionary for "font". You'll see a newer syntax with more platforms supported. "Start using font file" and "Stop using font file". This has worked better than revLoadFont for me. Also, include your font in the copy files pane of the standalone builder. ~Roger On Dec 31, 2014 12:19 P

Re: Late to the party

2014-12-31 Thread Michael Doub
Here is how I hack around with all mobile development. I take advantage of Dropbox and it works great. You need to build a single application using the appropriate development tools (apple or android), Copy the app to the device using the USB one time. Create a directory in dropbox for all o

Membership disabled

2014-12-31 Thread Peter Haworth
About once every couple of weeks, I get a message from the list that my membership has been disabled because of excessive bounces. Is anyone else getting these? Enabling membership is simple as there's a link in the email to do it. I believe this is caused by something that was discussed a coupl

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
I switched to getting the htmlText and putting tags round the text I want. Even on LC 7.0 with 4000 lines each containing the word to style, this only takes less than 1 second. Bernard On Wed, Dec 31, 2014 at 10:00 AM, Bernard Devlin wrote: > Using this kind of processing in a loop is extremel

Re: revFontLoad

2014-12-31 Thread Dan Friedman
Roger, THANKS for the tip! Works without error! I'l try it on Windoz next... Thanks again! -Dan > Search the dictionary for "font". You'll see a newer syntax with more > platforms supported. "Start using font file" and "Stop using font file". > This has worked better than revLoadFont for

Re: Late to the party

2014-12-31 Thread Roger Eller
I don't know of a way to install an app to an iPad without giving Apple $99 for a year of that privilege. I have no idea if the jailbreak changes that. Sent from my Android tablet On Dec 31, 2014 11:16 AM, "Richmond" wrote: > No, not the New Year party! > > My younger son flew to Doha about 3 y

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Dr. Hawkins
On Wed, Dec 31, 2014 at 8:36 AM, Dr. Hawkins wrote: > > The *second* "if chStk" test triggers; somehow, chStk changes from a > value to empty about where the palette opens, even with messages > locked--unless I'm in the debugger, in which case the value remains the > same. And now, saving in l

Re: set the textstyle is dramatically slower on 7.0.1 than 5.5

2014-12-31 Thread Bernard Devlin
Using the same technique with 5.5 takes 175ms rather than 960ms. So, 5.5 is still many times faster than 7.0.1 when it comes to styling text in fields (5.5 is around 6x faster than 7.0.1 even using this technique). Using a loop through the field where each word/chunk is styled as it is found (usin

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread J. Landman Gay
On 12/31/2014 10:36 AM, Dr. Hawkins wrote: somehow, chStk changes from a value to empty about where the palette opens, even with messages locked- Again, any time you change stacks the focus will change. When that happens the selection usually gets wiped. Locking messages won't help in this si

Re: Membership disabled

2014-12-31 Thread Bob Sneidar
One possibility is that someone (meaning software someone wrote) is using your email address to spam others and you have been blacklisted. You will need to change your email you use to converse with the list if that is so. You can query blacklists to find if this is so. Google email blacklists a

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Dr. Hawkins
On Wed, Dec 31, 2014 at 9:51 AM, J. Landman Gay wrote: > Again, any time you change stacks the focus will change. When that happens > the selection usually gets wiped. Locking messages won't help in this > situation; that just means the engine won't send event reports to your > scripts but it doe

Re: Membership disabled

2014-12-31 Thread Yves COPPE
Hi, I get the same problem « too many bounces ». I don’t know what happens…. I re-enter my membership with the link and it goes further well until I received a new mail with « too many bounces » and so on But I’m speaking French and don’t understand what they mean with « too many bounces » …? T

Re: Late to the party

2014-12-31 Thread Richmond
On 31/12/14 19:32, Michael Doub wrote: Here is how I hack around with all mobile development. I take advantage of Dropbox and it works great. You need to build a single application using the appropriate development tools (apple or android), Copy the app to the device using the USB one time.

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Scott Rossi
I haven't totally followed this discussion but it sounds like you might be relying solely on the debugger to display the values of script variables. You might try using a more direct approach by using a command or getProp handler to dump variable values into the message box or a field so you ca

Re: Late to the party

2014-12-31 Thread Richmond
On 31/12/14 19:32, Michael Doub wrote: Here is how I hack around with all mobile development. I take advantage of Dropbox and it works great. You need to build a single application using the appropriate development tools (apple or android), Copy the app to the device using the USB one time.

Re: Membership disabled

2014-12-31 Thread dunbarx
Yes. For a long time. Jacque thought it might have to do with AOL, but you are not on that service. Craig -Original Message- From: Peter Haworth To: How to use LiveCode Sent: Wed, Dec 31, 2014 12:36 pm Subject: Membership disabled About once every couple of weeks, I get a messag

Re: Membership disabled

2014-12-31 Thread Richard Gaskin
Yves COPPE wrote: > I get the same problem « too many bounces ». > I don’t know what happens…. I re-enter my membership with the link > and it goes further well until I received a new mail with « too many > bounces » and so on > But I’m speaking French and don’t understand what they mean with « >

Re: Membership disabled

2014-12-31 Thread Peter Haworth
Hi Yves, Are you using gMail? Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Wed, Dec 31, 2014 at 10:14 AM, Yves COPPE wrote: > Hi, > > I get the same problem « too many bou

Re: Membership disabled

2014-12-31 Thread Dave Wood
> About once every couple of weeks, I get a message from the list that my > membership has been disabled because of excessive bounces. Is anyone else > getting these? Just adding to Richard's response… I also had this problem. It went on for months until last February. After first contacting t

Re: Late to the party

2014-12-31 Thread J. Landman Gay
On 12/31/2014 1:23 PM, Richmond wrote: What I need to know is where in those 2 volumes I should place my Livecode standalone so that it shows up on the iPad desktop. It's all hidden and iOS doesn't offer a file system. The only way to get an app onto your device normally is to install it the

Re: Membership disabled

2014-12-31 Thread J. Landman Gay
On 12/31/2014 1:25 PM, dunb...@aol.com wrote: Jacque thought it might have to do with AOL, but you are not on that service. I still think it has to do with AOL, but the recipient doesn't need to be on that service (my mailserver isn't.) It's that the sender is writing from AOL and the recipie

Re: Membership disabled

2014-12-31 Thread Yves COPPE
> > Hi Yves, > Are you using gMail? > > Pete > lcSQL Software > Home of lcStackBrowser and > SQLiteAdmin Hi, Not at all, I use a IAF in Belgium : skynet.be I have a gma

Re: Membership disabled

2014-12-31 Thread Peter Haworth
So here's a perfect example. I never got Craig's email which is quoted in Jacque's reply. This only happens with emails sent from either an AOL address or a Yahoo address to the How To list so it's definitely a Yahoo/AOL related problem. I don't pretend to know the ins and outs of this but I'm t

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Dr. Hawkins
On Wed, Dec 31, 2014 at 10:30 AM, Scott Rossi wrote: > I haven't totally followed this discussion but it sounds like you might be > relying solely on the debugger to display the values of script variables. > You might try using a more direct approach by using a command or getProp > handler to dum

Re: script scope variables inexplicably becoming unset

2014-12-31 Thread Scott Rossi
Another useful process is to create a simple set of test stacks and copy over your relevant handlers. If you can recreate the problem there, you may have found an odd bug, but if not, the problem likely lies elsewhere in the code of your original stacks. Regards, Scott Rossi Creative Directo

Delete this card command not working in LIvecode 5.5.3

2014-12-31 Thread stgoldb...@aol.com
I thank Bob Sneider and Eric Corbett for their suggestions below regarding "delete this card" not working. However, the problem appears more complex. For many years on January 1, I have created a new invoice stack for the new year by deleting the some 2000 cards from the preceding year's stack

Good is the new Best

2014-12-31 Thread Marty Knapp
I may be losing my mind but I just discovered something weird. I'm mostly using LC 6.6.5 these days and I have an app that I've struggled to get good looking icons (many of them are fairly small). I was making them in Photoshop at 2x size and after importing to LC, setting the resizeQuality to

Re: Late to the party

2014-12-31 Thread Richmond
On 31/12/14 22:37, J. Landman Gay wrote: On 12/31/2014 1:23 PM, Richmond wrote: What I need to know is where in those 2 volumes I should place my Livecode standalone so that it shows up on the iPad desktop. It's all hidden and iOS doesn't offer a file system. The only way to get an app onto

Re: Code 2014 - Vote for LiveCode

2014-12-31 Thread Peter W A Wood
Richmond I am happy to report that I was wrong and the “voting machine” was case insensitive. Both your and Tom’s vote were counted. Regards Peter > On 1 Jan 2015, at 00:01, Richmond wrote: > > On 31/12/14 18:00, Devin Asay wrote: >> You can delete your tweet then retweet with the proper ca

Re: Late to the party

2014-12-31 Thread mikedoub
The real issue is that those of us that have been working with standard devices don't know how to help you.   I sure folks will share any info we have, but you are charting new territory..at least for those on this list.   Mike   Original Message   From: Richmond Sent: Wednesday, December 31, 20

Re: Membership disabled

2014-12-31 Thread Peter W A Wood
All of Craig’s messages to this list get directed to my Gmail spam folder and has been for a long time. A handful of other list messages also end up there. There were a couple from another AOL user today. Regards Peter http://LiveCode1001/blogspot.com > On 1

Re: Late to the party

2014-12-31 Thread J. Landman Gay
On 12/31/2014 5:01 PM, Richmond wrote: "It's all hidden and iOS doesn't offer a file system." Really? Try hooking an iPad up to a Linux box. Extremely informative. Of course. All computers have file systems. But still: iOS doesn't offer one. When you look at the drive on a Linux machine, you a

Re: Good is the new Best

2014-12-31 Thread Roger Eller
I do remember the pixelated text bug in the 5.x versions. I really hated that one. Oh, and happy new year LiveCoders!!! Sent from my Android tablet On Dec 31, 2014 5:56 PM, "Marty Knapp" wrote: > I may be losing my mind but I just discovered something weird. I'm mostly > using LC 6.6.5 these d