Re: Is libURL required for a "get url..." statement?

2007-02-12 Thread Dave Cragg


On 13 Feb 2007, at 02:28, Derek Bump wrote:

I know that you cannot use commands associated with any Rev Library  
until after the startup handler has finished, but is the following  
command part of the libURL library?


  get url "http://www.mysite.com/";

The reason I ask is because it seems to me that it would not be,  
but is instead built into the engine.


A reasonable assumption, but I'm afraid "get url" does need libUrl  
when used with ftp and http URLs. The same is true for other calls  
using http and ftp urls (load,  post, etc.) and also the cachedUrls()  
function.


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: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins

Thanks, Mark. I should have said that.

Joe Wilkins

On Feb 12, 2007, at 9:29 PM, Mark Swindell wrote:



On Feb 12, 2007, at 8:16 PM, Joe Lewis Wilkins wrote:


1.  Create an object
2.  With that object selected, choose "Group" from the menu or  
ToolBar

3.  Open the object's Property Inspector
4.  Check the "Behave as Background" checkbox or set the  
backgroundBehavior to true

5.  Go to each card and choose "Place Group" from the Object Menu


To each existing card.  The field will appear automatically on  
cards created after the group with background behavior is established.



OR, with a large number of cards, write a script to accomplish the  
above actions.


Joe Wilkins


___
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: Adding a scrolling field to a stack of cards

2007-02-12 Thread Mark Swindell


On Feb 12, 2007, at 8:16 PM, Joe Lewis Wilkins wrote:


1.  Create an object
2.  With that object selected, choose "Group" from the menu or ToolBar
3.  Open the object's Property Inspector
4.  Check the "Behave as Background" checkbox or set the  
backgroundBehavior to true

5.  Go to each card and choose "Place Group" from the Object Menu


To each existing card.  The field will appear automatically on cards  
created after the group with background behavior is established.



OR, with a large number of cards, write a script to accomplish the  
above actions.


Joe Wilkins


___
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: Adding a scrolling field to a stack of cards

2007-02-12 Thread J. Landman Gay

Joe Lewis Wilkins wrote:
Thank you Sarah. Not as easy as backgrounds  in HC, but I can see it is 
more flexible. It was the "Place Group" that made it a puzzle. So the 
steps are:


1.  Create an object
2.  With that object selected, choose "Group" from the menu or ToolBar
3.  Open the object's Property Inspector
4.  Check the "Behave as Background" checkbox or set the 
backgroundBehavior to true

5.  Go to each card and choose "Place Group" from the Object Menu
OR, with a large number of cards, write a script to accomplish the above 
actions.


Right. This is a better way than pasting the field on each card, because 
when you paste, you get multiple copies of the field. That makes it hard 
to edit and uses more space and memory. Placing a 1-field group shares 
it among cards, and allows you to edit once and have your changes 
automatically reflected everywhere.


Note that you don't necessarily have to check "background behavior", 
it's optional. You can still place and share a group on several cards 
without that, though behavior changes a little when you do.



--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.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: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Thank you Sarah. Not as easy as backgrounds  in HC, but I can see it  
is more flexible. It was the "Place Group" that made it a puzzle. So  
the steps are:


1.  Create an object
2.  With that object selected, choose "Group" from the menu or ToolBar
3.  Open the object's Property Inspector
4.  Check the "Behave as Background" checkbox or set the  
backgroundBehavior to true

5.  Go to each card and choose "Place Group" from the Object Menu
OR, with a large number of cards, write a script to accomplish the  
above actions.


Joe Wilkins

On Feb 12, 2007, at 7:46 PM, Sarah Reichelt wrote:


I have the beginnings of an application/stack. I've created the menus
which are a group, appear with all cards; but I now want to add a
scrolling text field with it's contents to all of the cards in the
easiest possible manner. How? Involves some more grouping, but I
don't see how.


Create your field, select it and choose "Group" from the menu or
toolbar. It doesn't matter if there is only 1 object in a group. Then
in the group's properties set the backgroundBehavior to true. This
will make it appear on every new card, but it needs to be manually
placed on all existing cards. Go to every card and choose "Place
group" from the Object menu. If you have more than a few cards, it
might be worth writing a script to do the placing - look up 'place' in
the dictionary.

As with Hypercard's backgrounds, this group is a single object even
though it appears on all cards, so editing it on one card applies to
all. Set sharedText to true or false depending on whether you want the
text to be the same on every card.

HTH,
Sarah
___
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: Adding a scrolling field to a stack of cards

2007-02-12 Thread Sarah Reichelt

I have the beginnings of an application/stack. I've created the menus
which are a group, appear with all cards; but I now want to add a
scrolling text field with it's contents to all of the cards in the
easiest possible manner. How? Involves some more grouping, but I
don't see how.


Create your field, select it and choose "Group" from the menu or
toolbar. It doesn't matter if there is only 1 object in a group. Then
in the group's properties set the backgroundBehavior to true. This
will make it appear on every new card, but it needs to be manually
placed on all existing cards. Go to every card and choose "Place
group" from the Object menu. If you have more than a few cards, it
might be worth writing a script to do the placing - look up 'place' in
the dictionary.

As with Hypercard's backgrounds, this group is a single object even
though it appears on all cards, so editing it on one card applies to
all. Set sharedText to true or false depending on whether you want the
text to be the same on every card.

HTH,
Sarah
___
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: Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins
Decided to just copy the field object and paste it into the other  
cards, since I decided I didn't want it to appear on absolutely every  
one, but I'd still like to know the answer to my question, since I'm  
sure this is a common occurrence.


TIA,

Joe Wilkins



On Feb 12, 2007, at 7:21 PM, Joe Lewis Wilkins wrote:


Hi all,

I have the beginnings of an application/stack. I've created the  
menus which are a group, appear with all cards; but I now want to  
add a scrolling text field with it's contents to all of the cards  
in the easiest possible manner. How? Involves some more grouping,  
but I don't see how.


Joe Wilkins
___
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


Adding a scrolling field to a stack of cards

2007-02-12 Thread Joe Lewis Wilkins

Hi all,

I have the beginnings of an application/stack. I've created the menus  
which are a group, appear with all cards; but I now want to add a  
scrolling text field with it's contents to all of the cards in the  
easiest possible manner. How? Involves some more grouping, but I  
don't see how.


Joe Wilkins
___
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: Best way to Pass Results to a Field from an External

2007-02-12 Thread Mark Wieder
Dave-

Monday, February 12, 2007, 7:55:17 AM, you wrote:

> put "line1" & cr & "line2" & cr & "line3" & cr & cr after field
> "DataLog"

> What is the best way to achieve this in a C/C++ External? I can see
> that I can get and set the contents of a Field but I can't see how to
> use the "after" key word. Do I have to do a "get" on the field copy
> the data to the end and then do a "set"? If so, do I use realloc() to
> make the buffer returned bigger?

> Any help on the would be greatly appreciated.

What's the aim here? If "speed" isn't part of the answer then I'd just
pass the strings back to transcript and let the engine do what it does
best. If you do need the speed then my approach would be to get the
contents of the field before the loop starts, then strcat each line in
the loop (yes, you'd have to do a realloc or malloc a new buffer for
the strcats), finally passing back the whole thing to the engine.

put AllMyStrings(field "DataLog") into field "DataLog"

-- 
-Mark Wieder
 [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: Mercury in retrograde

2007-02-12 Thread Mark Wieder
Richard-

Monday, February 12, 2007, 8:26:21 AM, you wrote:

> Mark, could be a better way to resolve a conflict than to post it to the
> list?

Not trying to resolve a conflict, just hoping I can keep someone else
from falling into the same pit.

-- 
-Mark Wieder
 [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


Is libURL required for a "get url..." statement?

2007-02-12 Thread Derek Bump
I know that you cannot use commands associated with any Rev Library 
until after the startup handler has finished, but is the following 
command part of the libURL library?


  get url "http://www.mysite.com/";

The reason I ask is because it seems to me that it would not be, but is 
instead built into the engine.  As such, can anyone tell me why it won't 
work during a startup handler, or a handler that is called from the 
startup handler?



Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.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: anyone here for a Brazilian User Group?

2007-02-12 Thread Kay C Lan

Been away for a month and am hurriedly scanning through hundreds of posts.
Came across this Subject heading and was sure there'd be several way off
topic replies. How disappointing. Is it because programing is such a 'male'
thing.

Hope to get to todays posts sometime this week;-)
___
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: Buttonclick deselects text

2007-02-12 Thread Martin Baxter

Devin Asay wrote:


On Feb 10, 2007, at 5:38 PM, Kresten Bjerg wrote:


Hi
I have  buttons, which, on mouseup,  shall use bits of user-selectedtext
from a textfield. But it seems that the clicking of some  buttons
deselects the text before it can be caught. I guess this is a trivial
problem,but : what is the trick to postpone the deselection ?
I shall be grateful for advice
Kresten Bjerg


The advice you've gotten is good, but it does appear that there is 
inconsistent behavior between Mac OS X and Windows. See 
http://quality.runrev.com/qacenter/show_bug.cgi?id=4015 .


Is this a Rev problem or a difference in the way the operating systems 
work?


Devin



The latter, I would say. On Macintosh the default is that buttons don't 
get focus, on Windows they do. I dimly recall hearing that OSX has a 
preference you can set to change this behaviour so buttons *do* get 
focus. But if so, I don't know where it is.


Martin Baxter
___
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


data to excel

2007-02-12 Thread Liam Lambert
It is filling all the column A with 99 and put 99 in the right place  
in D and E leaving B and C

empty ?
Thanks
Liam


On Mon, 12 Feb 2007 21:08:18 +, Liam Lambert wrote:

> I am trying to enter some data into excel using Ken Ray's code.

What is the result? Are you getting an error, or is it putting the data
in the wrong place, or not at all?

IRELAND
[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: data to excel

2007-02-12 Thread Ken Ray
On Mon, 12 Feb 2007 21:08:18 +, Liam Lambert wrote:

> I am trying to enter some data into excel using Ken Ray's code.

What is the result? Are you getting an error, or is it putting the data 
in the wrong place, or not at all?


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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


Richmond's Yahoo-Groups and related guff.

2007-02-12 Thread Richmond Mathewson
A while back I had a "file crisis" - i.e. lots of daft
RunRev files I wanted to make available for those
hardy souls who were willing to risk any consequences
of playing with them, and no money to pay for a
socking great website.

Various 'kind' people offered to hold them for me on
their websites; and, for one reason or another all
those offers went rapidly "pear-shaped".

So the only solution I could find at the time was via
Yahoo Groups (RevOnline is nice, but a bit tough on
the 'Goyim' such as those who are tinkering around
with older versions of RR or Metacard).

Unfortunately Yahoo Groups require registration - and
some people have got all 'prickly' about information
being garnered by interested bodies from Yahoo.

My advice (!!!) to those who wish to access my files
but don't want 'Dubya', 'The Bogeyman', 'MI6' and
'Uncle Tom Cobbley' learning about their secret bank
accounts in the Cayman Islands is to set up some
silly, anonymous e-mail account from which to
register.

all the files available on my Yahoo Groups are FREE to
download, pull-apart, improve on and generally use. I
will not accept any responsibility if doing any of
those things with my files blanks your hard-drives,
affects your bank balance in the Cayman Islands or
otherwise.

I am very grateful when people who make use of my
offerings give some sort of redit or send me a thank
you note.

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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: Buttonclick deselects text

2007-02-12 Thread Devin Asay


On Feb 10, 2007, at 5:38 PM, Kresten Bjerg wrote:


Hi
I have  buttons, which, on mouseup,  shall use bits of user- 
selectedtext

from a textfield. But it seems that the clicking of some  buttons
deselects the text before it can be caught. I guess this is a trivial
problem,but : what is the trick to postpone the deselection ?
I shall be grateful for advice
Kresten Bjerg


The advice you've gotten is good, but it does appear that there is  
inconsistent behavior between Mac OS X and Windows. See http:// 
quality.runrev.com/qacenter/show_bug.cgi?id=4015 .


Is this a Rev problem or a difference in the way the operating  
systems work?


Devin

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


Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins

Richmond,

First let me apologize for my previous use of the shorter version  
that makes you faintly sick. I was so excited that I didn't read the  
P.S. Sorry!


Then to express my ignorance. I don't see anyway to download the  
"PAINT ME" stack. Do I need to become a Yahoo member first?


My son's name is Richard, and even at a very early age, when someone  
called him either Rich or Ricky, he would announce: "my name is  
Richard". So I understand, though my personal preference has never  
been a "thing" with me; what with my use of the name Pepe for my  
emails. (Spanish for Joe)


Thanks, anyway,

Joe Wilkins

On Feb 12, 2007, at 1:42 PM, Richmond Mathewson wrote:


Hi Joe,

I suggest you download "PAINT ME" - in theory, at
least, you should be able to integrate that stack into
your work and, subsequently, any standalones you hive
off.

All the stuff on my Yahoo Groups:

http://tech.groups.yahoo.com/group/RRgraphix/

http://tech.groups.yahoo.com/group/richmondsrrr/

http://tech.groups.yahoo.com/group/RRRThesis

is "up for grabs", by which I mean to say, that it is
freely available, although I am always grateful if
credit is given in the form of some sort of 'read me'
note in your finished work.

sincerely, Richmond Mathewson

P.S. Being called 'Rich' makes me feel faintly sick.



Save the last dance for me, and don't slip in the dogs mess on
the way over to take my hand.






___
New Yahoo! Mail is the ultimate force in competitive emailing. Find  
out more at the Yahoo! Mail Championships. Plus: play games and win  
prizes.

http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk
___
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


[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
This looks like a good bet:

http://www.kinesissoftware.com

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.




___ 
What kind of emailer are you? Find out today - get a free analysis of your 
email personality. Take the quiz at the Yahoo! Mail Championship. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins

Thanks a lot, Rich. I'll probably do more than that.

Joe Wilkins

On Feb 12, 2007, at 1:42 PM, Richmond Mathewson wrote:


Hi Joe,

I suggest you download "PAINT ME" - in theory, at
least, you should be able to integrate that stack into
your work and, subsequently, any standalones you hive
off.

All the stuff on my Yahoo Groups:

http://tech.groups.yahoo.com/group/RRgraphix/

http://tech.groups.yahoo.com/group/richmondsrrr/

http://tech.groups.yahoo.com/group/RRRThesis

is "up for grabs", by which I mean to say, that it is
freely available, although I am always grateful if
credit is given in the form of some sort of 'read me'
note in your finished work.

sincerely, Richmond Mathewson

P.S. Being called 'Rich' makes me feel faintly sick.



Save the last dance for me, and don't slip in the dogs mess on
the way over to take my hand.






___
New Yahoo! Mail is the ultimate force in competitive emailing. Find  
out more at the Yahoo! Mail Championships. Plus: play games and win  
prizes.

http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk
___
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


[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Wow,

Thanks Trevor!

Will upload the stack files of the finished programs
to RevOnline when finished.

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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] Decompiling SWF on a Mac

2007-02-12 Thread Trevor DeVore

On Feb 12, 2007, at 2:03 PM, Richmond Mathewson wrote:


Thank you very much Brent and Trevor,

however, neither of your suggestions seem to work with
the files I have been given (sample available at the
following URL):

http://mail.maclaunch.com/richmond/bad.swf.zip

and at present I am running SWF Decompiler for windows
inside Connectix Virtual PC 4 and WIN 98 to
successfully extract the sounds - however this is
slow, tedious and not very productive.


I was able to extract an mp3 file that said the word "bad".  I opened  
Gordon, pressed cmd + L to open the library window, clicked on the  
"audio" icon in the list and clicked Export.  I think accessing the  
Library window is the key to exporting the mp3 file.



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


[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Thank you very much Brent and Trevor,

however, neither of your suggestions seem to work with
the files I have been given (sample available at the
following URL):

http://mail.maclaunch.com/richmond/bad.swf.zip

and at present I am running SWF Decompiler for windows
inside Connectix Virtual PC 4 and WIN 98 to
successfully extract the sounds - however this is
slow, tedious and not very productive.

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.




___ 
The all-new Yahoo! Mail goes wherever you go - free your email address from 
your Internet provider. http://uk.docs.yahoo.com/nowyoucan.html
___
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] Decompiling SWF on a Mac

2007-02-12 Thread Trevor DeVore

On Feb 12, 2007, at 12:06 PM, Richmond Mathewson wrote:


Somebody just dumped a load of shockwave files of
phonetic materials they want me to pop together into a
RR thing for a Free English pronunciation guide. That
is all jolly well and good . . . but need to extract
the sound components of the swf files so I can turn
them into aiff files - help, advice gratefully
recieved,


Gordon for OS X might do what you want.  It lets you export the  
embedded sounds of SWF files.


http://www.futurecandy.net/

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


Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richmond Mathewson
Hi Joe,

I suggest you download "PAINT ME" - in theory, at
least, you should be able to integrate that stack into
your work and, subsequently, any standalones you hive
off.

All the stuff on my Yahoo Groups:

http://tech.groups.yahoo.com/group/RRgraphix/

http://tech.groups.yahoo.com/group/richmondsrrr/

http://tech.groups.yahoo.com/group/RRRThesis

is "up for grabs", by which I mean to say, that it is
freely available, although I am always grateful if
credit is given in the form of some sort of 'read me'
note in your finished work.

sincerely, Richmond Mathewson

P.S. Being called 'Rich' makes me feel faintly sick.



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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: answer dialog over modal window

2007-02-12 Thread Chris Sheffield
Well, I ended up solving my own problem, but I'm pretty sure there's  
a bug here, as Rev is not behaving as the docs say it should in this  
case. I'm pretty sure, but someone please correct me if I'm wrong,  
that the docs say that using open stack "blahblah" as sheet will open  
the stack as a modal window when running under OS's that don't  
support sheets. But for some reason it's not working correctly. When  
I changed the command to open stack "blahblah" as modal, and then  
opened the answer dialog, it appeared over the modal window  
correctly. Using sheet with the open stack command is doing something  
different. I mean, the dialog appears as modal and works as modal,  
but when you try to open another modal over it, like the answer  
dialog, no dice.


Not a huge issue since there's a workaround, but I think I'll report  
this to Runtime. Either the behavior should reflect the docs, or the  
docs should reflect the behavior. :-)


Thanks,
Chris


On Feb 12, 2007, at 1:41 PM, Chris Sheffield wrote:

I'm having a strange problem. Seems to be happening only under  
Windows (tested on Windows XP, server 2003). I'm not sure if it's  
something I've done wrong or if I've found a bug in Rev. Maybe  
someone can help. Running Rev 2.7.4.


I have an application that at one point opens a modal dialog for  
the user to change some settings. When the user clicks the save  
button, a verification routine runs to make sure all necessary  
settings are correct. If there's a problem, I simply bring up the  
answer dialog to inform the user so they can fix it. But there  
seems to be a problem opening a modal window (answer dialog) over  
another modal window. The answer dialog opens behind the already  
open modal window instead of in front of it. And there's no way to  
switch to it. I even tried using Task Manager to switch to the  
answer dialog, but that didn't do anything. So the application  
looks as though it's hanging, when really it's just waiting for  
user input. Has anyone else experienced this? Is there a workaround  
for it?


Everything works fine on the Mac. Of course, on the Mac I'm opening  
my settings dialog as a sheet rather than as a regular modal window.


Any thoughts?

Thanks,
Chris


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins

Hi Rich,

I took a look at this but was kind of overwhelmed by the content and,  
being unfamiliar with the layout, could not determine whether there  
is something to download, or not. It looks like you may have done  
some very interesting graphics stuff, but is this intended to be  
shared or what? Some help would be appreciated.


TIA,

Joe Wilkins

On Feb 12, 2007, at 12:09 PM, Richmond Mathewson wrote:


Be there or be square:

http://tech.groups.yahoo.com/group/RRgraphix/

look in the files section . . .

love, abuse and happy hunting!

Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on
the way over to take my hand.






___
New Yahoo! Mail is the ultimate force in competitive emailing. Find  
out more at the Yahoo! Mail Championships. Plus: play games and win  
prizes.

http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk
___
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] Decompiling SWF on a Mac

2007-02-12 Thread Brent Anderson

On the Mac there is File Juicer. It's shareware, but the limitations are
open enough that you can extract everything within the trial period. Beyond
that, I think it starts watermarking random images, but if you're only
dealing in sound that shouldn't be a problem.



On 2/12/07, Richmond Mathewson <[EMAIL PROTECTED]> wrote:


Somebody just dumped a load of shockwave files of
phonetic materials they want me to pop together into a
RR thing for a Free English pronunciation guide. That
is all jolly well and good . . . but need to extract
the sound components of the swf files so I can turn
them into aiff files - help, advice gratefully
recieved,

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on
the way over to take my hand.






___
New Yahoo! Mail is the ultimate force in competitive emailing. Find out
more at the Yahoo! Mail Championships. Plus: play games and win prizes.
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk
___
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


data to excel

2007-02-12 Thread Liam Lambert

I am trying to enter some data into excel using Ken Ray's code.
I want to put the data into columns  A1,B1  (the number for each row  
is entered in field "Nub")



ON mouseUp
put "A,B,C,D,E" INTO tAlph
REPEAT for each item tLett in tAlph
put tLett before fld "Nub"
put fld "Nub" into tNub
 SendToXL "99",tNub
delete char 1 of fld "Nub"
END REPEAT
END mouseUp

ON SendToXL pWhat,pCell
  put "tell app" && q("Microsoft Excel") & cr & \
"set value of cell" && q(pCell) && "to" && q(pWhat) & cr & \
"end tell" into tScript
  do tScript as AppleScript
END SendToXL

FUNCTION q pWhat
  return quote & pWhat & quote
END q

Thanks'

 Liam

IRELAND
[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


answer dialog over modal window

2007-02-12 Thread Chris Sheffield
I'm having a strange problem. Seems to be happening only under  
Windows (tested on Windows XP, server 2003). I'm not sure if it's  
something I've done wrong or if I've found a bug in Rev. Maybe  
someone can help. Running Rev 2.7.4.


I have an application that at one point opens a modal dialog for the  
user to change some settings. When the user clicks the save button, a  
verification routine runs to make sure all necessary settings are  
correct. If there's a problem, I simply bring up the answer dialog to  
inform the user so they can fix it. But there seems to be a problem  
opening a modal window (answer dialog) over another modal window. The  
answer dialog opens behind the already open modal window instead of  
in front of it. And there's no way to switch to it. I even tried  
using Task Manager to switch to the answer dialog, but that didn't do  
anything. So the application looks as though it's hanging, when  
really it's just waiting for user input. Has anyone else experienced  
this? Is there a workaround for it?


Everything works fine on the Mac. Of course, on the Mac I'm opening  
my settings dialog as a sheet rather than as a regular modal window.


Any thoughts?

Thanks,
Chris


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richmond Mathewson
Be there or be square:

http://tech.groups.yahoo.com/group/RRgraphix/

look in the files section . . .

love, abuse and happy hunting!

Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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


[OT] Decompiling SWF on a Mac

2007-02-12 Thread Richmond Mathewson
Somebody just dumped a load of shockwave files of
phonetic materials they want me to pop together into a
RR thing for a Free English pronunciation guide. That
is all jolly well and good . . . but need to extract
the sound components of the swf files so I can turn
them into aiff files - help, advice gratefully
recieved,

sincerely, Richmond Mathewson



Save the last dance for me, and don't slip in the dogs mess on 
the way over to take my hand.






___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 
___
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: Error in external

2007-02-12 Thread J. Landman Gay

John Craig wrote:
I wrote a small external a while back after Mark Waddington's newsletter 
article.  The external seems to work fine most of the time, but every 
once in a while throws an error.
The variable watcher tells me that the temp vars that were set prior to 
calling the external function have mysteriously emptied.  Has anyone 
else experienced anything similar with externals?


(WindowsXP, Rev. 2.7.4 , VC++ )


Tech support received a report last week that the article in the 
newsletter had reversed two parameters in external.c. Two functions have 
their first two parameters interchanged (p_name and p_group).


This was verified last week and a correction is supposed to be made to 
the article. But in the mean time, if you are using either of those two 
functions, the error may be due to that reason.



--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.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: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Thanks Richard. I had kind of come to that conclusion on my own, but  
it's comforting to hear an authoritative opinion on the topic.  
Developing such a palette will certainly be grist for a future  
article on my Macinstuct.com column on Revolution. I finalize a cross  
platform application begun this past week with this Wednesday's  
column, so be sure to check it out.


Joe Wilkins

On Feb 12, 2007, at 8:14 AM, Richard Gaskin wrote:


Joe Lewis Wilkins wrote:
Is there a way that Rev's Draw and Paint Control Palette can be  
added  to our own Stacks so that they will be available in the  
standalones  created later on? It would also be nice if its Tool  
functions were  also available.


The answer wasn't forthcoming probably because it's both yes and no.

As Transcript-driven parts, almost any stacks can be made to work  
with any others.  The question is whether it's worth the trouble,  
or perhaps more cost-effective and user-oriented to craft something  
specific for the task at hand.


The challenge of incorporating Rev's palettes is that they're tied  
to Rev's development libraries, and the scope of interactions among  
them is quite broad.


If you have an app in which you need drawing and painting tools,  
it's probably better in terms of both the usability of the design  
and the cost to implement it to just roll your own.


See these tokens in the Dictionary:

 choose command
 newTool message
 tool global property
 style window property

--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Ken Ray
On Mon, 12 Feb 2007 06:39:58 -0800, Joe Lewis Wilkins wrote:

> Sorry for being so insistent, but I really need to know. If it can't 
> be done, it can't be done, but I suspect it can.
> 
> Hi Everyone,
> 
> Is there a way that Rev's Draw and Paint Control Palette can be added 
> to our own Stacks so that they will be available in the standalones 
> created later on? It would also be nice if its Tool functions were 
> also available.

I don't believe this can be done very easily... AFAIK these palettes 
weren't designed to operate outside the IDE. Of course you could build 
one yourself, but that's a big job...


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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: Error in external

2007-02-12 Thread Trevor DeVore

On Feb 12, 2007, at 6:05 AM, John Craig wrote:

I wrote a small external a while back after Mark Waddington's  
newsletter article.  The external seems to work fine most of the  
time, but every once in a while throws an error.
The variable watcher tells me that the temp vars that were set  
prior to calling the external function have mysteriously emptied.   
Has anyone else experienced anything similar with externals?


Hi John,

I haven't seen anything like this myself.  Is there any code you can  
share?


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


Mercury in retrograde

2007-02-12 Thread Richard Gaskin
Mark, could be a better way to resolve a conflict than to post it to the 
list?


I don't know the nature of the conflict nor do I need to know, but FWIW
my own experience working with Josh has been different than yours.

I've known both of you for several years, and you both have a long list
of professional experience to your credit.  I trust the two of you can
work out whatever issues there are between yourselves.

This list has been pretty much controversy-free for months, and I'd hate
to see a momentary lapse in otherwise excellent professional judgment
break the good roll we're on.

As they say in California, chalk it up to Mercury in retrograde

If I can help mediate I'd be happy to do so offlist.

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


Re: Re-posting of Question about Draw and Paint Palette

2007-02-12 Thread Richard Gaskin

Joe Lewis Wilkins wrote:
Is there a way that Rev's Draw and Paint Control Palette can be added  
to our own Stacks so that they will be available in the standalones  
created later on? It would also be nice if its Tool functions were  
also available.


The answer wasn't forthcoming probably because it's both yes and no.

As Transcript-driven parts, almost any stacks can be made to work with 
any others.  The question is whether it's worth the trouble, or perhaps 
more cost-effective and user-oriented to craft something specific for 
the task at hand.


The challenge of incorporating Rev's palettes is that they're tied to 
Rev's development libraries, and the scope of interactions among them is 
quite broad.


If you have an app in which you need drawing and painting tools, it's 
probably better in terms of both the usability of the design and the 
cost to implement it to just roll your own.


See these tokens in the Dictionary:

 choose command
 newTool message
 tool global property
 style window property

--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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


Best way to Pass Results to a Field from an External

2007-02-12 Thread Dave

Hi All,

I have an External C/C++ function. One of the tasks it performs is to  
analyze a large amount of data and generate three lines of output per  
data "chunk", there are about 1000 chucks (but this can vary). I have  
at present a C/++ loop in the external that goes through each chuck  
and generates the data. Basically I would like to output the three  
lines to an Revolution field.


This is what I would like to do in TranScript:

put "line1" & cr & "line2" & cr & "line3" & cr & cr after field  
"DataLog"


What is the best way to achieve this in a C/C++ External? I can see  
that I can get and set the contents of a Field but I can't see how to  
use the "after" key word. Do I have to do a "get" on the field copy  
the data to the end and then do a "set"? If so, do I use realloc() to  
make the buffer returned bigger?


Any help on the would be greatly appreciated.

All the Best
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: Dollar Format

2007-02-12 Thread Jeff Honken
Mark,
  That worked great.  Thanks,  Jeff

-Original Message-
From: Mark Smith [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 12, 2007 9:59 AM
To: How to use Revolution
Subject: Re: Dollar Format

Jeff, try the format function

put format("%1.2f",NBalance) into NBalance

The numberFormat is a system property, and you can't set it for one  
variable. It persists (I think) until the current handler finishes.  
In any case, it simply limits the decimal places, and will not put  
the trailing zeros in, so if your calculation produced a value of  
21.1, it would still only give you "21.1" rather than "21.10".

Best,

Mark

On 12 Feb 2007, at 14:17, Jeff Honken wrote:

> How would a person force a U.S. dollar format on a variable?  I'm  
> trying
> to set NBalance as a dollar but the following errors:
>
> put pBalance - (iDPayment + DSUM) into NBalance
>   set the numberFormat of NBalance to "#.00"
>
> Any help will be greatly appreciated.  Jeff
>
>
>
>
> ___
> 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: Dollar Format

2007-02-12 Thread Mark Smith

Jeff, try the format function

put format("%1.2f",NBalance) into NBalance

The numberFormat is a system property, and you can't set it for one  
variable. It persists (I think) until the current handler finishes.  
In any case, it simply limits the decimal places, and will not put  
the trailing zeros in, so if your calculation produced a value of  
21.1, it would still only give you "21.1" rather than "21.10".


Best,

Mark

On 12 Feb 2007, at 14:17, Jeff Honken wrote:

How would a person force a U.S. dollar format on a variable?  I'm  
trying

to set NBalance as a dollar but the following errors:

put pBalance - (iDPayment + DSUM) into NBalance
  set the numberFormat of NBalance to "#.00"

Any help will be greatly appreciated.  Jeff




___
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: Dollar Format

2007-02-12 Thread Derek Bump

Jeff,

The "numberFormat" is actually a global setting, so you would set it and 
perform your script as such:


set the numberFormat to "#.00"
put pBalance - (iDPayment + DSUM) into NBalance

Let us know if that doesn't help.


Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.com/



Jeff Honken wrote:

How would a person force a U.S. dollar format on a variable?  I'm trying
to set NBalance as a dollar but the following errors:

put pBalance - (iDPayment + DSUM) into NBalance
  set the numberFormat of NBalance to "#.00"

Any help will be greatly appreciated.  Jeff

___
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-posting of Question about Draw and Paint Palette

2007-02-12 Thread Joe Lewis Wilkins
Sorry for being so insistent, but I really need to know. If it can't  
be done, it can't be done, but I suspect it can.


Hi Everyone,

Is there a way that Rev's Draw and Paint Control Palette can be added  
to our own Stacks so that they will be available in the standalones  
created later on? It would also be nice if its Tool functions were  
also available.


TIA,

Joe Wilkins


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


Dollar Format

2007-02-12 Thread Jeff Honken
How would a person force a U.S. dollar format on a variable?  I'm trying
to set NBalance as a dollar but the following errors:

put pBalance - (iDPayment + DSUM) into NBalance
  set the numberFormat of NBalance to "#.00"

Any help will be greatly appreciated.  Jeff




___
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


Error in external

2007-02-12 Thread John Craig
I wrote a small external a while back after Mark Waddington's newsletter 
article.  The external seems to work fine most of the time, but every 
once in a while throws an error.
The variable watcher tells me that the temp vars that were set prior to 
calling the external function have mysteriously emptied.  Has anyone 
else experienced anything similar with externals?


(WindowsXP, Rev. 2.7.4 , VC++ )

Thanks,
JC
___
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