Re: how to transfer icon from "metaCard comptatible icons" to "this stack"

2006-12-15 Thread André.Bisseret

Yeaah ! very nice :-)
Éric and you make me feel that actually I should spend time exploring  
Rev more systematically !
But, you know,  I tend to learn only when I get problems ! That's why  
this list is really vital for "amateurs" like me !


Thanks a lot Devin

Best regards from Grenoble
André


Le 14 déc. 06 à 20:49, Devin Asay a écrit :


André,

You may also do the following:

Development Menu > Image Library.

Select the Images tab.

Click on the image you want in your stack.

Click the Place Image button.

Devin

On Dec 14, 2006, at 6:34 AM, Eric Chatonet wrote:


Bonjour André,

1. Show UI elements in lists
2. Go to the App browseer
3. Locate the revIcons stack that has a lot of substacks.
4. Copy in your stack the ones you use from revCompatibilityIcons 1

:-)

Le 14 déc. 06 à 14:07, André.Bisseret a écrit :


Hi,
For navigation buttons in a stack I chose icons (arrows etc) in  
the inspector pane  "MetaCard Compatible icons". All is OK with  
Runrev.


But, the icons do not appear when I run the stack with Revolution  
player or StackRunner (and I suppose it would be the same with a  
standalone).


I suppose the solution is to get these icon in the "This stack"  
pane, in order to be able to choose it from there, but I don't  
know how to export  from "MetaCard Compatible icons" pane to  the  
"This stack" pane.


I thougt I just had to use copy and paste, but infortunately it  
seems not possible to select an icon in order to copy it ; the  
pane disappears as soon as I click on any icon (and the icon of  
the btn is set to it).


How could I import icons from the metacard compatible icons (or  
standard icons) in the stack pane ?


I searched the list' archives but I did not find any precise answer

Thanks a lot in advance for a solution

Best regards from Grenoble
André
___
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




Best Regards from Paris,
Eric Chatonet
- 
-

http://www.sosmartsoftware.com/[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



Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

___
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: Touchscreen Hardware

2006-12-15 Thread [EMAIL PROTECTED]
Hi Dave,

we used Touchscreen Hardware with toolbook and vb.
Any Touchscreen driver I know maps the touch of the user on the screen to the 
mouse signal of the OS
=> the touch is like the click of the mouse (mousedown mouseup xpos and ypos) 
and your runrev program gets the signal like any mousesignal - this is my 
experience. In most cases you can use the touchscreen and the mouse simulaneous 
(but of course the last used gets the control).

You just have to be careful about the accuracy of the users in clicking  ( a 
tolerance of 30 pixel min in x and y direction should be handled through your 
program or the objects to touch on the screen (buttons ...) should be bigger 
than normal.

Avoid to hyperlink small chunks of text as link in fields - very hard to use on 
touchscreens.

Regards, Franz
Mit freundlichen Grüßen
Franz Böhmisch

[EMAIL PROTECTED]
http://www.animabit.de
GF Animabit Multimedia Software GmbH
Am Sonnenhang 22
D-94136 Thyrnau
Tel +49 (0)8501-8538
Fax +49 (0)8501-8537
___
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: A Problem with Return in a Field

2006-12-15 Thread William de Smet

Hi Charles,

I don't know if it solves your problem but I use:
on returnInField
  put line 1 of me into me
  answer error "Only one word allowed!" with "OK"
end returnInField

on closeField
  if return is in me then
returnInField
  end if
  pass closefield
end closefield

on keyDown pKey
 if charToNum(pKey) <> 32 then pass keydown
 answer error "Only one word allowed!" with "OK"
end keyDown

In this I force the user to use just one word!

greetings,

WIlliam de Smet

2006/12/15, Charles Szasz <[EMAIL PROTECTED]>:

Despite the suggestions made to correct this problem, the problem
still exists. I tried the suggestion of changing the field of the
field so that only one line could fit.  i changed the fields to a
field height of 18 and a text height of 14 with and without Don't
Wrap option turn on and off. But that only works on a sporadic basis.
The numbers will disappear to the left and pressing the Return does
nothing to restate the numbers or advance to the next field. You have
to use the Delete to make the two digit number appear but pressing
the Return again makes the number disappear again. This occurred in
one of five edit fields with all having the same dimensions and
options in the Inspector.
This is the script:

on keyDown whichKey
   if whichKey is a number then
 if the selection is not empty then delete the selection
 if the length of me < 2 then
   pass keyDown
 else
   beep
 end if
   end if
end keyDown


I also tried another suggestion that forces a Return to tab but that
disable the script for allowing only two digits numbers in the
script. So, it really lo


Charles Szasz
[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






--
ICT-coördinator
Herman Broerenschool
2612 SP Delft
015-2141066
http://www.hermanbroerenschool-delft.nl
___
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


launch doc with app

2006-12-15 Thread jbv
Hi list,

Is there a quick way to locate (from a Rev stack on a CD-Rom
for instance) an application on a end-user HD (Acrobat Reader
for instance) and to launch a pdf file on the CD-Rom with the
app on the HD ?

Thanks,
JB

___
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: Rev CGI and SQL injection attacks

2006-12-15 Thread Dave Cragg

(A resend. I used the wrong address before.)

On 14 Dec 2006, at 22:53, Shao Sean wrote:


Make sure to escape the following characters as well:

NULL (ascii 0)
\n   (newline)
\r   (carriage return)
\
'
"
CTRL-Z
_
%

You may also want to look at escaping [TAB] as well


Thanks for the list. I've been searching on the net too, and see a  
variety of techniques mentioned. I still don't fully understand why  
some characters need to be esacaped if you first escape "\" and then  
single quotes. Perhaps my mind isn't devious enough. :)


Cheers
Dave
___
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: Rev CGI and SQL injection attacks

2006-12-15 Thread Andre Garzia

Shao Sean,

thanks too, this list is also useful to me!!!

cheers
andre
On Dec 14, 2006, at 8:53 PM, Shao Sean wrote:


Make sure to escape the following characters as well:

NULL (ascii 0)
\n   (newline)
\r   (carriage return)
\
'
"
CTRL-Z
_
%

You may also want to look at escaping [TAB] as well

___
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: launch doc with app

2006-12-15 Thread Ken Ray
On 12/15/06 9:23 AM, "jbv" <[EMAIL PROTECTED]> wrote:

> Hi list,
> 
> Is there a quick way to locate (from a Rev stack on a CD-Rom
> for instance) an application on a end-user HD (Acrobat Reader
> for instance) and to launch a pdf file on the CD-Rom with the
> app on the HD ?

What platform(s) is this for?

Ken Ray
Sons of Thunder Software, Inc.
Web site: http://www.sonsothunder.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


Re: launch doc with app

2006-12-15 Thread Geir A. Myrestrand

jbv wrote:

Hi list,

Is there a quick way to locate (from a Rev stack on a CD-Rom
for instance) an application on a end-user HD (Acrobat Reader
for instance) and to launch a pdf file on the CD-Rom with the
app on the HD ?

Thanks,
JB


You probably want to load the document with the application that is 
currently assigned to handle this type of documents.


On Windows:

start 

-or-



On Linux with KDE:

kfmclient exec 

This starts the appropriate KDE application for the 's MIME 
type.  This follows the settings for that MIME-type in the KDE file 
associations config module.


If you need it to open on a particular display, then pre-pend DISPLAY=:0 
 for example.


Replace  above with the path to the document you want to 
launch with the associated viewer.


Use whatever mechanism Revolution provides to launch external commands.

PS!
Do not under any circumstances assume that Adobe Acrobat or Adobe Reader 
is used to view the PDF files.


--

Geir A. Myrestrand
___
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


Commands out of sync, you can´t run this comman d now

2006-12-15 Thread Horst

Hi There,

Do you know this message? And if so, what does it mean?

best regards

Horst
-- 
View this message in context: 
http://www.nabble.com/Commands-out-of-sync%2C-you-cant-run-this-command-now-tf2828066.html#a7894721
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: Commands out of sync, you can ´ t run this command now

2006-12-15 Thread Ken Ray
On 12/15/06 10:33 AM, "Horst" <[EMAIL PROTECTED]> wrote:

> 
> Hi There,
> 
> Do you know this message? And if so, what does it mean?

It's a message you get from SQL (I've seen it from mySQL). See:

http://dev.mysql.com/doc/refman/5.0/en/commands-out-of-sync.html

The only thing you can do (AFAIK) is close your connection to the server and
then reopen it and try again.


Ken Ray
Sons of Thunder Software, Inc.
Web site: http://www.sonsothunder.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


Re: Commands out of sync, you can ´ t run thi s command now

2006-12-15 Thread Horst

Hi Ken,

Thanks for answering :-))

You wrote:
The only thing you can do (AFAIK) is close your connection to the server and
then reopen it and try again.

Well, that´s what I have done by closing RunRev. Than, I tried again, same
message. So I uninstalled RunRev, deleted all RunRev Folders, to be sure,
that nothing is working som ewhere behind. Installed RunRev again and... 
... YES, the same message :-(

Must be something else I think

best regards 
Horst


-- 
View this message in context: 
http://www.nabble.com/Commands-out-of-sync%2C-you-cant-run-this-command-now-tf2828066.html#a7896415
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: Commands out of sync, you can ´ t run t his command now

2006-12-15 Thread chris bohnert

Hi Horst,

If you'll post some of the code you're having trouble with it will help
track down your issue.  I see this error message when trying to query a
connection thats not open or to close one thats already closed.

--
cb

On 12/15/06, Horst <[EMAIL PROTECTED]> wrote:



Hi Ken,

Thanks for answering :-))

You wrote:
The only thing you can do (AFAIK) is close your connection to the server
and
then reopen it and try again.

Well, that´s what I have done by closing RunRev. Than, I tried again, same
message. So I uninstalled RunRev, deleted all RunRev Folders, to be sure,
that nothing is working som ewhere behind. Installed RunRev again and...
... YES, the same message :-(

Must be something else I think

best regards
Horst


--
View this message in context:
http://www.nabble.com/Commands-out-of-sync%2C-you-cant-run-this-command-now-tf2828066.html#a7896415
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



___
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: Commands out of sync, you can ´ t run this command now

2006-12-15 Thread Ken Ray
On 12/15/06 12:00 PM, "Horst" <[EMAIL PROTECTED]> wrote:

> 
> Hi Ken,
> 
> Thanks for answering :-))
> 
> You wrote:
> The only thing you can do (AFAIK) is close your connection to the server and
> then reopen it and try again.
> 
> Well, that´s what I have done by closing RunRev. Than, I tried again, same
> message. So I uninstalled RunRev, deleted all RunRev Folders, to be sure,
> that nothing is working som ewhere behind. Installed RunRev again and...
> ... YES, the same message :-(
> 
> Must be something else I think

I guess the only thing left to do is restart mySQL (either by restarting the
server or at the command line) unless someone else has a better idea...


Ken Ray
Sons of Thunder Software, Inc.
Web site: http://www.sonsothunder.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


Re: Commands out of sync, you can ´ t run thi s command now

2006-12-15 Thread Horst

Hi friends,

I do (as possible) what ever you want me to do!

It happens here:

 on closefield
   
   GLOBAL kundennummer, DB_ID
  ### Land Aendern #
   put the text of me into temp3
   put "Select * from land_kz where Kfz_Kennz = '" & temp3 & "'" into
SQL_Befehl
 revexecuteSQL DB_ID, SQL_Befehl

##

I hope, it helps.

best regards

Horst

-- 
View this message in context: 
http://www.nabble.com/Commands-out-of-sync%2C-you-cant-run-this-command-now-tf2828066.html#a7897154
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: EuroRevCon web gallery

2006-12-15 Thread Ian Wood



I've finally updated the conference gallery, including lots of photos  
from the tour afterwards, although there are a couple more panoramas  
to add.


Ian
___
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: EuroRevCon web gallery

2006-12-15 Thread Stephen Barncard
nice photography. Like that W I D E angle lens. (I do that too for 
group shots.)

The conference area looks so HUGE.

sqb





I've finally updated the conference gallery, including lots of 
photos from the tour afterwards, although there are a couple more 
panoramas to add.


Ian


--
stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -
___
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: Commands out of sync, you can ´ t run th is command now

2006-12-15 Thread Horst

Hi Ken,

You say:

I guess the only thing left to do is restart mySQL (either by restarting the
server or at the command line) unless someone else has a better idea...

Ok, But How? shut down the PC and start again? Well, I´m happy, that mySQL
is running and I never thought about restarting 

Thank you

Horst

-- 
View this message in context: 
http://www.nabble.com/Commands-out-of-sync%2C-you-cant-run-this-command-now-tf2828066.html#a7899560
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: Commands out of sync, you can ´ t run this command now

2006-12-15 Thread Ken Ray
On 12/15/06 3:31 PM, "Horst" <[EMAIL PROTECTED]> wrote:

> 
> Hi Ken,
> 
> You say:
> 
> I guess the only thing left to do is restart mySQL (either by restarting the
> server or at the command line) unless someone else has a better idea...
> 
> Ok, But How? shut down the PC and start again?

Yes, the PC that is actually running mySQL server (i.e. not a client PC that
is simply *accessing* mySQL).

Another way to do it is if you installed mySQL as a service under Windows
that you can open up the Services application (Control Panel ->
Administrative Tools -> Services), find the mySQL application in the list of
services, right-click on it, and choose "Restart" from the context menu.

Ken Ray
Sons of Thunder Software, Inc.
Web site: http://www.sonsothunder.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


RE: Help. How do you insert a custom icon into your standalone?

2006-12-15 Thread Mark Powell
Does building icons for XP automatically mean they are compatible with
Windows 2000? 

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


Toolbars: iCal and other "bottom feeders"

2006-12-15 Thread Richard Gaskin
While Apple's HIG talks about toolbars being at the top of the window, I 
noticed that the toolbar in their iCal is at the bottom of the window.


Not only do I like that position, but it's also easy for us Rev 
developers to do since we don't yet have true toolbar support in the 
engine (I know there are many clever workarounds, but you know what I mean).


So I'm interested in taking a look at other apps that have their 
toolbars along the bottom of the window -- are there many?  Which ones?


--
 Richard Gaskin
 Fourth World Media Corporation
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.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


Bug with revQueryDatabase 2.7.4 build 291

2006-12-15 Thread Robert Mann
I am having a problem with revQueryDatabase returning a number when it
should not be I think?
In the following sql statement if there is no data in column
wt_springcalc.year_model='" &
gyearmodel & "' curID should not be a number? and it is


put "SELECT * FROM wt_springcalc WHERE wt_springcalc.year_model='" &
gyearmodel & "' and wt_springcalc.company_id='1'" into theSQL
put revQueryDatabase(dbID2, theSQL) into curID
put curID into fld "curIDnum"

IF curID is a number THEN
put revDatabaseColumnNamed(curID,"fr_mx_multiplier") into fld "frmxm1"

ELSE
put curID into fld "error"
exit mouseUp

END IF

can someone test a sql statement that they know should return on non-number
to the revQueryDatabase and see what you get



Thanks
Robert Mann


___
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: Toolbars: iCal and other "bottom feeders"

2006-12-15 Thread Mark Smith
The Apple Address Book has buttons at the top and bottom, Garage Band  
at the bottom, also Google Earth.


Best,

Mark

On 15 Dec 2006, at 23:06, Richard Gaskin wrote:

While Apple's HIG talks about toolbars being at the top of the  
window, I noticed that the toolbar in their iCal is at the bottom  
of the window.


Not only do I like that position, but it's also easy for us Rev  
developers to do since we don't yet have true toolbar support in  
the engine (I know there are many clever workarounds, but you know  
what I mean).


So I'm interested in taking a look at other apps that have their  
toolbars along the bottom of the window -- are there many?  Which  
ones?


--
 Richard Gaskin
 Fourth World Media Corporation
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.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


Is "../foldername" a sufficient reference

2006-12-15 Thread Kresten Bjerg
I wonder, whether there is a simple short way scripting for  a standalone in 
MacFAT & Linux ( where standalone consists of three files) to identify the 
parent folder, i.e. just naming it, without refering to grandparent and 
grandgrandparents etc -. We see  " ../foldername".  often in the documentation, 
but I dont know, if that supposes the scripter to fill in series of parents 
above, or the "../" can be used literally?
Best regards
Kresten

___
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


Setting the system date to Option fields

2006-12-15 Thread Charles Szasz


I have three option menus: year, month (expressed in numerical form)  
and day expressed in numerical form). How can I set the date for the  
year, month and day to the system date?


Charles Szasz
[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


getting U3 serial number on Mac OS X

2006-12-15 Thread Phil Davis

Hi List,

I decided to find a way to get a U3 drive's serial number on Mac (OS X only). 
Sorry, I don't have a method for Linux but would welcome anyone's contribution 
in this regard.


Here's what I came up with:



function u3SerialNumbers
  # Return a return-delimited list of all U3 device serial
  # numbers currently known to the system.

  switch the platform

  case "Win32"
return $U3_DEVICE_SERIAL
break

  case "MacOS"
set the itemDelimiter to "."
if the systemVersion < 10 then return empty

-- prep
put 0 into x
put empty into tSerialNumberList
put shell("system_profiler -detailLevel mini") into tProfile

-- get U3 serial numbers
repeat
  put lineOffset("U3 smart drive:",tProfile) into xStart
  if xStart = 0 then exit repeat

  put lineOffset("Serial Number:",tProfile,xStart) + xStart into xSerNum
  put last word of line xSerNum of tProfile & cr after tSerialNumberList
  delete line 1 to xSerNum of tProfile
end repeat

delete last char of tSerialNumberList
return tSerialNumberList
break

  default
return empty
break
  end switch
end u3SerialNumbers


Thanks -
Phil Davis
___
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