Re: Windows Version problems

2010-11-17 Thread Richmond
On 11/17/2010 06:51 PM, Joe Lewis Wilkins wrote: Well, it seems that my problem is more pernicious than I realized. While within the IDE I can go back and forth between stacks by providing the name of the stack with the .rev on the end, but that doesn't help to identify the stacks in the

RE: Windows Version problems

2010-11-17 Thread John Dixon
Joe... I'm confused with what you want to do... Do you want to put data from your standalone into say a field in a substack and also at some point in time get that data back from the substack and view it in your mainstack ? or Do you want to open your substack from your main stack and then

Stackrunner

2010-11-17 Thread Peter Haworth
Just started using this and very happy but have come across a problem regarding button icons. I imported a set of icons into the image library in the IDE and refer to the icon numbers within the Image Library when specifying icons for buttons. All works fine in the IDE and standalone but

Re: Windows Version problems

2010-11-17 Thread Joe Lewis Wilkins
Hi Dixie, I guess it IS a little confusing. I have a main-stack and two sub-stacks. The user has to answer questions presented in the Main-stack. The information required to answer the questions is located in one of the sub-stacks - The Reference Stack. When a question is presented in the

script interruption (suite)

2010-11-17 Thread Yves COPPE
Hi list i've made a fld appearing on the screen this fld show a text (coming from a variable) this fld is locktext his fld contains the script on mouseUp global gFlagEnd put true into gFlagEnd end mouseUp the fld does appear when I click inside the fld, the fld disappears it's OK BUT i'd

Please suggest script

2010-11-17 Thread Timothy Miller
Sigh... Always the newbie... I have a rev stack containing tens of thousands of words of notes, in plain text, in various fields, on many cards. I won't bore you with the details. Some of these notes include URLs for web sites, in plain text. There are hundreds of these. I'd like to be able

Re: Please suggest script

2010-11-17 Thread Andre Garzia
Tim, What you need to do is to loop your fields using a Regular Expression ( http://www.regular-expressions.info/ ) and MatchChunk to find out what chunks are URLs. Then you set the textstyle of those chunks to linktext. On the fields you intercept linkclicked and the clicked text will be the

Re: DOWNLOADING REV 4.0.0

2010-11-17 Thread J. Landman Gay
On 11/17/10 3:23 AM, Joseba Aguayo wrote: Kaixo: How it's possible that RunRev delete the Revolution Player from his Web?? Update the software, but don't delete old files that your client use! This is a serious company? They are not deleted, but are no longer supported so they

Re: Please suggest script

2010-11-17 Thread Timothy Miller
Thanks Andre! I think you might have misunderstood my request. What I want to do is pretty simple. I will manually locate web URLs, and hilite them manually. They are in plain text. Then I want to click a button that will turn the hilited plain-text URL into a clickable link. By clickable link

Re: Please suggest script

2010-11-17 Thread Phil Davis
On 11/17/10 10:30 AM, Timothy Miller wrote: I tried: get the selectedText revGoUrl it That worked, to my amazement. Cool. Didn't know about RevGoUrl. OTOH, the docs say revGoUrl is deprecated. I'm not sure what to use instead. Try: get the selectedText launch url it -- Phil Davis PDS

Re: Please suggest script

2010-11-17 Thread Andre Garzia
On Wed, Nov 17, 2010 at 4:30 PM, Timothy Miller gand...@doctortimothymiller.com wrote: Thanks Andre! I think you might have misunderstood my request. What I want to do is pretty simple. I will manually locate web URLs, and hilite them manually. They are in plain text. Then I want to click a

Re: Please suggest script

2010-11-17 Thread Mike Bonner
I see where you're going with this. First I need to point out, if the field doesn't have locktext set, don't think it will work, BUT, if it is.. For the plainest, simplest form, no validation or anything of that sort you can do the following. In the button you can put: on mouseUp set the

Re: Please suggest script

2010-11-17 Thread Mike Bonner
Oh yeah. Do what andre said and use linkclicked. On Wed, Nov 17, 2010 at 11:36 AM, Andre Garzia an...@andregarzia.comwrote: On Wed, Nov 17, 2010 at 4:30 PM, Timothy Miller gand...@doctortimothymiller.com wrote: Thanks Andre! I think you might have misunderstood my request. What I want

Re: Please suggest script

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 11:30 AM, Timothy Miller wrote: Thanks Andre! I think you might have misunderstood my request. What I want to do is pretty simple. I will manually locate web URLs, and hilite them manually. They are in plain text. Then I want to click a button that will turn the

Re: Please suggest script

2010-11-17 Thread Andre Garzia
ho ho ho I was going to say, do what Mike said... On Wed, Nov 17, 2010 at 4:40 PM, Mike Bonner bonnm...@gmail.com wrote: Oh yeah. Do what andre said and use linkclicked. On Wed, Nov 17, 2010 at 11:36 AM, Andre Garzia an...@andregarzia.com wrote: On Wed, Nov 17, 2010 at 4:30 PM, Timothy

Re: Please suggest script

2010-11-17 Thread Andre Garzia
yes, Devin wins! On Wed, Nov 17, 2010 at 4:40 PM, Devin Asay devin_a...@byu.edu wrote: On Nov 17, 2010, at 11:30 AM, Timothy Miller wrote: Thanks Andre! I think you might have misunderstood my request. What I want to do is pretty simple. I will manually locate web URLs, and hilite them

Re: script interruption (suite)

2010-11-17 Thread Ian McKnight
How about sending another send in time message to change the global after 5 seconds? I haven't tried itand there may be a more efficient way to code this but I think it should work. The only thing is you will have quite a number of unneeded calls of the secondTimer. To overcome this you need to

Re: Windows Version problems

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 10:52 AM, Joe Lewis Wilkins wrote: Hi Dixie, I guess it IS a little confusing. I have a main-stack and two sub-stacks. The user has to answer questions presented in the Main-stack. The information required to answer the questions is located in one of the sub-stacks -

Re: Windows Version problems

2010-11-17 Thread J. Landman Gay
On 11/17/10 11:52 AM, Joe Lewis Wilkins wrote: I have a main-stack and two sub-stacks. The user has to answer questions presented in the Main-stack. The information required to answer the questions is located in one of the sub-stacks If the stacks are all substacks, and you do not build your

Re: Stackrunner

2010-11-17 Thread J. Landman Gay
On 11/17/10 11:45 AM, Peter Haworth wrote: Just started using this and very happy but have come across a problem regarding button icons. I imported a set of icons into the image library in the IDE and refer to the icon numbers within the Image Library when specifying icons for buttons. All works

Re: Please suggest script

2010-11-17 Thread Mike Bonner
General rule of thumb. Never do what Mike says. All my friends see this as a life rule. If Mike thinks its a good idea, or even worse, if Mike came UP with the idea, its doomed DOOMED I TELL YOU! HAHAHAHAHAHAHA (you gotta imagine the cackles) ho ho ho I was going to say, do what Mike said...

Posting binary data

2010-11-17 Thread Devin Asay
Hi all, One of my students is doing a Rev project in which he needs to post binary data (a .mov file, in this case) to a web server. I've never done this, but I'm told that in a standard web form one sets the enctype attribute of a form input to indicate that the data being posted is binary.

Re: Posting binary data

2010-11-17 Thread Mark Schonewille
Hi Devin, Before using the post command, execute the following line: set the httpHeaders to Content-type: application/binary cr \ Content-Transfer-Encoding: binary cr \ Content-Length: length of your data in bytes Let us know if this works for you. -- Best regards, Mark Schonewille

Re: Posting binary data

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 12:15 PM, Mark Schonewille wrote: Hi Devin, Before using the post command, execute the following line: set the httpHeaders to Content-type: application/binary cr \ Content-Transfer-Encoding: binary cr \ Content-Length: length of your data in bytes Let us know

Re: Stackrunner

2010-11-17 Thread Peter Haworth
Thanks. It will be a huge amount of work for me to change icon numbers everywhere so I guess Stackrunner won't work for me. Oh well! Pete Haworth On Nov 17, 2010, at 11:02 AM, J. Landman Gay wrote: On 11/17/10 11:45 AM, Peter Haworth wrote: Just started using this and very happy but have

Re: Stackrunner

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 12:22 PM, Peter Haworth wrote: Thanks. It will be a huge amount of work for me to change icon numbers everywhere so I guess Stackrunner won't work for me. Oh well! Pete, You could include the Image Library stack with your stack and start using it when it's opened by

Re: Stackrunner

2010-11-17 Thread Richmond
On 11/17/2010 09:24 PM, Devin Asay wrote: On Nov 17, 2010, at 12:22 PM, Peter Haworth wrote: Thanks. It will be a huge amount of work for me to change icon numbers everywhere so I guess Stackrunner won't work for me. Oh well! Pete, You could include the Image Library stack with your stack

Re: Stackrunner

2010-11-17 Thread Peter Haworth
I'm not 100% sure how to do this. I guess it means finding where the image library stack is then issuing a command of some sort when my app starts up to bring that stack into my stack file? Pete Haworth On Nov 17, 2010, at 11:24 AM, Devin Asay wrote: On Nov 17, 2010, at 12:22 PM, Peter

Re: Is it possible to access or set individual pixels of an image?

2010-11-17 Thread Geoff Canyon Rev
You should try to do all the updates as one: get the imagedata of the image, make whatever changes you need to, then set the imagedata of the image again. There are a few gotchas when setting the imagedata. Make sure the image is the right size. If you're setting a 10x20 pixel image, you need to

Re: Is it possible to access or set individual pixels of an image?

2010-11-17 Thread Scott Rossi
Recently, I wrote: execute the following in your message box: go url http://www.tactilemedia.com/site_files/downloads/pixel_colorize.rev; Whoops -- something stopped working in the random colorizing portion of this demo. Reposted the stack with a fix (hopefully it's working correctly now).

Re: Stackrunner

2010-11-17 Thread Devin Asay
On Nov 17, 2010, at 12:36 PM, Peter Haworth wrote: I'm not 100% sure how to do this. I guess it means finding where the image library stack is then issuing a command of some sort when my app starts up to bring that stack into my stack file? That's the general idea. You find the stack

Re: Stackrunner

2010-11-17 Thread Richmond
On 11/17/2010 09:36 PM, Peter Haworth wrote: I'm not 100% sure how to do this. I guess it means finding where the image library stack is then issuing a command of some sort when my app starts up to bring that stack into my stack file? Pete Haworth I don't think this is all that difficult:

Re: Is it possible to access or set individual pixels of an image?

2010-11-17 Thread Scott Rossi
Recently, Geoff Canyon Rev wrote: You should try to do all the updates as one: get the imagedata of the image, make whatever changes you need to, then set the imagedata of the image again. There are a few gotchas when setting the imagedata. Make sure the image is the right size. If you're

Re: script interruption (suite)

2010-11-17 Thread Yves COPPE
Le 17 nov. 2010 à 19:45, Ian McKnight a écrit : How about sending another send in time message to change the global after 5 seconds? I haven't tried itand there may be a more efficient way to code this but I think it should work. The only thing is you will have quite a number of unneeded

Re: Stackrunner

2010-11-17 Thread Ken Ray
The IDE and the standalones it builds know about the image library, but StackRunner does not. That's right - the list of things that are built in to StackRunner are listed under the Using StackRunner section of the web page:

Re: script interruption (suite)

2010-11-17 Thread Ian McKnight
Hi Yves Try moving the lines send secondTimer to me in 5 Sec -- record the message ID put the resultcr after myPendingMessages out of the handler altogether, placing it immediately before the place where the main call to toggleexercice is made. This should mean that a timer is started as soon

Re: Windows Version problems

2010-11-17 Thread Joe Lewis Wilkins
Thanks Devin, I'll keep that in mind as a possibility. Joe Wilkins On Nov 17, 2010, at 10:45 AM, Devin Asay wrote: On Nov 17, 2010, at 10:52 AM, Joe Lewis Wilkins wrote: Hi Dixie, I guess it IS a little confusing. I have a main-stack and two sub-stacks. The user has to answer

Re: Stackrunner

2010-11-17 Thread J. Landman Gay
On 11/17/10 2:14 PM, Ken Ray wrote: The IDE and the standalones it builds know about the image library, but StackRunner does not. That's right - the list of things that are built in to StackRunner are listed under the Using StackRunner section of the web page:

Unable to Affect Printer Paper Orientation?

2010-11-17 Thread Scott Rossi
Hi List: I'm wondering if anyone has come across a print dialog situation that has multiple ways of setting paper orientation (LC4, Windows XP). After beating my head against the wall for several hours, I realized that the landscape paper setting in the Page Setup dialog in XP is not being

Re: script interruption (suite)

2010-11-17 Thread Yves COPPE
Le 17 nov. 2010 à 21:26, Ian McKnight a écrit : Hi Yves Try moving the lines send secondTimer to me in 5 Sec -- record the message ID put the resultcr after myPendingMessages out of the handler altogether, placing it immediately before the place where the main call to toggleexercice

[ANN] buttons for iPhone

2010-11-17 Thread BNig
I tried to make the making of buttons for the iPhone / iPad easier. The stack consists of graphics that are changeable in width height color, arrow right, arrow left, round rect. Set the font of the text. Once you configured your 'button' you make a snapshot of the graphics as PNG to use in your

Re: script interruption (suite)

2010-11-17 Thread Yves COPPE
Le 17 nov. 2010 à 21:26, Ian McKnight a écrit : Hi Yves Hi Ian, I have noticed that command secondTimer global gEndFlag if gFlagEnd is false then put True into gFlagEnd end secondTimer this command is well activated after 5 secs but the fld doesn't disappear something misses !

Re: script interruption (suite)

2010-11-17 Thread Yves COPPE
Le 17 nov. 2010 à 21:26, Ian McKnight a écrit : Hi Yves Try moving the lines send secondTimer to me in 5 Sec -- record the message ID put the resultcr after myPendingMessages out of the handler altogether, placing it immediately before the place where the main call to toggleexercice

Re: script interruption (suite)

2010-11-17 Thread Ian McKnight
Glad to be of help. On 17 November 2010 21:25, Yves COPPE yvesco...@skynet.be wrote: Le 17 nov. 2010 à 21:26, Ian McKnight a écrit : Hi Yves Try moving the lines send secondTimer to me in 5 Sec -- record the message ID put the resultcr after myPendingMessages out of the

Re: Stackrunner

2010-11-17 Thread Peter Haworth
Thanks Devin and Richmond. Pete Haworth http://www.mollysrevenge.com http://www.sonicbids.com/MollysRevenge http://www.myspace.com/mollysrevengeband On Nov 17, 2010, at 11:49 AM, Devin Asay wrote: On Nov 17, 2010, at 12:36 PM, Peter Haworth wrote: I'm not 100% sure how to do

Re: [ANN] buttons for iPhone

2010-11-17 Thread BNig
here is the stack for the iPhone buttons as a revlet: http://berndniggemann.on-rev.com/iphonebtnsrevlet/ on my local machine I could even copy the images and the button object into a new Livecode stack. If you copy a button object and it works you will see an install button, click on it to

The free form linguistics revolution

2010-11-17 Thread Alejandro Tejada
Hi all, Please read these comments from Stephen Wolfram about using Free-Form Linguistics Revolution in Mathematica: http://blog.stephenwolfram.com/2010/11/the-free-form-linguistics-revolution-in-mathematica/

Re: LiveCode and the Mac App Store

2010-11-17 Thread Thomas McGrath III
Ron, I haven't tried in the latest release but before that there was no way for iOS to save out a stack or a preferences file that I know of. In xCode you have a few choices. Either save to the settings pane via API provided by apple or you could save a pList to 'your sandbox' documents folder

Why Does this Behavior Fail?

2010-11-17 Thread Sivakatirswami
goal: I would to put help info in custom props and then call these automatically into display as the user pass his mouse over controls (on a preferences card) A preference might be a check box whose name is button: __ autoMountServer type: check box If I put this script into directly

Re: Why Does this Behavior Fail?

2010-11-17 Thread J. Landman Gay
On 11/17/10 5:51 PM, Sivakatirswami wrote: goal: I would to put help info in custom props and then call these automatically into display as the user pass his mouse over controls (on a preferences card) I have a stack that does that, but it doesn't use behaviors. I just put this into the

Re: Why Does this Behavior Fail?

2010-11-17 Thread Web Admin Himalayan Academy
On 11/17/10 2:51 PM, J. Landman Gay wrote: I have a stack that does that, but it doesn't use behaviors. I just put this into the card: on mouseEnter put the cTip of the target into tTip if tTip then set the htmltext of fld helptext to tTip end if pass mouseEnter end mouseEnter

Re: Why Does this Behavior Fail?

2010-11-17 Thread Mark Wieder
S- Wednesday, November 17, 2010, 5:07:10 PM, you wrote: I love it... simple is better who needs behaviors if you don't need behaviors (hehe, though I still would like to know why it did not work...) Memory's failing me here, but I think there was a thread recently about mouseWithin messages

Re: Why Does this Behavior Fail?

2010-11-17 Thread Web Admin Himalayan Academy
On 11/17/10 3:23 PM, Mark Wieder wrote: S- Wednesday, November 17, 2010, 5:07:10 PM, you wrote: I love it... simple is better who needs behaviors if you don't need behaviors (hehe, though I still would like to know why it did not work...) Memory's failing me here, but I think there was

Re: [ANN] buttons for iPhone

2010-11-17 Thread Robert Mann
A warm thank you! ... all the graphic part is getting so sophisticated these days! I'll test it next few days to make graphics for a iphone version of my site... and I was shivering at the thought of having to spend too much time for a non graphic man in GIMP, the chimp. THanks for sharing.

Re: LiveCode and the Mac App Store

2010-11-17 Thread J. Landman Gay
On 11/17/10 4:46 PM, Thomas McGrath III wrote: I haven't tried in the latest release but before that there was no way for iOS to save out a stack or a preferences file that I know of. Basic file read/write and file URL access works now. I'm saving a text-based prefs file to the Documents

Re: Please suggest script

2010-11-17 Thread Timothy Miller
Thankya, Devin, Andre, Phil and Mike. Very helpful. I get it now. Tim ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Please suggest script

2010-11-17 Thread Timothy Miller
Thankya, Devin, Andre, Phil and Mike. Your suggestions worked out even better than expected. I have a little padlock icon near one corner of the field. It locks and unlocks the field in question, to prevent accidental erasures. Normally, the field will be locked when I am reading its contents.

Cloning cards

2010-11-17 Thread Joe Lewis Wilkins
A quick question before I spend a lot of time assuming it will work: If we create a standalone with a menu item of New Form and then implement it with a handler script in which we do: clone this card, will this create a new card in the Standalone, keeping in mind that this will be done in a

Re: Cloning cards

2010-11-17 Thread Scott Rossi
Hi Joe: If I understand what you're asking, the answer is yes, but the cloned card won't be saved unless your stack exists in a file that's separate from the standalone (standalones can't modify themselves). You'll either need to use the splash screen launcher strategy which involves building a

re:DOWNLOADING REV 4.0.0

2010-11-17 Thread Joseba Aguayo
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

AW: corrupted rev file transforming from Win to Mac

2010-11-16 Thread Tiemo Hollmann TB
Seeing no comments on my topic, helps me to believe that I experienced a really seldom problem, which I hopefully won't encounter twice. Actually I even don't know what was really going on with my file. The explanations where just a theory, which I can't reproduce. Thanks Tiemo

Re: loading a https page on OS X

2010-11-16 Thread paolo mazza
Thank you Trevor. Using Rev 3.5 Mac IDE, I was able to load a page and make a Post from/to an https server just downloading the certificate cacert.pem and inserting this command: *set* the sslCertificates to cacert.pem However, I was not able to accomplish the same tasks using the Linux

Re: loading a https page on OS X

2010-11-16 Thread Shao Sean
did you try? put file:// ADDRESS1 into ADDRESS1 ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread René Micout
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

Re: loading a https page on OS X

2010-11-16 Thread paolo mazza
Yes I tryed it. The address of the file is correct and if I send the command put URL ADDRESS1 into VAR1 i get the file uploaded to the variable VAR1. But, for some reasons, the command *set* the sslCertificates to URL ADDRESS1 does not work and when I post to the https server I get an

Re: LiveCode Personal Banner

2010-11-16 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, Terry Judd wrote : What about creating a personal 'player' application that starts up automatically and is just left running in the background. That's what I do. I have my favourite stack names in a tiny list, displayed by a Call.app loaded in my Mac Startup,

RE:DOWNLOADING REV 4.0.0

2010-11-16 Thread Joseba Aguayo
Hello: Beware with RunRev This is the incredible answer of the RunRev service support : 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,

Re: LiveCode Personal Banner

2010-11-16 Thread Richmond
On 11/16/2010 12:23 PM, Francis Nugent Dixon wrote: Hi from Beautiful Brittany, Terry Judd wrote : What about creating a personal 'player' application that starts up automatically and is just left running in the background. That's what I do. I have my favourite stack names in a tiny list,

Re: DOWNLOADING REV 4.0.0

2010-11-16 Thread Richmond
On 11/16/2010 12:44 PM, Joseba Aguayo wrote: Hello: Beware with RunRev This is the incredible answer of the RunRev service support : Dear Joseba Aguayo, Thank you for your request. If you are referring to the old DreamCard Revolution Player, it is no longer

Re: DOWNLOADING REV 4.0.0

2010-11-16 Thread Matthias Rebbe
Hi Joseba, you could use Ken Ray´s stackrunner instead http://www.sonsothunder.com/devres/revolution/downloads/StackRunner.htm Regards, Matthia Am 15.11.2010 um 09:23 schrieb Joseba Aguayo: Hello: I have a similar problem. I send an email to supp...@runrev.com, with the question Where

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Fred Moyer
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

Re: LiveCode Personal Banner

2010-11-16 Thread Kevin Miller
On 15/11/2010 23:31, Alex Tweedly a...@tweedly.net wrote: (2) There is no way to distinguish your standalone running on your own machine from your standalone running somewhere else. Any way to detect that it is running on the same machine as the one used to develop the given standalone will

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread René Micout
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 :

Re: loading a https page on OS X

2010-11-16 Thread Shao Sean
set itemdelimiter to / put the filename of this stack into ADDRESS1 -- gives /usr/moo/web/stack.rev put cacert.pem into last item of ADDRESS1 -- gives /usr/moo/web/cacert.pem #put file: ADDRESS1 into ADDRESS1 -- gives file:/usr/moo/web/cacert.pem put file:// ADDRESS1 into ADDRESS1 -- gives

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Jim Sims
On Nov 16, 2010, at 2:30 PM, Fred Moyer wrote: 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? Will a game controller help you? Can a spacebar tap help

Re: DOWNLOADING REV 4.0.0

2010-11-16 Thread Richmond
On 11/16/2010 01:28 PM, Matthias Rebbe wrote: Hi Joseba, you could use Ken Ray´s stackrunner instead http://www.sonsothunder.com/devres/revolution/downloads/StackRunner.htm Regards, Matthia Thanks: I have just downloaded all the versions of StackRunner (2.0 and 1.3) to add to my special

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Richmond
On 11/16/2010 05:12 PM, Jim Sims wrote: On Nov 16, 2010, at 2:30 PM, Fred Moyer wrote: 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? Will a game

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Jim Sims
On Nov 16, 2010, at 4:36 PM, Richmond wrote: Nostromo gamepad he cackled manically for the 45th time . . . Could you explain what you mean? I have no idea what you are talking about. sims ___ use-revolution mailing list

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Richmond
On 11/16/2010 05:41 PM, Jim Sims wrote: On Nov 16, 2010, at 4:36 PM, Richmond wrote: Nostromo gamepad he cackled manically for the 45th time . . . Could you explain what you mean? I have no idea what you are talking about. sims Nor have I half the time . . . :) The Belkin Nostromo

Re: netbook crashes?

2010-11-16 Thread J. Landman Gay
On 11/16/10 1:40 AM, Thomas McCarthy wrote: Hello folks, It's been a very long time since I've posted here. I've got a fellow using one of my programs and he says it won't work on one of his computers. To rule out any fault of my scripts, I sent him a simple standalone with one button on it

Functions in the on-rev - LC server script

2010-11-16 Thread paolo mazza
How can I place a function in a on-rev - CGI server script ? I have to port a stack script (with commands and functions) to a .irev text file for the on-rev server . I expected something similar to the following script... ?rev put MyFunction() into tVAR1 put tVAR1 function MyFunction

Re: Create button script won't work - why?

2010-11-16 Thread Bob Sneidar
I wonder if maybe storing the loc of the group, centering it, creating the button, then restoring the loc of the group would do? Stupid LiveCode Tricks you know. Bob On Nov 15, 2010, at 7:28 PM, Bantymom wrote: After reading what Bob said about in vs on I tried the following (after

Re: Sound record not working on school macs

2010-11-16 Thread Bob Sneidar
Or better yet, ~/Documents/Just-Say-It/Audio/. Specific User Independent. Bob On Nov 15, 2010, at 11:55 PM, Scott Morrow wrote: Hello Bill, Just to follow up on Bob's observation. If you create the sound file in a folder that already has permissions for this sort of thing then there

Re: LiveCode Personal Banner

2010-11-16 Thread Bob Sneidar
That's because they are just kids. This target market is seasoned developers looking for a better way to do what they already can. Bob On Nov 16, 2010, at 3:02 AM, Richmond wrote: That's what I do. I have my favourite stack names in a tiny list, displayed by a Call.app loaded in my Mac

Re: LiveCode Personal Banner

2010-11-16 Thread Bob Sneidar
Hey, back then 10 seconds was lightening quick for ANY application to launch! I can remember waiting a minute or more for Photoshop. Bob On Nov 16, 2010, at 6:06 AM, Richard Gaskin wrote: Kevin Miller wrote: I'm leaning towards shortening the banner time to 5 seconds. That would be a

Re: loading a https page on OS X

2010-11-16 Thread paolo mazza
I did exacly what you wrote here. I got ADDRESS1 = file:///home/neol/public_html/cgi-bin/(...)/stacks/cacert.pem Then, in order to check the script, I uploaded the content of this file into the variable VAR1 with the command: put URL ADDRESS1 into VAR1.. and it worked fine!!! However, even if

Re: LiveCode Personal Banner

2010-11-16 Thread Richmond
On 11/16/2010 06:46 PM, Bob Sneidar wrote: That's because they are just kids. This target market is seasoned developers looking for a better way to do what they already can. Bob I was not replying to some question about what RR/LC's target market might or might not be. I was replying to

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Bob Sneidar
On that note, I remember reporting that in certain situations a fast mouse click was not seen by (then) RunRev. They are probably related. BTW, do you have any kind of virtual machine software running? It occurs to me that if something like Parallels is running, they install special drivers in

Re: Functions in the on-rev - LC server script

2010-11-16 Thread Devin Asay
On Nov 16, 2010, at 9:40 AM, paolo mazza wrote: How can I place a function in a on-rev - CGI server script ? I have to port a stack script (with commands and functions) to a .irev text file for the on-rev server . I expected something similar to the following script... ?rev put

Re: LiveCode Personal Banner

2010-11-16 Thread Richmond
On 11/16/2010 06:53 PM, Bob Sneidar wrote: Hey, back then 10 seconds was lightening quick for ANY application to launch! I can remember waiting a minute or more for Photoshop. Bob I cannot get upset about a 10 second wait; as it takes about 4 minutes for my Linux box to boot and login, and

Re: Functions in the on-rev - LC server script

2010-11-16 Thread Mike Bonner
Define the functions first. ?rev function myFunction put 1 + 1 into var2 return var2 end myFunction put myFunction() into var1 put var1 ? On Tue, Nov 16, 2010 at 9:40 AM, paolo mazza mazzapaoloit...@gmail.comwrote: How can I place a function in a on-rev - CGI server script ? I have to port a

Re: LiveCode Personal Banner

2010-11-16 Thread Bob Sneidar
Sorry if I sounded snobby Richmond. Not my intent. I was just saying that I don't think the point about telling too much about a developer environment to people who already show aptitude for the skill is a valid one for the reason stated. Bob On Nov 16, 2010, at 8:56 AM, Richmond wrote:

Re: DOWNLOADING REV 4.0.0

2010-11-16 Thread Joseba Aguayo
Thanks Matthias. Are you in the RunRev support team? Perhaps NO, but you solve the problem. (The RunRev support team create problems) Eskerrik asko Matthias. Un saludo. Joseba Aguayo Fernández (jagu...@telur.es) On Nov 16, 2010, at 6:01 PM, use-revolution-requ...@lists.runrev.com wrote: Hi

Re: Functions in the on-rev - LC server script

2010-11-16 Thread paolo mazza
Thank you Devin, that's interesting. So, if I move all the functions and all the commands (transformed in functions) of my script before the main command the script of my stack should work also in the on-rev server. I will give it a try. Thanks a lot Paolo On Tue, Nov 16, 2010 at 5:59 PM,

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Scott Rossi
The Nostromo (and pretty much every other input device) is now seriously outdated. http://www.plxwave.com/ Scott Rossi Creative Director Tactile Media, UX Design On Nov 16, 2010, at 8:01 AM, Richmond richmondmathew...@gmail.com wrote: The Belkin Nostromo Gamepad is a USB gamepad that I use

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Richmond
On 11/16/2010 07:23 PM, Scott Rossi wrote: The Nostromo (and pretty much every other input device) is now seriously outdated. At 48 the same might be said about myself . . . :) Somebody missing the point, again: what I meant was that there is a whole plethora of USB devices on the market

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Richmond
On 11/16/2010 07:23 PM, Scott Rossi wrote: The Nostromo (and pretty much every other input device) is now seriously outdated. http://www.plxwave.com/ How come this is NOT all over the new channels? If this really works it makes all those USB devices look fairly pointless; so how come the

Re: LiveCode Personal Banner

2010-11-16 Thread Peter Haworth
I'd be happy with that too. Pete Haworth On Nov 16, 2010, at 6:06 AM, Richard Gaskin wrote: 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

Re: Audio Triggering + Mouse Event latency

2010-11-16 Thread Scott Rossi
Recently, Richmond wrote: Somebody missing the point, again: what I meant was that there is a whole plethora of USB devices on the market which can deliver a keyDown signal to a RR/LC stack. And yet somebody else missing the greater point: humor. Regards, Scott Rossi Creative Director

Re: Functions in the on-rev - LC server script

2010-11-16 Thread Alex Tweedly
Yes, but there is no need to transform handlers (commands) into functions. You can have handlers in .irev too, so long as they are defined before they are used. -- Alex. On 16/11/2010 17:17, paolo mazza wrote: Thank you Devin, that's interesting. So, if I move all the functions and all the

<    1   2   3   4   5   6   7   8   9   10   >