Re: Best practice for creating a resizable HUD-style widget stack background?

2011-03-17 Thread Keith Clarke
...thanks Jim Scott - it's good to know that LiveCode has an integrated way of managing rounded rectangle window shapes. Bizarrely, it now looks like I may have to implement this HUD outside of a revlet, so I'll have to use the nine-images trick for Internet Explorer compatibility anyway! ;-)

Re: SQL Gotchas

2011-03-17 Thread AndyP
Hi Bob, This article may be of use. http://www.maxkpage.com/blog/free-sqlite-to-mysql-converter-super-easy/ http://www.maxkpage.com/blog/free-sqlite-to-mysql-converter-super-easy/ - Andy Piddock My software never has bugs. It just develops random features. PointandSee is a FREE simple

Re: Share this Stack

2011-03-17 Thread BNig
Hi Thomas, turn 'livecode elements appear in list of stacks' in preferences on and look in the property inspector under custom properties - revOnline Kind regards Bernd -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Share-this-Stack-tp3383677p3384407.html

Re: Share this Stack

2011-03-17 Thread Thomas McGrath III
That was it Bernd! Thanks again, -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Mar 17, 2011, at 8:53 AM, BNig wrote: Hi Thomas, turn 'livecode elements appear in list of stacks' in preferences on and look in the property inspector under custom properties -

Re: [TEASER] LiveCode 3 Facebook

2011-03-17 Thread Thomas McGrath III
Andre, Any word on the OAuth2 Library progress? I have a need. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Feb 21, 2011, at 10:15 AM, Andre Garzia wrote: Folks, Thanks for the kind words, I just wanted to stir things a little. This new OAuth2 library will

Re: [TEASER] LiveCode 3 Facebook

2011-03-17 Thread Mark Schonewille
Hi Tom, If you have a real need for this, I do have a commercial solution for Facebook, which I can customise to meet your requirements. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter:

Re: [ANN] RunRevPlanet Search

2011-03-17 Thread Bob Sneidar
No problemo. Bob On Mar 16, 2011, at 6:52 PM, Scott McDonald wrote: Thanks very much. - -- Scott McDonald Components, Controls, Tools and Resources for LiveCode www.runrevplanet.com -- View this message in context:

Re: SQL Gotchas

2011-03-17 Thread Bob Sneidar
It may be useful in the future, but not for my project. I am making an interface whereby you can take a column or entire table from an sqLite database and migrate it to a mySQL database. There is a form whereby the user can define what columns and tables they want to link and a feature is to be

Re: More regex madness

2011-03-17 Thread Bob Sneidar
Hey! Right you are! The error was caused by a beginning asterisk and there was no preceding character. Ya know, what these so called regex primers need more than anything else is some good examples. Almost none of them have examples. Once I saw your example, it was clear as glass. Maybe you

Re: Menu font sizes

2011-03-17 Thread edward cawley
On 3/15/11 1:03 PM, edward cawley wrote: Where do I find the menu group in the IDE? I have two substacks with text fields with the menu information. When I use the menu setup it sets up the menu which works fine in MacOS X but it is in small (6 or 8) in the Windows. I went into the

mySQL and defaults

2011-03-17 Thread Bob Sneidar
From the MySQL reference manual on TEXT types: In most respects, you can regard a BLOB column as a VARBINARY column that can be as large as you like. Similarly, you can regard a TEXT column as a VARCHAR column. BLOB and TEXT differ from VARBINARY and VARCHAR in the following ways:

RE: LC-using educators

2011-03-17 Thread Judy Perry
Many kind thanks to all of you who have responded. Today's one of my long teaching days and thus I won't be able to get back with you until either late tonight or tomorrow sometime. Thanks again! Judy ___ use-livecode mailing list

Re: mySQL and defaults

2011-03-17 Thread Warren Samples
On Thursday, March 17, 2011 12:18:19 PM Bob Sneidar wrote: From the MySQL reference manual on TEXT types: In most respects, you can regard a BLOB column as a VARBINARY column that can be as large as you like. Similarly, you can regard a TEXT column as a VARCHAR column. BLOB and

Re: [TEASER] LiveCode 3 Facebook

2011-03-17 Thread Andre Garzia
On Thu, Mar 17, 2011 at 11:27 AM, Thomas McGrath III mcgra...@mac.comwrote: Andre, Any word on the OAuth2 Library progress? I have a need. Tom, Haven't touched the library because I was on my honeymoon and my wife made me promise not take a computer there. Now that I am back, I plan to

Re: More regex madness

2011-03-17 Thread Mike Bonner
I have to look everything up every time I use regex stuff myself, so not sure I'd be the best choice for such a thing. In addition to which, my communication skeelz lack, however this http://www.regular-expressions.info/reference.html is a pretty good reference sans many examples, but there are 1

Re: secure comm between app and server

2011-03-17 Thread Phil Davis
Hi Paul, I'm changing my tune - I think encryption will be enough after all. Plus, I already know how to do it. Thanks for the idea. Phil On 3/16/11 10:29 PM, Phil Davis wrote: I dunno. I think I would still want to send the data through the SSL tunnel that HTTPS uses, or something like

signed 8 bit to sign and magnitude handler needed [PART ONE]

2011-03-17 Thread stephen barncard
This isn't that long a message but it appears I've pushed the limit. THis is part one. Hi gang, Continuing on the exporting aiff files from audioclips quest, I discovered that 'some' (about 10%) of the exported files data would not play correctly. They sounded distorted and loud at full scale.

Re: mySQL and defaults

2011-03-17 Thread Bob Sneidar
Oh thanks Warren! That will work famously! Unfortunately I just finished the code that strips all the DEFAULT parameters from all text column definitions LOL! I guess it's back to work undoing my last undo. Still, nice to know it can be done. Bob On Mar 17, 2011, at 10:51 AM, Warren Samples

Re: signed 8 bit to sign and magnitude handler needed [PART ONE]

2011-03-17 Thread stephen barncard
this is part two I found the below PHP code online that seemed appropriate and tried to convert it to Livecode but it didn't return useful values. (not sure if I needed [$num = bindec($bin);] - turns number into string?) /* -- original PHP version found online and not tested in PHP function

RE: signed 8 bit to sign and magnitude handler needed [PART ONE]

2011-03-17 Thread Paul D. DeRocco
From: stephen barncard Continuing on the exporting aiff files from audioclips quest, I discovered that 'some' (about 10%) of the exported files data would not play correctly. They sounded distorted and loud at full scale. Digging in further, I discovered that 8 bit AIFF files are not

Re: signed 8 bit to sign and magnitude handler needed [PART ONE]

2011-03-17 Thread stephen barncard
That's the magic formula. Looks like it could be fast too. Thanks, Paul... function bin8decU pBinary return (pBinary+ 0x80) bitAnd 0xFF end bin8decU function convertBlock pBlock repeat for each character tCH in pBlock put bin8decU(tCH) after tOut end repeat

Re: [TEASER] LiveCode 3 Facebook

2011-03-17 Thread Malte Brill
Andre You must really love her. Congrats man. I was on my honeymoon and my wife mademe promise not take a computer there ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: URLencode bug?

2011-03-17 Thread Mike Bonner
I ran into this earlier and tried to ask about it, but wasn't very clear. When you urlEncode the field it turns it into one huge unbroken line, and certain lengths of unbroken lines cause fields some problems it seems. The line length you get from the urlEncode is within the accepted limits

Re: URLencode bug?

2011-03-17 Thread Mike Bonner
Oh, and if you just keep adding data up to the max limit on like length, every breakover point the field resets and shows only the new stuff after the break. (or if wrap is off, it just never shows anything again) I forget where the limit is on wrapped lines, things might be behaving correctly,

Re: URLencode bug?

2011-03-17 Thread stephen barncard
I think URL Encode seems to ignore linefeeds and/or returns in its midst, so an occasional line break or cr should break up the line limit problems. On 17 March 2011 21:44, Mike Bonner bonnm...@gmail.com wrote: I ran into this earlier and tried to ask about it, but wasn't very clear. When