Re: Indirect reference

2011-11-17 Thread Howard Bornstein
Thank you everyone. These all do what I was after. I think I used to do it using the field property as Geoff suggested. Funny how I just blanked out about it this time. I'm going to write myself a note about it in case I forget again. Now if I can just remember where I put that note... -Howard __

Re: Indirect reference

2011-11-17 Thread Pete
If your variable did not contain the word "field", you could do: put "10:00 AM" into field tfield or leave the variable as it is and: put "10:00 AM" into field (word 2 to -1 of tfield) Pete Molly's Revenge On Thu, Nov 17, 2011 at 9:39 PM, Howard Bornstein wro

Re: Indirect reference

2011-11-17 Thread Geoff Canyon Rev
You can't use put "something" into myVariable but as Andrew says you can make it work with a "do" statement. As long as the variable contains a valid object reference, you can set properties on the variable, so this will work also: *put* "field" && quote & "test" & quote into x *set*

Re: Indirect reference

2011-11-17 Thread Andrew Kluthe
There are other ways to accomplish what you need, but here is what you are looking for. do "put" && theTime && "into" && tField this would execute --> put "what was in theTime" into "what was in tField" http://docs.runrev.com/Command/do -- View this message in context: http://runtime-revolutio

Indirect reference

2011-11-17 Thread Howard Bornstein
I know I've done this before but I can't seem to remember how at this point. I want to make an indirect reference through a variable. For example, I have a variable, tField, that contains this string: field "Time" of card 1 I want to put something into field "Time" via this variable. So I want to

Re: Location of dialog box

2011-11-17 Thread Pete
I might be wrong, but I think he's talking about the popup contextual menu dialog box. As I recall, the top right of them is placed at the mouse is click, maybe he wants to have it popup somewhere else? Jim? Pete Molly's Revenge On Thu, Nov 17, 2011 at 5:11 PM,

Re: Location of dialog box

2011-11-17 Thread Ken Ray
On Nov 17, 2011, at 10:05 AM, James Hurley wrote: > Can one set the location of the popup dialog box? In my application, it > obscures the object it is addressing. Jim, the only way to set the locaton of a modal dialog box (that I'm aware of) is changing the location in the preOpenStack of th

Re: SoCal LUG meeting: Dec 1, Pasadena

2011-11-17 Thread Todd Geist
I'll be there :-) Todd On Thu, Nov 17, 2011 at 12:44 PM, stephen barncard < stephenrevoluti...@barncard.com> wrote: > That's a great Idea, I know there must be more livecoders in the SF bay > area besides myself, David Beck, Mark Weider, Rossi and JHJ. > > On 17 November 2011 09:00, Richard Ga

Re: Installer - "Could not launch installer slave"

2011-11-17 Thread Pierre Sahores
Should have to do with the network config (NAT, etc...) of your Parallels VM. Try the different available options. Le 17 nov. 2011 à 23:32, Mike Kerner a écrit : > I'm trying to install LC 5.0.1 dp1 in win 7 which is running in a Parallels > VM. > > I launch the installer, click on through. I

Re: Installer - "Could not launch installer slave"

2011-11-17 Thread Mike Kerner
OK, never mind, I got it. The installer would not work for "All Users". Once I switched to "Only me" it went fine. -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a li

Installer - "Could not launch installer slave"

2011-11-17 Thread Mike Kerner
I'm trying to install LC 5.0.1 dp1 in win 7 which is running in a Parallels VM. I launch the installer, click on through. I get an error "Could not launch installer slave". I get this error whether I right-click on the installer and tell it to run as Administrator (which I am anyway) or not. Su

RE: SoCal LUG meeting: Dec 1, Pasadena

2011-11-17 Thread Mark Powell
I am back in the Bay Area (East/South). Sadly, doubtful that I could get down to Pasadena, but would be interested in knowing if there are any LC get-togethers up here. -Original Message- From: stephen barncard Sent: Thursday, November 17, 2011 12:45 PM Subject: Re: SoCal LUG meeting: D

Re: SoCal LUG meeting: Dec 1, Pasadena

2011-11-17 Thread Pete
I'm in Santa Cruz and would be interested in attending such a meeting. Pete Molly's Revenge On Thu, Nov 17, 2011 at 12:44 PM, stephen barncard < stephenrevoluti...@barncard.com> wrote: > That's a great Idea, I know there must be more livecoders in the SF bay > ar

Re: SoCal LUG meeting: Dec 1, Pasadena

2011-11-17 Thread stephen barncard
That's a great Idea, I know there must be more livecoders in the SF bay area besides myself, David Beck, Mark Weider, Rossi and JHJ. On 17 November 2011 09:00, Richard Gaskin wrote: > The SoCal LiveCode User Group will be meeting in Pasadena on Thursday, Dec > 1 - details in the SC LUG forum tha

Re: Problem with resizeControl

2011-11-17 Thread J. Landman Gay
On 11/17/11 1:23 PM, René Micout wrote: I think it is not possible... I think I do place other object in the group, place object at the edge of the group and resize the button in relation with this new object (the left of the button = the right of the new object)... Something like that... It is

Re: Problem with resizeControl

2011-11-17 Thread René Micout
I think it is not possible... I think I do place other object in the group, place object at the edge of the group and resize the button in relation with this new object (the left of the button = the right of the new object)... Something like that... It is to late this evening (yes it is night in

Re: Problem with resizeControl

2011-11-17 Thread René Micout
Sorry Scott, not better... :-( Le 17 nov. 2011 à 19:33, Scott Rossi a écrit : > You might try setting the margins of the group to 0. > > Regards, > > Scott Rossi > Creative Director > Tactile Media, UX Design > > > > Recently, René Micout wrote: > >> Hello, >> I have a problem (simple but..

Re: Location of dialog box

2011-11-17 Thread Malte Brill
Hi Jim, yes, you can, but it is sort of a hack. You will need to handle the suspendStack message at stack script level: on suspendStack if "answer dialog" is among the lines of the openStacks then set the topLeft of stack "answer dialog" to 0,0 end if end suspendStack Please keep in

Re: Problem with resizeControl

2011-11-17 Thread Scott Rossi
You might try setting the margins of the group to 0. Regards, Scott Rossi Creative Director Tactile Media, UX Design Recently, René Micout wrote: > Hello, > I have a problem (simple but...) : > 2 buttons (button 1 and button 2), with these 2 buttons I made a group. > The script of the group i

Re: So Who Has Tried the Kindle Fire Yet (with LiveCode building)?

2011-11-17 Thread Colin Holgate
On Nov 17, 2011, at 11:25 AM, Lynn Fredricks wrote: > Its been out for all of two seconds - so who's built their first app yet? > :-) I have built apps straight onto it from Flash and LiveCode, and directly download apk files from the web. > > Its supposed to be running a variant of Androi

Problem with resizeControl

2011-11-17 Thread René Micout
Hello, I have a problem (simple but...) : 2 buttons (button 1 and button 2), with these 2 buttons I made a group. The script of the group is : on resizeControl set the width of btn "Button 1" to (the width of me)-30 end resizeControl When I resize the group it is OK but when I release the mouse

Re: Wasting space on the forum.

2011-11-17 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, Richard, May we please consider this topic thoroughly examined, and move on to LiveCode discussion? Please accept my apologies for having started this thread. I didn't realize that it would go so far. My Fault !! I hoped to save space on the forum and not waste i

SoCal LUG meeting: Dec 1, Pasadena

2011-11-17 Thread Richard Gaskin
The SoCal LiveCode User Group will be meeting in Pasadena on Thursday, Dec 1 - details in the SC LUG forum that Heather graciously set up for us in the general LiveCode forums: Attendance is open to anyone who wants to show up. The only req

So Who Has Tried the Kindle Fire Yet (with LiveCode building)?

2011-11-17 Thread Lynn Fredricks
Its been out for all of two seconds - so who's built their first app yet? :-) Its supposed to be running a variant of Android 2.3. I had a chance to play with a demo unit yesterday, however the web browser was locked up in a stupid auto demo so I couldn't evaluate how well that worked. Some And

Location of dialog box

2011-11-17 Thread James Hurley
Can one set the location of the popup dialog box? In my application, it obscures the object it is addressing. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pre

Re: Wasting space on the forum.

2011-11-17 Thread Richard Gaskin
May be please consider this topic thoroughly examined, and move on to LiveCode discussion? -- Richard Gaskin Fourth World LiveCode training and consulting: http://www.fourthworld.com Webzine for LiveCode developers: http://www.LiveCodeJournal.com LiveCode Journal blog: http://LiveCodejourna

LiveCode.tv Event #44

2011-11-17 Thread Mark Schonewille
Dear LiveCoders, We have one presentation this week, because no one, besides Björnke, has contacted us with a proposal. To make the next event possible, we need presenters. Contact us now or the event will suffer a silent demise. This weekend's event is scheduled for 19 November 2011 at 19:00h

Re: Re : Wasting space on the forum.

2011-11-17 Thread Richmond
On 11/17/2011 04:23 AM, Pete wrote: Exactly, well said Roger! All this is a matter of personal preference and there is so much knowledge in so many areas of expertise on this list that If I could just shove my oar in here . . . I will gladly search through as much quoted text as someone wan

Re: OT: Live Support Chat script/solution?

2011-11-17 Thread Matthias Rebbe
Hi, please excuse and ignore the last 2 messages from me. I´ve sent them with the wrong sender address and because of that they were held for approval. Unfortunatley i forgot to cancel them. Sorry. Regards, Matthias ___ use-livecode mailing list use-

Re: OT: Live Support Chat script/solution?

2011-11-17 Thread Matthias Rebbe
HI Stephan, yes, i should have mentioned that. I am looking for a text chat, like Adobe is using for support. Regards, Matthias Am 14.11.2011 um 02:12 schrieb stephen barncard: > what kind of chat? text, audio or video? > > On 13 November 2011 17:03, Matthias Rebbe > wrote: > >> Hi, >> >>

Re: OT: Live Support Chat script/solution?

2011-11-17 Thread Matthias Rebbe
Am 14.11.2011 um 14:35 schrieb Björnke von Gierke: > There's a gazillion of website chat thingies in free php or cgi library > repositories. How reliable, bug ridden, spyware installing or useful the > different ones are no idea. > > There's a similar plethora of libraries for flash-based