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
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 wrote:

> 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
> say something like put "10:00 AM" into tField, but rather than have it go
> into tField (in which case, tField would contain "10:00 AM") I want it to
> go *through* tField so that the value goes into field "Time".
>
> Any reminders on how to do this?
>
> --
> Regards,
>
> Howard Bornstein
> ---
> www.designeq.com
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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* the text of x to "hello" -- the field now contains hello.

On Thu, Nov 17, 2011 at 11:39 PM, Howard Bornstein
wrote:

> I want to put something into field "Time" via this variable.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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-revolution.278305.n4.nabble.com/Indirect-reference-tp4082209p4082233.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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
say something like put "10:00 AM" into tField, but rather than have it go
into tField (in which case, tField would contain "10:00 AM") I want it to
go *through* tField so that the value goes into field "Time".

Any reminders on how to do this?

-- 
Regards,

Howard Bornstein
---
www.designeq.com
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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, Ken Ray  wrote:

>
> 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 the dialog stack you're
> opening:
>
> -- Dialog stack "MyDialog"
> on preOpenCard
>  set the loc of this stack to 100,100
> end preOpenCard
>
> -- Calling stack
> on mouseUp
>  modal "MyDialog"
> end mouseUp
>
> The other possibility is to open a dialog box as modeless, which would let
> you drag it around…
>
>
> Ken Ray
> Sons of Thunder Software, Inc.
> Email: k...@sonsothunder.com
> Web Site: http://www.sonsothunder.com/
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 the dialog stack you're opening:

-- Dialog stack "MyDialog"
on preOpenCard
  set the loc of this stack to 100,100
end preOpenCard

-- Calling stack
on mouseUp
  modal "MyDialog"
end mouseUp

The other possibility is to open a dialog box as modeless, which would let you 
drag it around…


Ken Ray
Sons of Thunder Software, Inc.
Email: k...@sonsothunder.com
Web Site: http://www.sonsothunder.com/  

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 Gaskin  >wrote:
>
> > 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:
> >
> >  http://forums.runrev.com/viewtopic.php?f=50&t=9577>
> > >
> >
> > Attendance is open to anyone who wants to show up.  The only requirement
> > is an interest in bantering about LiveCode for a couple hours.
> >
> >
> >
>
> Stephen Barncard
> San Francisco Ca. USA
>
> more about sqb  
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
Todd Geist
geist interactive
(805) 419-9382
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 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.
> 
> Suggestions?
> 
> -- 
> 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 little diving.
> And God said, "This is good."
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.com




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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.

Suggestions?

-- 
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 little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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: Dec 1, Pasadena

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.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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
> 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 that Heather graciously set up for us in
> > the general LiveCode forums:
> >
> >  http://forums.runrev.com/viewtopic.php?f=50&t=9577>
> > >
> >
> > Attendance is open to anyone who wants to show up.  The only requirement
> > is an interest in bantering about LiveCode for a couple hours.
> >
> >
> >
>
> Stephen Barncard
> San Francisco Ca. USA
>
> more about sqb  
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 that Heather graciously set up for us in
> the general LiveCode forums:
>
> 
> >
>
> Attendance is open to anyone who wants to show up.  The only requirement
> is an interest in bantering about LiveCode for a couple hours.
>
>
>

Stephen Barncard
San Francisco Ca. USA

more about sqb  
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 to late this evening (yes it is night in Paris) I will try that tomorrow 
morning...


Is the group's lockLocation set to true? Groups will automatically 
resize if it isn't.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 Paris) I will try that tomorrow 
morning...

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...) :
>> 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 the group and
>> the button grows...
>> What is wrong ?
>> Thank you
>> René
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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...) :
>> 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 the group and
>> the button grows...
>> What is wrong ?
>> Thank you
>> René
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 mind that locations for stacks are coordinates relative the the 
screen, no the calling stack.

Hope that helps,

Malte
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 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 the group and
> the button grows...
> What is wrong ?
> Thank you
> René



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 Android 2.3.

It's 2.3.4, but has a lot of nice Amazon interface on top of it (either that, 
or I wasn't familiar with how Android 2.3 should look).

Overall it's very good.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 the group and the 
button grows...
What is wrong ?
Thank you
René
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 it.

OK You Guys - Cut the crap !

I'm talking about a REVOLUTION ! No pun intended !

Very Best Regards.

-Francis

"Nothing should ever be done for the first time !"



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 requirement 
is an interest in bantering about LiveCode for a couple hours.



I'd like to take this opportunity to invite everyone to consider 
starting up LiveCode groups in your own communities.


One of the things I've enjoyed about the Ubuntu community is their 
practice of holding Ubuntu Hour events, small local gatherings where the 
members just pick a location and regular meeting time, and show up to 
talk about their favorite tech.


The informality of Ubuntu Hours makes them very easy to set up and keep 
going.  There are no formal presentations, no agendas, and venues are 
simple, often held in a local coffee shop, restaurant, or other public 
space.


What works for Ubuntu users can work for us LiveCoders as well:

LiveCode's audience has grown enough in recent years that most large 
cities - and even a few small ones - probably have enough members to 
make it worth doing.


And by taking a less formal approach to setting them up, they can be 
easy and fun and a great way to share ideas, solve problems, and enjoy 
the company of people who share your interest in LiveCode.


In SoCal, we've enjoyed holding larger meetings in the past, but frankly 
driving time on LA freeways makes it very difficult to do for the region 
as a whole.


So instead it seems much simpler and no less enjoyable to just set up 
smaller local meetups instead.


And these can be done anywhere.  Even in your neighborhood.

Heather has kindly set up a forum for local meetings in the LiveCode forums:



With all the new LiveCode users coming on board there, that's a great 
place to post a note with something like, "I'm in Eau Claire, Wisconsin 
- who wants to meet me this Tuesday for a LiveCode get together at 
Peet's Coffee"?


If the fun we've had in our SoCal group is any indication, you're about 
to have a very good time.  This list is great, the forums are great, and 
LiveCode TV is stellar, but in-person discussion among friends who share 
a common interest as deep as LiveCode is an unmatchable good time.


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 Android devices are terribly slow, others not all that bad when
it comes to web surfing. I have to say though, for $199, it's a pretty nice
little device.

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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://LiveCodejournal.com/blog.irv

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 GMT (Sat. 
23:00 in Moscow, Sat. 20:00 in Paris, Sat. 14:00 in New York, Sat. 11:00 in Los 
Angeles, Sun. 06:00 DST in Sydney, Sun. 04:00 in Tokyo, Sun. 3:00 in Beijing). 
You can find the exact time in your city here http://qery.us/1c5

This edition of the event, Björnke von Gierke is going to show how streaming 
with Justin.tv works, compare it to Ustream.tv and ask viewers which they think 
is easier.

Make sure to use ChatRev during the happening, otherwise you won't know where 
to watch the stream, which will be announced in ChatRev. Download ChatRev here:
http://bjoernke.com?target=chatrev
or enter in the message box:
go stack url "http://qery.us/yt";

If you would like to participate in the event, contact Mark or Björnke. An easy 
way to contact us is through this web form http://qery.us/du

See also the following page for the same information:
http://livecode.tv

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Become our partner in sales http://qery.us/1bq Start selling Color Converter 
today. 20% commission!


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 wants to
include if it means I can add another nugget of LC knowledge to my
collection.


Surely, interpolated messages mean that it easy to which parts of 
previous message components the most recent writer is referring to in 
his/her reply?



As to the space issue, I've sometimes had posts rejected because they were
too large, so the list administrator has already set an appropriate space
limit.

Pete
Molly's Revenge



At the end of the day, we sift through it all, we share nuggets of

knowledge, we learn, we make fun, but we still respect our fellow listers
regardless of where they post a response.  It's all good.  I appreciate
everyone on this list, even space wasters.  Oops, there goes a few more
bytes.  :)

˜Roger


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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,
>> 
>> does anyone know if there is a free LiveChat/LiveSupport tool available.I
>> am looking for a solution where my website visitors can press a link on my
>> site and a chat windows opens where they can contact me online by chat.
>> 
>> I had something already, but the chat app for me was a windows program.
>> But i am looking either for an mac app or better a solution where i have
>> also to login from web instead from a desktop application.
>> I am looking for a solution i can host on my server. Searched Google
>> already, but found only commercial ones with a monthly fee.
>> 
>> Regards,
>> 
>> Matthias
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> 
> -- 
> 
> 
> 
> Stephen Barncard
> San Francisco Ca. USA
> 
> more about sqb  
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 chats, but my 60 year 
> old boss, who doesn't know the difference between http and ftp, told me that 
> flash is dead and should never be considered anywhere ;)
> 

???

I am not looking for a multiuser chat thing. I am looking for a chat where a 
customer can contact the support stuff by chat.

Matthias 



> 
> 
> On 14 Nov 2011, at 02:03, Matthias Rebbe wrote:
> 
>> Hi,
>> 
>> does anyone know if there is a free LiveChat/LiveSupport tool available.I am 
>> looking for a solution where my website visitors can press a link on my site 
>> and a chat windows opens where they can contact me online by chat.
>> 
>> I had something already, but the chat app for me was a windows program. But 
>> i am looking either for an mac app or better a solution where i have also to 
>> login from web instead from a desktop application.
>> I am looking for a solution i can host on my server. Searched Google 
>> already, but found only commercial ones with a monthly fee.
>> 
>> Regards,
>> 
>> Matthias 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode