Inefficient code

2009-06-27 Thread Bert Shuler
I have written this code a few different ways. Each seems to be  
equally inefficient. I am attempting to compare to images, pixel by  
pixel, and record the differences.


ON mouseUp pMouseBtnNo
put 0 into c
set the startvalue of scrollbar Progress to 0
set the endvalue of scrollbar Progress to the length of imagedata  
of image Alpha

put the imagedata of image Alpha into idataalpha
put the imagedata of image Beta into idatabeta
REPEAT FOR each char myChar in idataalpha
set the thumbposition of scrollbar Progress to c
IF myChar is not  char (c) of idatabeta THEN
put c  char (c) of idatabeta  return after hAll
END IF
put c+1 into c
END repeat
put hAll into field diff
END mouseUp

It takes many minutes to process a 200x200 image. I want this code to  
eventually compare full screen-captures, so if there is any way to  
speed it up, I am open for advice.


Thanks

Bert
___
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


Inefficient code

2009-06-26 Thread Bert Shuler
I have written this code a few different ways. Each seems to be  
equally inefficient. I am attempting to compare to images, pixel by  
pixel, and record the differences.


ON mouseUp pMouseBtnNo
put 0 into c
set the startvalue of scrollbar Progress to 0
set the endvalue of scrollbar Progress to the length of imagedata  
of image Alpha

put the imagedata of image Alpha into idataalpha
put the imagedata of image Beta into idatabeta
REPEAT FOR each char myChar in idataalpha
set the thumbposition of scrollbar Progress to c
IF myChar is not  char (c) of idatabeta THEN
put c  char (c) of idatabeta  return after hAll
END IF
put c+1 into c
END repeat
put hAll into field diff
END mouseUp

It takes many minutes to process a 200x200 image. I want this code to  
eventually compare full screen-captures, so if there is any way to  
speed it up, I am open for advice.


Thanks

Bert
___
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: How to click the mouse on another application

2009-01-15 Thread Bert Shuler

Then my guess is this would require an external.
What would be the best mechanism to request a quote for the  
development of an external?


SendClick (h,v)
SendKeys (h,v) string to send (including Alt+F style key combinations)

Should would correctly on OS X, Win32, and linux.

Thanks

Bert



On Jan 8, 2009, at 2:23 PM, Generic Email wrote:


I am using:
set the screenMouseLoc to (h,v)

to move the mouse over a button on another application.

Now I need to Click the mouse.

The transcript click function does not seem to actually click the  
mouse, but instead simulate a mouse click only in a rev stack.


Any help would be appreciated.

Bert


___
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


Standalone - Using stack as DB

2008-07-31 Thread Bert Shuler

I have a main stack with 2 sub stacks.
I use the sub stacks as a db, flipping through the cards and saving  
them on changes.

Now when making a standalone, the save does not save the sub-stack data.
What is the best way to use substacks for data?

Thanks

___
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: Standalone - Using stack as DB

2008-07-31 Thread Bert Shuler

That seems to have done it! Thanks so much.


On Jul 31, 2008, at 10:44 AM, Eric Chatonet wrote:


Bonjour Bert,

Le 31 juil. 08 à 16:24, Bert Shuler a écrit :


I have a main stack with 2 sub stacks.
I use the sub stacks as a db, flipping through the cards and saving  
them on changes.
Now when making a standalone, the save does not save the sub-stack  
data.

What is the best way to use substacks for data?


I assume that you did not check the 'Move substacks into individual  
stackfiles' box in the stacks pane of Standalone Application Settings.
For this reason, your substacks are part of the app and a app can be  
saved.

You can only save a stack that is not included in your app.

Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



___
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


runrev adds http header for free?

2008-07-18 Thread Bert Shuler

I wanted to write a quick http server, mostly just to learn rev.

It was very easy, and I am happy so far, but I have a mystery I hope  
someone can help me with.

My code is here: http://www.mediafire.com/?jbldjj0ogck

 It seems that when I write the data back out to to the socket,  
runrev adds a http header on its own, and I cant add the one I want.

Really weird.

When I have it execute this perl script, you can see the problem:

#!/usr/bin/perl

 print Content-type: text/html\n\n;
 print tt\n;
 foreach $key (sort keys(%ENV)) {
print $key = $ENV{$key}p;
 }

Also, I am open to advice on my coding, but please if it is bashing  
me, send that directly to me at [EMAIL PROTECTED]


Thanks



___
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: runrev adds http header for free?

2008-07-18 Thread Bert Shuler

ok, I thought that was only used when using the URL keyword.
I am simply writing to a socket.
How would rev even know I was intending to write http?


On Jul 18, 2008, at 10:02 AM, Mark Schonewille wrote:


Hi Bert,

You can set the httpHeaders property. E.g. the User-Agent. There's  
lots of information in the list archives and of course you need to  
check the docs.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html 
 for more info.


On 18 jul 2008, at 15:57, Bert Shuler wrote:


I wanted to write a quick http server, mostly just to learn rev.

It was very easy, and I am happy so far, but I have a mystery I  
hope someone can help me with.

My code is here: http://www.mediafire.com/?jbldjj0ogck

It seems that when I write the data back out to to the socket,  
runrev adds a http header on its own, and I cant add the one I want.

Really weird.

When I have it execute this perl script, you can see the problem:

#!/usr/bin/perl

print Content-type: text/html\n\n;
print tt\n;
foreach $key (sort keys(%ENV)) {
  print $key = $ENV{$key}p;
}

Also, I am open to advice on my coding, but please if it is bashing  
me, send that directly to me at [EMAIL PROTECTED]


Thanks


___
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


runrev adds http header for free?

2008-07-18 Thread Bert Shuler

I wanted to write a quick http server, mostly just to learn rev.

It was very easy, and I am happy so far, but I have a mystery I hope  
someone can help me with.

My code is here: http://www.mediafire.com/?jbldjj0ogck

It seems that when I write the data back out to to the socket, runrev  
adds a http header on its own, and I cant add the one I want.

Really weird.

When I have it execute this perl script, you can see the problem:

#!/usr/bin/perl

print Content-type: text/html\n\n;
print tt\n;
foreach $key (sort keys(%ENV)) {
   print $key = $ENV{$key}p;
}

Also, I am open to advice on my coding, but please if it is bashing  
me, send that directly to me at [EMAIL PROTECTED]


Thanks



___
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: runrev adds http header for free?

2008-07-18 Thread Bert Shuler
The header written by perl shows as html in the browser, because rev  
somehow added a header.



On Jul 18, 2008, at 10:21 AM, Mark Schonewille wrote:


Hi Bert,

Maybe I don't understand what is going on without looking at your  
code. At which point do you see unwanted http headers? When you  
write data to perl or when you read the data into rev? Is it  
possible that Perl adds the headers, since you're using print  
Content-type: text/html\n\n;? Maybe you want print Content- 
type: text/plain\n\n;.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html 
 for more info.


On 18 jul 2008, at 16:05, Bert Shuler wrote:


ok, I thought that was only used when using the URL keyword.
I am simply writing to a socket.
How would rev even know I was intending to write http?



___
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: runrev adds http header for free?

2008-07-18 Thread Bert Shuler

Mark, I think your on to something.
I think my web browser is not recognizing my header, and live http  
headers is lieing to me.


I ran this test, and it seems to disprove the free runrev header idea.


telnet 127.0.0.1 8080
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET /env.pl HTTP/1.1
Content-type: text/html

tt
Apple_PubSub_Socket_Render = /tmp/launch-JAC787/RenderpCOMMAND_MODE  
= legacypDISPLAY = /tmp/launch-bf8cAs/:0pHOME = /Users/ 
bshulerpLOGNAME = bshulerpPATH = /usr/bin:/bin:/usr/sbin:/ 
sbinpPWD = /Applications/Revolution Studio/2.9.0- 
gm-1pSECURITYSESSIONID = 620680pSHELL = /bin/bashpSHLVL =  
1pSSH_AUTH_SOCK = /tmp/launch-YZYPQ5/ListenerspTMPDIR = /var/ 
folders/B1/B1LJiAyjGNuOhekZm3xRKE+++TI/-Tmp-/pUSER = bshulerp_ = / 
Users/bshuler/Sites//env.plp__CF_USER_TEXT_ENCODING =  
0x1F5:0:0pConnection closed by foreign host.



On Jul 18, 2008, at 11:16 AM, Mark Smith wrote:

Could it be that the browser is expecting 2 crlfs after the header,  
while 2 lfs are all that's being written?


Even if the perl script is producing crlfs, Rev tends to convert  
crlfs to lfs unless you specifically prevent it.


Perhaps it would help if you inserted the line:

replace lf with crlf in buffer

before writing it out to the socket.

I'm fairly sure that Rev would not be adding spurious headers - I  
think it's only  libUrl that would have that capability, and I'm  
sure it's better behaved than that, even if it's installed in your  
cgi setup.


Best,

Mark

On 18 Jul 2008, at 15:27, Bert Shuler wrote:
The header written by perl shows as html in the browser, because  
rev somehow added a header.



On Jul 18, 2008, at 10:21 AM, Mark Schonewille wrote:


Hi Bert,

Maybe I don't understand what is going on without looking at your  
code. At which point do you see unwanted http headers? When you  
write data to perl or when you read the data into rev? Is it  
possible that Perl adds the headers, since you're using print  
Content-type: text/html\n\n;? Maybe you want print Content- 
type: text/plain\n\n;.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html 
 for more info.


On 18 jul 2008, at 16:05, Bert Shuler wrote:


ok, I thought that was only used when using the URL keyword.
I am simply writing to a socket.
How would rev even know I was intending to write http?



___
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



___
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: runrev adds http header for free?

2008-07-18 Thread Bert Shuler
That was the problem. Once I get the CGI gateway working ill post it  
again... just incase someone finds it useful.


Thanks all!

Bert


On Jul 18, 2008, at 11:34 AM, Bert Shuler wrote:


Mark, I think your on to something.
I think my web browser is not recognizing my header, and live http  
headers is lieing to me.


I ran this test, and it seems to disprove the free runrev header idea.


telnet 127.0.0.1 8080
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET /env.pl HTTP/1.1
Content-type: text/html

tt
Apple_PubSub_Socket_Render = /tmp/launch-JAC787/ 
RenderpCOMMAND_MODE = legacypDISPLAY = /tmp/launch-bf8cAs/: 
0pHOME = /Users/bshulerpLOGNAME = bshulerpPATH = /usr/bin:/ 
bin:/usr/sbin:/sbinpPWD = /Applications/Revolution Studio/2.9.0- 
gm-1pSECURITYSESSIONID = 620680pSHELL = /bin/bashpSHLVL =  
1pSSH_AUTH_SOCK = /tmp/launch-YZYPQ5/ListenerspTMPDIR = /var/ 
folders/B1/B1LJiAyjGNuOhekZm3xRKE+++TI/-Tmp-/pUSER = bshulerp_  
= /Users/bshuler/Sites//env.plp__CF_USER_TEXT_ENCODING =  
0x1F5:0:0pConnection closed by foreign host.



On Jul 18, 2008, at 11:16 AM, Mark Smith wrote:

Could it be that the browser is expecting 2 crlfs after the header,  
while 2 lfs are all that's being written?


Even if the perl script is producing crlfs, Rev tends to convert  
crlfs to lfs unless you specifically prevent it.


Perhaps it would help if you inserted the line:

replace lf with crlf in buffer

before writing it out to the socket.

I'm fairly sure that Rev would not be adding spurious headers - I  
think it's only  libUrl that would have that capability, and I'm  
sure it's better behaved than that, even if it's installed in your  
cgi setup.


Best,

Mark

On 18 Jul 2008, at 15:27, Bert Shuler wrote:
The header written by perl shows as html in the browser, because  
rev somehow added a header.



On Jul 18, 2008, at 10:21 AM, Mark Schonewille wrote:


Hi Bert,

Maybe I don't understand what is going on without looking at your  
code. At which point do you see unwanted http headers? When you  
write data to perl or when you read the data into rev? Is it  
possible that Perl adds the headers, since you're using print  
Content-type: text/html\n\n;? Maybe you want print Content- 
type: text/plain\n\n;.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html 
 for more info.


On 18 jul 2008, at 16:05, Bert Shuler wrote:


ok, I thought that was only used when using the URL keyword.
I am simply writing to a socket.
How would rev even know I was intending to write http?



___
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



___
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


GET URL with cookies

2008-07-10 Thread Bert Shuler

I have a site which I need to authenticate to. I do this:

put URL http://site.com/login?uid=URLEncode([EMAIL PROTECTED])   
password=  URLEncode(mypass) into field html


The host site validates my password, sets a cookie, and redirects me  
to the front page, which because I have a validated cookie, shows me I  
am logged in. This works fine in a browser, but it seem put URL is  
doing the redirect, but dropping the cookie. So I never actually get  
logged in.


My question is this, can I make put URL keep the cookies? Or, as an  
alternate solution, can I make the revBrowser upload files with zero  
user intervention?


Any pointers will be appreciated.

___
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: GET URL with cookies

2008-07-10 Thread Bert Shuler

That is exactly the right direction I needed to go. Thanks.
I am putting  the cookie found by your routine into httpHeaders
It still isnt working, but I feel like this is the right path. I need  
to validate that the cookie is actually being sent.

I wish there was a way to watch the http traffic go by.

Bert

On Jul 10, 2008, at 10:46 AM, Trevor DeVore wrote:


On Jul 10, 2008, at 10:10 AM, Bert Shuler wrote:


I have a site which I need to authenticate to. I do this:

put URL http://site.com/login?uid=URLEncode([EMAIL PROTECTED])   
password=  URLEncode(mypass) into field html


The host site validates my password, sets a cookie, and redirects  
me to the front page, which because I have a validated cookie,  
shows me I am logged in. This works fine in a browser, but it seem  
put URL is doing the redirect, but dropping the cookie. So I  
never actually get logged in.


My question is this, can I make put URL keep the cookies? Or, as  
an alternate solution, can I make the revBrowser upload files with  
zero user intervention?


Any pointers will be appreciated.


Hi Bert,

I think you have to handle cookies manually. I just did some work  
with cookies yesterday so here are some notes based on that  
experience.


I'm using 'post' rather than 'put' but after executing the 'post'  
command I used libURLLastRHHeaders() to retrieve the header that the  
server sent back. You will find at least one line that starts with  
'Set-Cookie'.


What you are responsible for doing is extracting the cookie from  
that line and creating a 'Cookie' entry in the header you send to  
the server with each request. I put together a handler that takes  
libURLLastRHHeaders(), extracts the cookies and stores them in a  
script local variable (this code is for a library, you could easily  
return the result) that I then assign to 'the httpheaders' property  
before I send a request to the server expecting the cookie. Here is  
what it looks like:


##===

local sCookieHeader


## Parse header returned from a server and create a cookie header  
that can be sent back: Cookie: cookie1;cookie2;cookie3;...

private command  _StoreCookies pHeader
   local theCharNo,theCookieLine,theLineNo,theOffset

   put empty into sCookieHeader
   put 0 into theOffset
   repeat forever
   put lineoffset(Set-Cookie:, pHeader, theOffset) into  
theLineNo

   if theLineNo  0 then
   add theOffset to theLineNo
   put line theLineNo of pHeader into theCookieLine
   delete word 1 of theCookieLine ## Set-Cookie:
   put offset(;, theCookieLine) into theCharNo
   if theCharNo  0 then
   delete char theCharNo to -1 of theCookieLine
   end if
   put theCookieLine  ; after sCookieHeader
   put theLineNo into theOffset
   else
   exit repeat
   end if
   end repeat

   if the last char of sCookieHeader is ; then
   delete the last char of sCookieHeader
   end if

   if sCookieHeader is not empty then
   put Cookie:  before sCookieHeader
   end if

   return empty
end _StoreCookies

##==

Hopefully this helps.

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Developer Resources: http://revolution.bluemangolearning.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


___
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: GET URL with cookies

2008-07-10 Thread Bert Shuler

I found http://www.charlesproxy.com/download_action.php?os=macosx
the trial works well, and shows that cookies are not being sent with  
my requests.


put Cookie: test=mytest;
put sCookieHeader into httpHeaders
put URL http://[EMAIL PROTECTED]password=mypass

seems like that should work, but it does not.

On Jul 10, 2008, at 12:00 PM, Trevor DeVore wrote:


On Jul 10, 2008, at 11:56 AM, Bert Shuler wrote:


That is exactly the right direction I needed to go. Thanks.
I am putting  the cookie found by your routine into httpHeaders
It still isnt working, but I feel like this is the right path. I  
need to validate that the cookie is actually being sent.

I wish there was a way to watch the http traffic go by.


What platform are you on? I'm on OS X use the traffic watcher in  
Interarchy 8 to watch HHTP traffic coming and going from my computer  
while I work with headers. I'm imagine there are some free utilities  
available as well.


Regards,

--
Trevor DeVore
Blue Mango Learning Systems
www.bluemangolearning.com-www.screensteps.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



___
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: GET URL with cookies

2008-07-10 Thread Bert Shuler

Your advice was dead on. Thanks.

On Jul 10, 2008, at 12:26 PM, Trevor DeVore wrote:


On Jul 10, 2008, at 12:23 PM, Bert Shuler wrote:


I found http://www.charlesproxy.com/download_action.php?os=macosx
the trial works well, and shows that cookies are not being sent  
with my requests.


put Cookie: test=mytest;
put sCookieHeader into httpHeaders
put URL http://[EMAIL PROTECTED]password=mypass

seems like that should work, but it does not.


httpHeaders is a property so try:

set the httpHeaders to sCookieHeader

(assuming sCookieHeader has a value)

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Developer Resources: http://revolution.bluemangolearning.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



___
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


matchText, does it really exist?

2008-07-10 Thread Bert Shuler
This code is from the docs, but seems to fail as if matchText is not a  
function.


on mouseUp
  matchText(Goodbye,bye)
end mouseUp

executing at 4:09:47 PM
TypeHandler: can't find handler
Object  Button
LinematchText(Goodbye,bye)
HintmatchText

Any Ideas?

Bert
___
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: matchText, does it really exist?

2008-07-10 Thread Bert Shuler

worked. Thanks for the quick help.

Bert


On Jul 10, 2008, at 4:25 PM, Jan Schenkel wrote:


--- Bert Shuler [EMAIL PROTECTED] wrote:

This code is from the docs, but seems to fail as if
matchText is not a
function.

on mouseUp
  matchText(Goodbye,bye)
end mouseUp

executing at 4:09:47 PM
TypeHandler: can't find handler
Object  Button
LinematchText(Goodbye,bye)
HintmatchText

Any Ideas?

Bert



Hi Bert,

'matchText' is a function, not a command - so use it
like this:
##
on mouseUp
 answer matchText(Goodbye,bye)
end mouseUp
##

Admittedly, the docs for other functions sometimes
contain a 'put xxx' example, whereas the entry for
'matchText' does not.

Jan Schenkel.

Quartam Reports  PDF Library for Revolution
http://www.quartam.com

=
As we grow older, we grow both wiser and more foolish at the same  
time.  (La Rochefoucauld)




___
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: problems with the chatrev server

2008-06-12 Thread Bert Shuler
I have a production linux environment you can use if you like let me 
know


- Original Message 
From: Björnke von Gierke [EMAIL PROTECTED]
To: How to use Revolution use-revolution@lists.runrev.com
Sent: Thursday, June 12, 2008 9:26:51 PM
Subject: problems with the chatrev server

Hi all

Unfortunately there are severe problems with the chatrev server  
(secondary data HD failure, unable to connect to wifi, etc.). After  
lots of tinkering, I can't even get the hardware to start up anymore.

Because of that, the server is currently running from my production  
notebook, until further notice. All registered user names since the  
start of april have been lost, and if you register now, most likely  
that information will be reset again in the near future.

I am sorry for any inconvenience, and will try to get things back to  
normal again as soon as I have slept a bit.

Björnke


-- 

official ChatRev page:
http://chatrev.bjoernke.com

Chat with other RunRev developers:
go stack URL http://homepage.mac.com/bvg/chatrev1.3.rev;

___
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: problems with the chatrev server

2008-06-12 Thread Bert Shuler
oh, and I told you famous last words

(grin)

Bert


- Original Message 
From: Björnke von Gierke [EMAIL PROTECTED]
To: How to use Revolution use-revolution@lists.runrev.com
Sent: Thursday, June 12, 2008 9:26:51 PM
Subject: problems with the chatrev server

Hi all

Unfortunately there are severe problems with the chatrev server  
(secondary data HD failure, unable to connect to wifi, etc.). After  
lots of tinkering, I can't even get the hardware to start up anymore.

Because of that, the server is currently running from my production  
notebook, until further notice. All registered user names since the  
start of april have been lost, and if you register now, most likely  
that information will be reset again in the near future.

I am sorry for any inconvenience, and will try to get things back to  
normal again as soon as I have slept a bit.

Björnke


-- 

official ChatRev page:
http://chatrev.bjoernke.com

Chat with other RunRev developers:
go stack URL http://homepage.mac.com/bvg/chatrev1.3.rev;

___
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