Re: Entering text into vector graphic

2014-04-19 Thread Dave Kilroy
Sorry Hugh had missed your posting somehow - and yes it makes me smile too - it came from something clever you wrote but for the life of me I can't remember what it was! ...whatever it was you wrote was definitely clever and even witty even though my brain is too lumpy to remember, can you? If

Re: use-livecode Digest, Vol 127, Issue 33

2014-04-19 Thread bernd . gottwald
Bis zum 22.4.2014 bin ich nicht verfügbar. Ich werde meine Emails nicht lesen. In dringenden Fällen erreichen Sie mich über mein Mobiltelefon. I will be out of office until 22.4.2014. I won't read me emails. In urgent matter please call me on my mobile.

Re: LiveCode 7 codepoint question

2014-04-19 Thread Kenji Kojima
Dar, I do not have enough time seeing the script in this weekend. I will see well it next week. Thanks anyway, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Apr 18, 2014, at 5:47 PM, Dar Scott d...@swcp.com wrote: Here is my experiment to look at characters that are multiple

Vertical Menubar stack

2014-04-19 Thread Richmond
Here: http://andregarzia.on-rev.com/richmond/HA3y.zip Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Problem naming groups with integers

2014-04-19 Thread Stephen MacLean
Hi All, I have a list where I name the groups shown with integers (i.e. the id of the record in the db). When I inspect the group, it shows as: group 11957, id 459899 It seems that LC has a problem with finding those groups. When I try to set a property or object contained in the group, I get

Re: Problem naming groups with integers

2014-04-19 Thread Scott Rossi
You shouldn't use integers as names because LC thinks you're referring the number of the group. Use a letter prefix or similar, but don't start the name with a number. Regards, Scott Rossi Creative Director Tactile Media, UX Design On Apr 19, 2014, at 12:34 PM, Stephen MacLean

Re: Problem naming groups with integers

2014-04-19 Thread Stephen MacLean
Thanks Scott! So, even though I'm enclosing it in quotes, LC still thinks that? Strange behavior, since it's a string and not a number, but I can deal with it. Change already made:) Best, Steve On Apr 19, 2014, at 3:51 PM, Scott Rossi sc...@tactilemedia.com wrote: You shouldn't use

Re: Vertical Menubar stack

2014-04-19 Thread Richmond
Debugged version with option for a grayScale vertical revMenubar stack: http://andregarzia.on-rev.com/richmond/HA3y.zip Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Problem naming groups with integers

2014-04-19 Thread Scott Rossi
IMO, using numbers as names is just something to avoid in LC. As you've found, names that are only numbers will cause problems. Better/safer to adopt a different naming convention. Regards, Scott Rossi Creative Director Tactile Media, UX Design On Apr 19, 2014, at 12:57 PM, Stephen MacLean

Re: Problem naming groups with integers

2014-04-19 Thread Stephen MacLean
After this experience, I'm with you on that! Best, Steve On Apr 19, 2014, at 4:13 PM, Scott Rossi sc...@tactilemedia.com wrote: IMO, using numbers as names is just something to avoid in LC. As you've found, names that are only numbers will cause problems. Better/safer to adopt a

Re: Problem naming groups with integers

2014-04-19 Thread Dar Scott
Yeah, in LiveCode values that even look like numbers (that is, are numerals, strings) or should be numbers (the result of arithmetic) are all treated like numbers and like strings. (It is possible to tell the result of arithmetic from a string, but essentially, numbers and numerals are all the

Reference Material Discussion Application Architecture Strategies

2014-04-19 Thread Michael Doub
Is anyone aware of any reference material that discusses strategies for architecting your application with the livecode components and their implications with the standalone builder. As an example, I think that most people understand the basic concept of building a splash screen as the main

scrolling with the mouse

2014-04-19 Thread larry
Is there a command to respond to a user who rotates the scroll wheel on a standard windows mouse? TIA Larry ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Problem naming groups with integers

2014-04-19 Thread Richard Gaskin
Stephen MacLean wrote: So, even though I'm enclosing it in quotes, LC still thinks that? Strange behavior It seems strange if you're used to working with languages that support explicit data types. Generally speaking, LiveCode is a typeless language. Any value is considered a string,

Re: scrolling with the mouse

2014-04-19 Thread Mark Schonewille
Larry, This will respond to the scroll wheel: on rawkeyDown theKey if theKey is 65309 then put up else if theKey is 65308 then put down else pass rawKeyDown end if end rawkeyDown -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software

mouseButtonNumber

2014-04-19 Thread Richmond
when I have a script in a button like this: on mouseUp 1 put Left button in fld whichMouseBtn end mouseUp 1 I get a red hot-cross bun: why? Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Reference Material Discussion Application Architecture Strategies

2014-04-19 Thread Earthednet-wp
Michael, Thank you for asking this question. There is certainly a need for this in the community. I am also new to livecode and am converting a rather large app from Director. I am building a cross platform app, and perhaps a mobile version later. Currently I am putting most of my code in the

Re: Vertical Menubar stack

2014-04-19 Thread Alejandro Tejada
Hi Richmond, Many Thanks for sharing your stacks! :D Are you going to expand these palettes to allow developers include custom tools (using front or back script) and insert custom controls (like groups)? Al -- View this message in context:

Re: Problem naming groups with integers

2014-04-19 Thread Peter Haworth
I think the same advice applies to datagrid column names. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Sat, Apr 19, 2014 at 1:13 PM, Scott Rossi sc...@tactilemedia.com wrote:

Re: mouseButtonNumber

2014-04-19 Thread Peter Haworth
I think in should be into Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Sat, Apr 19, 2014 at 2:36 PM, Richmond richmondmathew...@gmail.comwrote: when I have a script in a button

Zurich meeting this summer

2014-04-19 Thread Björnke von Gierke
Hi everyone Me and Mark are starting to prepare a meetup in Zurich (Switzerland), late June or early July. If you’re interested in joining us, it’d be great to know when you’ll be able to participate. Please take two minutes to fill out this date tableau: http://doodle.com/yapygihh3itgz2qr

Re: mouseButtonNumber

2014-04-19 Thread Dar Scott
The 1 after mouseUP in my email confuses me. Maybe they represent something fishy there, too, such as a funny character On Apr 19, 2014, at 5:05 PM, Peter Haworth p...@lcsql.com wrote: I think in should be into Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser

Re: Problem naming groups with integers

2014-04-19 Thread Alejandro Tejada
Hi Dar Scott, Dar Scott wrote Yeah, in LiveCode values that even look like numbers (that is, are numerals, strings) or should be numbers (the result of arithmetic) are all treated like numbers and like strings. (It is possible to tell the result of arithmetic from a string, but

Re: Problem naming groups with integers

2014-04-19 Thread Dar Scott
Good idea! The stack and the website are old. I need to bring those up to date. The before and after handlers are good things to add to the message path animation. We might see the ball bouncing all over the place. I think Richard has a tutorial or similar on the message path, too, and he