Re: Audio Triggering + Mouse Event latency

2010-11-19 Thread René Micout
Or loop station :
http://www.youtube.com/watch?v=VOhEmferYjA

Le 16 nov. 2010 à 14:46, René Micout a écrit :

> Fred,
> 1. PlayCommand Agent X (for Mac - available also for Windows) is a part 
> (engine) of Shakobox :
>http://www.hyperactivesw.com/resources_shakobox.html
> 2. For your problem : why not using something like a looper, example :
> http://forum.recordingreview.com/f62/digitech-jamman-looper-reviews-7528/
> Cordialement
> René
> 
> 
> 
> Le 16 nov. 2010 à 14:30, Fred Moyer a écrit :
> 
>> Where can I get PlayCommand? I can't find it on Jacque's site. 
>> 
>> This discussion reminds me of my problem.  I am a pianist and am trying to 
>> use Revolution in my concerts. A typical performance starts with me playing 
>> on the piano alone -- and at a specific moment I bring in a recorded 
>> accompaniment which is in a Player in Revolution. I do it with a foot pedal 
>> that generates a mouseclick (my hands are busy.) When I press the foot pedal 
>> Revolution starts the player which is already loaded with the soundfile. 
>> Here's the problem: if Revolution loads the file and I press the foot pedal 
>> within about 20 secondso, the sound plays immediately -- no problem. But if 
>> my piano solo part is longer than that, it seems that Quicktime (or 
>> Revolution?) goes into some kind of hibernation mode and now when I press 
>> the foot pedal there is a delay of perhaps a second before the sound plays. 
>> This is death for the performance! So now I have to press the foot pedal 
>> about a second before the sound starts; it is really a drag! Any ideas? 
>>  Based on this discussion, I gather it would be quicker if I could get 
>> the foot pedal to generate a keydown? Any ideas how to do this? How do you 
>> make an external mouse generate a keydown instead of a mousedown?
>>  Is there any way to set Quicktime to not go into that hibernation mode? 
>> I have Snow Leopard. Would it help to move to Quicktime Pro? Or Quicktime X?
>> 
>> Thanks for any suggestions.
>> 
>> Fred Moyer
>> 
>> On Nov 16, 2010, at 4:33 AM, use-revolution-requ...@lists.runrev.com wrote:
>> 
>>> Message: 26
>>> Date: Tue, 16 Nov 2010 10:26:25 +0100
>>> From: Ren? Micout 
>>> Subject: Re: Audio Triggering + Mouse Event latency
>>> To: How to use Revolution 
>>> Message-ID: <2769f86d-1364-4199-8005-d5376bffb...@numericable.com>
>>> Content-Type: text/plain;   charset=iso-8859-1
>>> 
>>> Hello Anthony,
>>> I just returned from a trip and I discovered the discussion. For months 
>>> (years...) I work on this problem and the best solution I've found in terms 
>>> of responsiveness is to use PlayCommand Agent X (see Jacqueline web site 
>>> for that) which controls the QuickTime synthesizer via AppleScript. I have 
>>> a (Mac) prototype in progress (for iPad in final) called "Exapad" which is 
>>> based on the principles you have mentioned and which uses "MouseDown" to 
>>> start the sound and "MouseUp" to stop it. Hare are scripts extremely 
>>> simplified (because in application chords can be played and arpeggiated) :
>>> global vgVolumeGénéral,vgTimbre -- settings with slider and menu
>>> on mouseDown
>>> hsJouerNotes the cpNoteBase of the target -- custom property of the note or 
>>> sound (target = image or button)
>>> end mouseDown
>>> on mouseUp
>>> hsArrêtNotes the cpNoteBase of the target
>>> end mouseUp
>>> private command hsJouerNotes vpFondam
>>> SBstartNote vgTimbre,vpFondam,vgVolumeGénéral
>>> end hsJouerNotes
>>> private command hsArrêtNotes vpFondam
>>> SBstopNote vgTimbre,vpFondam 
>>> end hsArrêtNotes
>>> command SBstartNote vpI,vpP,vpV
>>> do ("tell application"&"e& "PlayCommand Agent X" "e && "to" && 
>>> "play note instrument" && quote & vpI & quote && "pitch" && vpP && 
>>> "velocity" && vpV) as AppleScript
>>> end SBstartNote
>>> command SBstopNote vpI,vpP
>>> do ("tell application" && quote & "PlayCommand Agent X" & quote && "to" && 
>>> "play note instrument"&& quote & vpI & quote && "pitch" && vpP && 
>>> "velocity" && 0) as AppleScript
>>> end SBstopNote
>>> No latency. Percussion sounds possible...
>>> I stop because I have no more place...
>>> Bon souvenir de Paris
>>> René
>> 
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

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


Re: DOWNLOADING REV 4.0.0

2010-11-19 Thread Bob Sneidar
Eheh. Of course. DOH!

Bob


On Nov 19, 2010, at 4:56 AM, Björnke von Gierke wrote:

> on startup
>  put the effective filename of me into thePath
>  put the files into theList
>  filter theList with "*.rev"
>  put line 1 of theList into theStack
>  put the short name of me into theStandalone
>  hide this stack
>  go stack theStack
>  if the result <> "" then
>show stack theStack
>put theStack & return into field "error"
>put the result after field "error"
>beep
>pass startup
>  end if
>  send "closeme" to stack theStandalone in 1 second
> end startup
> 
> on closeMe
>  close this stack
> end closeMe
> 
> On 18 Nov 2010, at 18:19, Bob Sneidar wrote:
> 
>> Just thot I'd say, the player was one of the selling points for me. To be 
>> able to distribute a stack I made for the company I work for, along with a 
>> player, without having to futz with all the idiosyncrasies of standalones 
>> was very appealing. I was disappointed when support for the player went 
>> away. 
>> 
>> Bob

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


Re: Strange Datagrid Column Problem

2010-11-19 Thread Bob Sneidar
My favorite personal syntax is "put 'goodFood' into the large mouth of me"

Another favorite: "get SomeOneElseToCleanUp(afterwards)"

Bob


On Nov 19, 2010, at 4:13 AM, David Bovill wrote:

> Yes - I've seen this when you refer to "me" using strange syntax like that.
> That's not me personally - you're welcome to refer to me in whatever syntax
> you like, but the behavior. Not my behavior... anyway. There does seem to be
> some downside of an English like syntax.

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


Re: LiveCode Personal Banner

2010-11-19 Thread Richard Gaskin

Kevin Miller wrote:

I'm leaning towards shortening the banner time to 5 seconds.


That would be a very good option, IMO.

When SuperCard introduced a splash screen delay they originally went for 
10 seconds, but I suggested they try the breath-holding test:   when the 
splash screen appears simply hold your breath until it goes away.


Sure, 10 seconds isn't a long time for most folks to hold their breath, 
but doing so it makes one very aware of how much time passes.


On paper or in a meeting, 10 second sounds like a short time.  But in 
actual use it feels like a very long 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-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Cool. Thanks. Looking forward to it.

On Fri, Nov 19, 2010 at 10:49 AM, Mark Schonewille
 wrote:
> I'll set up a wiki over the weekend so we're good to go on monday. See ya...
>
>

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Twitter and Oauth

2010-11-19 Thread Mark Schonewille
I'll set up a wiki over the weekend so we're good to go on monday. See ya...

--
Best regards,

Mark Schonewille

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

Follow Economy-x-Talk on Facebook now and get a free Color Converter license 
http://qurl.tk/gn (read the conditions)

On 19 nov 2010, at 16:42, Erik Schwartz wrote:

> Sounds good.
> 
> I think the mailing lists are going down at any moment so we might
> want to wait until they're back.
> 

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


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Sounds good.

I think the mailing lists are going down at any moment so we might
want to wait until they're back.



On Fri, Nov 19, 2010 at 10:40 AM, Mark Schonewille
 wrote:
> Hi,
>
> Shall I set up an open wiki to start with? That will give everybody a chance 
> to share whatever he or she likes.
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
>
> Follow Economy-x-Talk on Facebook now and get a free Color Converter license 
> http://qurl.tk/gn (read the conditions)
>
> On 19 nov 2010, at 16:21, David Bovill wrote:
>
>> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
>> it. I've got a bit of work on Twitter clients as well I could throw in the
>> mix.
>>
>> On 19 November 2010 14:06, Erik Schwartz  wrote:
>>
>>> I'd be happy to help.
>>>
>>> I think this is an important area, especially as runrev gets more
>>> mobile focused, but also for on-rev and desktop apps.
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread Mark Schonewille
Hi,

Shall I set up an open wiki to start with? That will give everybody a chance to 
share whatever he or she likes.

--
Best regards,

Mark Schonewille

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

Follow Economy-x-Talk on Facebook now and get a free Color Converter license 
http://qurl.tk/gn (read the conditions)

On 19 nov 2010, at 16:21, David Bovill wrote:

> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
> it. I've got a bit of work on Twitter clients as well I could throw in the
> mix.
> 
> On 19 November 2010 14:06, Erik Schwartz  wrote:
> 
>> I'd be happy to help.
>> 
>> I think this is an important area, especially as runrev gets more
>> mobile focused, but also for on-rev and desktop apps.

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


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
It seems like the kind of thing for which a nice set of libraries
would get a ton of use.



On Fri, Nov 19, 2010 at 10:35 AM, Andre Garzia  wrote:
> I fled in fear as well... I call it ONoesAuth
>
> On Fri, Nov 19, 2010 at 1:21 PM, David Bovill wrote:
>
>> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
>> it. I've got a bit of work on Twitter clients as well I could throw in the
>> mix.

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread Andre Garzia
I fled in fear as well... I call it ONoesAuth

On Fri, Nov 19, 2010 at 1:21 PM, David Bovill wrote:

> Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
> it. I've got a bit of work on Twitter clients as well I could throw in the
> mix.
>
> On 19 November 2010 14:06, Erik Schwartz  wrote:
>
> > I'd be happy to help.
> >
> > I think this is an important area, especially as runrev gets more
> > mobile focused, but also for on-rev and desktop apps.
> >
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: matchChunk works?

2010-11-19 Thread David Bovill
Your destination is misquoted?

"(tDestino)" is not "(" & tDestino & ")"
>

On 19 November 2010 13:35, JosepM  wrote:

>
> Hi,
>
> Not for me, well, the sample code work but this not. Why?
>
> LOCAL startMatch, endMatch
> on mouseUp
>   PUT fld "f_friends" into VAR1
>  put fld "f_look_for_friends" into tDestino
>   PUT EMPTY INTO startMatch
>  PUT EMPTY INTO endMatch
>   PUT matchChunk(VAR1,"(tDestino)",startMatch, endMatch) INTO VAR2
>   put VAR2 && startMatch && endMatch
> end mouseUp
>
> Ever I get startMatch and endMatch to empty...
>
> Salut,
> Josep
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Twitter and Oauth

2010-11-19 Thread David Bovill
Me too - I've looked at oAuth, but fled in fear :) Keen to get on and crack
it. I've got a bit of work on Twitter clients as well I could throw in the
mix.

On 19 November 2010 14:06, Erik Schwartz  wrote:

> I'd be happy to help.
>
> I think this is an important area, especially as runrev gets more
> mobile focused, but also for on-rev and desktop apps.
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


So long...

2010-11-19 Thread jim sims
So long and thanks for all the fish.

Ciao ciao.


sims





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


The List Is Moving - Please Read

2010-11-19 Thread Heather Nagey

Dear List Members,

As you must all be aware by now, the name of our product is no longer  
Revolution, it has become LiveCode. This means that the name of this  
list is now out of date. In order to bring it in line with the rest of  
the site and product naming, it is about to become the use-livecode  
list. It is also going to move to a new server location.


To make this change, we need to take the list down for a period. We  
will move all your subscriptions, you need do nothing to your list  
membership. We expect the list to be down for around 48 hours, during  
this period please do not post to it as your post may be lost.  
Downtime will commence at 4.30pm today, Friday (GMT).


On Monday morning I will send you all a post from the new list  
location, with exact instructions on using the new list posting  
address and location. Please do not attempt to post before you receive  
this email from me.


Thank you for your patience during this necessary administration,  
we'll do our best to make the downtime as short as possible and the  
transition seamless for all of you.


Warm Regards,

Heather


Heather Nagey
Customer Services Manager
http://www.runrev.com/
LiveCode – Realize fast, compile-free coding

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


Re: Twitter and Oauth

2010-11-19 Thread Erik Schwartz
I'd be happy to help.

I think this is an important area, especially as runrev gets more
mobile focused, but also for on-rev and desktop apps.



On Fri, Nov 19, 2010 at 8:25 AM, Mark Schonewille
 wrote:
> Hi Erik,
>
> I will probably be working on Oauth very soon, with regard to Facebook. 
> Perhaps we can do something together.
>

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: The New FRelease

2010-11-19 Thread Jim Sims

On Nov 19, 2010, at 2:58 PM, Andre Garzia wrote:

>> Intriguing, but a search for "Elsie four fiftyone" failed to turn up
>> anything I recognize.
>> 
> 
> LC 4 51 ?

;-)


It's a Koan, Richard.
And there ain't no ice cream in it.

:-)

sims





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


Re: The New FRelease

2010-11-19 Thread Andre Garzia
On Fri, Nov 19, 2010 at 11:39 AM, Richard Gaskin  wrote:

> Cal Horner wrote:
>
>  I know this is a 'bit' early and I may be jumping the gun but...
>>
>> Has anyone out there installed Elsie four fiftyone and if so are there any
>> gotchas waiting to bite us in the backside?
>>
>> Or, is everything sweet?
>>
>> Any comments?
>>
>
> Intriguing, but a search for "Elsie four fiftyone" failed to turn up
> anything I recognize.
>

LC 4 51 ?


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



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: The New FRelease

2010-11-19 Thread Richard Gaskin

Cal Horner wrote:


I know this is a 'bit' early and I may be jumping the gun but...

Has anyone out there installed Elsie four fiftyone and if so are there any
gotchas waiting to bite us in the backside?

Or, is everything sweet?

Any comments?


Intriguing, but a search for "Elsie four fiftyone" failed to turn up 
anything I recognize.


What is it?

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


Re: matchChunk works?

2010-11-19 Thread JosepM

Hi,

Not for me, well, the sample code work but this not. Why?

LOCAL startMatch, endMatch 
on mouseUp 
      PUT fld "f_friends" into VAR1 
  put fld "f_look_for_friends" into tDestino
      PUT EMPTY INTO startMatch 
      PUT EMPTY INTO endMatch 
      PUT matchChunk(VAR1,"(tDestino)",startMatch, endMatch) INTO VAR2 
      put VAR2 && startMatch && endMatch 
end mouseUp 

Ever I get startMatch and endMatch to empty...

Salut,
Josep
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/matchChunk-works-tp620097p3050334.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode and the Mac App Store

2010-11-19 Thread Andre Garzia
Thomas & Jacque,

What I am going to say here is untested. So far I haven't got the time to
try it out but "it should work" (tm).

What you see on the "Documents" interface on iTunes is the same folder you
get when you use specialFolderPath("documents"). So why doesn't all apps
shown up? Because you need a special flag in the .plist for that to work.
You need a boolean key set to true (YES), the key is:

  UIFileSharingEnabled

So if you can get to your plist and set that key to true, then, your
documents folder will magically be available on the iTunes interface. I know
that in the latest alpha of LiveCode iOS deployment thing, we have access to
an editor for the plist but I don't know if it allows you to go to the
source to edit it. If it does, then this is very easy.

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


Re: Twitter and Oauth

2010-11-19 Thread Mark Schonewille
Hi Erik,

I will probably be working on Oauth very soon, with regard to Facebook. Perhaps 
we can do something together.

--
Best regards,

Mark Schonewille

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

Follow Economy-x-Talk on Facebook now and get a free Color Converter license 
http://qurl.tk/gn (read the conditions)

On 19 nov 2010, at 14:23, Erik Schwartz wrote:

> Has anyone done a runrev twitter client or other application using Oauth?
> 
> They've got many libraries but none for LiveCode
> http://dev.twitter.com/pages/oauth_libraries
> 
> I'd like to built twitter notification into an app I've built that
> interfaces with the real world via the serial port.

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


Twitter and Oauth

2010-11-19 Thread Erik Schwartz
Has anyone done a runrev twitter client or other application using Oauth?

They've got many libraries but none for LiveCode
http://dev.twitter.com/pages/oauth_libraries

I'd like to built twitter notification into an app I've built that
interfaces with the real world via the serial port.

-- 
==
er...@sisyph.us                                  http://sisyph.us
(530) 213-ERIK                          http://twitter.com/eriks
(530) 213-3745   http://www.linkedin.com/in/erikschwartz
==
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: DOWNLOADING REV 4.0.0

2010-11-19 Thread Björnke von Gierke
on startup
  put the effective filename of me into thePath
  put the files into theList
  filter theList with "*.rev"
  put line 1 of theList into theStack
  put the short name of me into theStandalone
  hide this stack
  go stack theStack
  if the result <> "" then
show stack theStack
put theStack & return into field "error"
put the result after field "error"
beep
pass startup
  end if
  send "closeme" to stack theStandalone in 1 second
end startup

on closeMe
  close this stack
end closeMe

On 18 Nov 2010, at 18:19, Bob Sneidar wrote:

> Just thot I'd say, the player was one of the selling points for me. To be 
> able to distribute a stack I made for the company I work for, along with a 
> player, without having to futz with all the idiosyncrasies of standalones was 
> very appealing. I was disappointed when support for the player went away. 
> 
> Bob
> 
> 
> On Nov 17, 2010, at 11:59 PM, Joseba Aguayo wrote:
> 
>> No Jacqueline, no.
>> The support team respond me this:
>> 
>> Dear Joseba Aguayo,
>> 
>> Thank you for your request. If you are referring to the old DreamCard 
>> Revolution Player, it is no longer supported or available.
>> 
>> If you mean the Web Plugin, that is here:
>> 
>> http://revweb.runrev.com
>> 
>> I hope this helps,
>> 
>> Regards,
>> 
>> Heather
>> -
>> 
>> Is incredible 
>> 
>> Un saludo.
>> 
>> Joseba Aguayo Fernández
>> (jagu...@telur.es)
>> 
>> 
>> On Nov 17, 2010, at 8:58 PM, use-revolution-requ...@lists.runrev.com wrote:
>> 
>>> DOWNLOADING REV 4.0.0
>> 
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

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


Re: Strange Datagrid Column Problem

2010-11-19 Thread David Bovill
On 19 November 2010 11:47, zryip theSlug  wrote:

> On Fri, Nov 19, 2010 at 9:54 AM, David Bovill 
> wrote:
> > Can you file this as a bug, and add the stack? I think it is related
> > to a reference resolution bug with behaviours that causes a few
> > problems when using send. I'm interested to track this bug down.
>
> For columns, "me" should refer to a group named with the name of the
> column + the number of the lines (or the index, not remember exactly)
>
> "btn 1 of me"
> or
> "btn 1 of the long id of me"
>
> should refer to a button in a group name or in group id, not to a field.
>
> Maybe interesting to study that closer.
>

Yes - I've seen this when you refer to "me" using strange syntax like that.
That's not me personally - you're welcome to refer to me in whatever syntax
you like, but the behavior. Not my behavior... anyway. There does seem to be
some downside of an English like syntax.

The behavior I get problems with is that in certain circumstances "the long
id of x" does not convert a valid reference to the "long id" when called
from within a behavior, which is surely bad behavior, for which I apologise.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Strange Datagrid Column Problem

2010-11-19 Thread zryip theSlug
On Fri, Nov 19, 2010 at 9:54 AM, David Bovill  wrote:
> Can you file this as a bug, and add the stack? I think it is related
> to a reference resolution bug with behaviours that causes a few
> problems when using send. I'm interested to track this bug down.

For columns, "me" should refer to a group named with the name of the
column + the number of the lines (or the index, not remember exactly)

"btn 1 of me"
or
"btn 1 of the long id of me"

should refer to a button in a group name or in group id, not to a field.

Maybe interesting to study that closer.


Regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Strange Datagrid Column Problem

2010-11-19 Thread zryip theSlug
On Fri, Nov 19, 2010 at 12:42 AM, Peter Haworth  wrote:

Pete,

> That worked!

Odd, should work in the both cases.

> Are you familiar with the banana slug, native to the Santa Cruz area of
> California?

A few. It is endemic (native) of the area. It loves forest. Its color
allows it to hide from predators in the leaves.
It exists also a mascott, no?


Best regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stackrunner

2010-11-19 Thread David Bovill
On 17 November 2010 19:49, Devin Asay  wrote:

>
>  start using stack "myIconStack" --or whatever it's called.
>

You don't need to "use" the stack - it just needs to be loaded into memory.
Using the stack is one way to do that,  so is making it a substack of the
main stack as then they are in the same file and both loaded at the same
time.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Strange Datagrid Column Problem

2010-11-19 Thread David Bovill
Can you file this as a bug, and add the stack? I think it is related
to a reference resolution bug with behaviours that causes a few
problems when using send. I'm interested to track this bug down.

On Thursday, November 18, 2010, Peter Haworth  wrote:
> That worked!
>
> Are you familiar with the banana slug, native to the Santa Cruz area of 
> California?
>
> Pete Haworth
>
> On Nov 18, 2010, at 2:54 PM, zryip theSlug wrote:
>
>
> Pete,
>
> Try:
> set the hilite of btn 1 of me to handleBoolean(pData)
>
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: getting page hit-counts for on-rev account

2010-11-19 Thread Pierre Sahores

Le 19 nov. 2010 à 01:22, Bob Sneidar a écrit :

> Unless they are checking for it, Bots will trigger a hit as well. Have you 
> thought about Google Analytics? Not sure if you can use it for on-rev. 

Works 100% friendly with on-rev hosted apps.

Best,

Pierre
> 
> Bob
> 
> 
> On Nov 18, 2010, at 4:20 PM, Alex Tweedly wrote:
> 
>> In cpanel
>> In the "Logs" panel, click on   webalizer
>> for the appropriate domain, click on "View"
>> then click on the relevant month
>> then click on "URLs"
>> and then you should see it 
>> 
>> Hopefully there are other, perhaps better ways.
>> -- Alex.
>> 
>> 
>> On 18/11/2010 23:55, Nicolas Cueto wrote:
>>> Hello List,
>>> 
>>> I guess my question is for fellow on-rev account users.
>>> 
>>> How can one retrieve a count of the number of visitors to a specific 
>>> web-page?
>>> 
>>> Somewhere in the cpanel, I imagine. But if someone knows for certain,
>>> it'd save me a lot of digging around here and there.
>>> 
>>> Thanks.
>>> 
>>> --
>>> Nicolas Cueto
>>> ___
>>> use-revolution mailing list
>>> use-revolution@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your 
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-revolution
>>> 
>> 
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

--
Pierre Sahores
mobile : (33) 6 03 95 77 70

www.wrds.com
www.sahores-conseil.com




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


Re: OT: getting page hit-counts for on-rev account

2010-11-19 Thread Pierre Sahores
Nicolas,

cPanel : Webalizer + Analogue

irev : <.?rev get url this.page.counter ; put 1+it into url this.page.counter 
?> or best and more secure (concurrent writes supported), an SQL data write

StatCounter

Xiti

Google Analytics

etc...

Best,

Pierre

Le 19 nov. 2010 à 00:55, Nicolas Cueto a écrit :

> Hello List,
> 
> I guess my question is for fellow on-rev account users.
> 
> How can one retrieve a count of the number of visitors to a specific web-page?
> 
> Somewhere in the cpanel, I imagine. But if someone knows for certain,
> it'd save me a lot of digging around here and there.
> 
> Thanks.
> 
> --
> Nicolas Cueto
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
> 

--
Pierre Sahores
mobile : (33) 6 03 95 77 70

www.wrds.com
www.sahores-conseil.com




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