Re: Stop automatic actions in editing mode

2005-08-18 Thread Douglas Gilliland
The same thing happens to me when I select Show Invisible, forget that
I have it on and am dumbfounded on why my invisible object are
showing.
Doug Gilliland
Sarasota, FL


On 8/18/05, Jim Lyons <[EMAIL PROTECTED]> wrote:
> Dan offered the tip:
> 
> > Before you open the stack, click on the "Messages" icon in the Rev
> > toolbar. That suspends all system messages until you toggle it back
> > on. Saves my life about three times a month.
> 
> Then later, when nothing is working anymore, not even mouse clicks, and
> you're tearing out hair, and yelling to the neighborhood, "THIS WAS
> WORKING A MINUTE AGO!!", just reach up and flip it back on again. This
> happens to me about twice a month.
> 
> Jim Lyons
> 
> ___
> 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: Stop automatic actions in editing mode

2005-08-17 Thread Douglas Gilliland
Thanks Xav. Between your scripts (I especially like the 2nd one),
Dan's Message Click and Jonathan's Option-click I now have 3 ways to
stop an autoscript. It's amazing how much one can learn from this
mailing list.
Doug Gilliland


On 8/17/05, MisterX <[EMAIL PROTECTED]> wrote:
> Douglas
> 
> There's more than one way than just with the application browser.
> 
> Remember the msg box is your friend ;)
> Note, i didn't test #1. #3 may need tweaking.
> and #2 is perenial, easy and works anywhere...
> 
> from the message (multiline):
> 
>   Lock messages
>   go to cd 1
> 
> in your script (ma favorite)
> 
> on opencard
>   if the shiftkey is down then
> pass opencard
>   or
> exit opencard
>   end if
>   [yourscript]
> 
> or also in msg
> 
>   set the clipboarddata to script of cd 1
>   set the script of cd 1 to ""
>   go cd 1
>   set the script of cd 1 to the clipbarddata
> 
> or ?
> 
> im sure now you can think of a few more ways ;)
> 
> cheers
> Xav
> 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of
> > Douglas Gilliland
> > Sent: Wednesday, August 17, 2005 16:36
> > To: use-revolution@lists.runrev.com
> > Subject: Stop automatic actions in editing mode
> >
> > Is it possible to stop an automatic action once you have
> > placed the on opencard script into the card.
> > I have a stack that has a curtain (card 1) open automatically
> > to the title (card 2). I used the card script on card 1:
> >
> > on opencard
> > visual effect barn door open slow
> > go next
> > end opencard
> >
> > I want to edit the first card but the opencard script
> > prevents me from doing so. I have looked through the
> > documentation and manual but see nothing on how to do this.
> > It is probably very simple - but even the simplest things are
> > hard when you don't know the answer :>) Thanks, Doug
> > Gilliland Sarasota, Fl PS - If anyone is a high school
> > chemistry/physics teacher and wants some stacks I am using in
> > my 9th grade Honors Physical Science classes (measuring, SI
> > system, sig figs and other science topics) I'd be happy to share them.
> > ___
> > 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: Stop automatic actions in editing mode

2005-08-17 Thread Douglas Gilliland
Thanks Dan. Together with Jonathan's method (Option-click on the card
icon in the application browser - allows you to edit the script) I now
have two ways to stop and edit an opencard script.
I appreciate the help. 
Doug Gilliland
Sarasota, FL

On 8/17/05, Robert Brenstein <[EMAIL PROTECTED]> wrote:
> >Is it possible to stop an automatic action once you have placed the on
> >opencard script into the card.
> >I have a stack that has a curtain (card 1) open automatically to the
> >title (card 2). I used the card script on card 1:
> >
> >on opencard
> >visual effect barn door open slow
> >go next
> >end opencard
> >
> >I want to edit the first card but the opencard script prevents me from
> >doing so. I have looked through the documentation and manual but see
> >nothing on how to do this. It is probably very simple - but even the
> >simplest things are hard when you don't know the answer :>)
> >Thanks,
> >Doug Gilliland
> >Sarasota, Fl
> 
> type in the message box:
> 
> edit the script of cd 1
> 
> if by editing you mean editing objects on the card and you need to do
> it repeatedly, add escaping to your handler
> 
> on opencard
>if the controlKey is down then exit opencard
>visual effect barn door open slow
>go next
> end opencard
> 
> Robert
> ___
> 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: Stop automatic actions in editing mode

2005-08-17 Thread Douglas Gilliland
Thanks Jonathan. I never would have figured that one out on my own.
Doug Gilliland
Sarasota, FL

On 8/17/05, Lynch, Jonathan <[EMAIL PROTECTED]> wrote:
> Use the application browser - found in the tools menu.
> 
> Right click on the icon for the card, which will be found under the icon
> for the stack in the application browser - this will give you an option
> to edit the card script.
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Douglas
> Gilliland
> Sent: Wednesday, August 17, 2005 10:36 AM
> To: use-revolution@lists.runrev.com
> Subject: Stop automatic actions in editing mode
> 
> Is it possible to stop an automatic action once you have placed the on
> opencard script into the card.
> I have a stack that has a curtain (card 1) open automatically to the
> title (card 2). I used the card script on card 1:
> 
> on opencard
> visual effect barn door open slow
> go next
> end opencard
> 
> I want to edit the first card but the opencard script prevents me from
> doing so. I have looked through the documentation and manual but see
> nothing on how to do this. It is probably very simple - but even the
> simplest things are hard when you don't know the answer :>)
> Thanks,
> Doug Gilliland
> Sarasota, Fl
> PS - If anyone is a high school chemistry/physics teacher and wants
> some stacks I am using in my 9th grade Honors Physical Science classes
> (measuring, SI system, sig figs and other science topics) I'd be happy
> to share them.
> ___
> 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


Stop automatic actions in editing mode

2005-08-17 Thread Douglas Gilliland
Is it possible to stop an automatic action once you have placed the on
opencard script into the card.
I have a stack that has a curtain (card 1) open automatically to the
title (card 2). I used the card script on card 1:

on opencard
visual effect barn door open slow
go next
end opencard

I want to edit the first card but the opencard script prevents me from
doing so. I have looked through the documentation and manual but see
nothing on how to do this. It is probably very simple - but even the
simplest things are hard when you don't know the answer :>)
Thanks,
Doug Gilliland
Sarasota, Fl
PS - If anyone is a high school chemistry/physics teacher and wants
some stacks I am using in my 9th grade Honors Physical Science classes
(measuring, SI system, sig figs and other science topics) I'd be happy
to share them.
___
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: running the Player

2005-08-15 Thread Douglas Gilliland
It should work regardless of where the player is located on the HD.
I've tested this in my classroom by moving the player to a different
location on the HD and the stack still loads. Can't say what will
happen on a PC because all I use in my class are Macs.
Doug Gilliland,
Sarasota, FL

On 8/15/05, Ken Norris <[EMAIL PROTECTED]> wrote:
> OOPS sorry, forgot to change the RE header before
> 
> Hi Douglas,
> 
> > Date: Sun, 14 Aug 2005 21:08:24 -0400
> > From: Douglas Gilliland <[EMAIL PROTECTED]>
> > Subject: Re: running the Player
> >
> > When I finish a stack on my Powerbook (running Tiger), I:
> > 1. Control-click on the stack and drag down to Open With
> > 2. Navigate to the Dream Card Player.
> >
> > After that any time the stack is double-clicked it automatically
> > launches the DC Player and plays the stack. No Player window or having
> > to launch the Player first.
> 
> So, if I did that before I ship a stack to be run by DC Player, and the
> intended user indeed _has_ the DC Player, what will happen?
> 
> Suppose the user is a PC user with a DC Player -- then what happens?
> 
> All the best,
> Ken N.
> 
> ___
> 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: running the Player

2005-08-14 Thread Douglas Gilliland
When I finish a stack on my Powerbook (running Tiger), I:
1. Control-click on the stack and drag down to Open With 
2. Navigate to the Dream Card Player.

After that any time the stack is double-clicked it automatically
launches the DC Player and plays the stack. No Player window or having
to launch the Player first.
Doug Gilliland
Sarasota, FL

>>But, and maybe I don't understand something here: From a stack-user
standpoint, shouldn't the stack be installed to where double-clicking
on it invisibly launches DreamCard Player which then opens the stack?<<
___
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: running the Player

2005-08-14 Thread Douglas Gilliland
Charles,
When I click on the DC Player (on my PowerBook running Tiger) I get
the revOnline Viewer which enables one to navigate to the stack.
Instead of opening the player, I hide the player and have my students
double-click on the stack to open it.
Control-click on the stack and drag down to Open With and navigate to
the Dream Card Player. When opened, the stack will now open with the
Player screen in the background. Works great on my eMacs at school
running OSX 10.3.
Doug Gilliland
Sarasota, FL


On 8/14/05, Charles Hartman <[EMAIL PROTECTED]> wrote:
> Well, it's me too. Is there a bug report on this? If so I'll be glad
> to spend votes on it. As things are, I'm going to have to wrap my app
> (=stack) in warning stickers.
> 
> Charles
> 
> On Aug 13, 2005, at 11:31 PM, Dan Shafer wrote:
> 
> > Yeah, as I've said here before, the Player just isn't well
> > documented or understood.
> >
> > It *appears* to me that it is RunRev's intent that the Player
> > should *never* be launched directly, but only indirectly by double-
> > clicking on a stack. The problem, of course, is that you can't
> > prevent users from launching it.
> >
> > I think it should either:
> >
> > (1) Display message that says, in essence, "This is a Player. You
> > got to give it something to play with. Pick a stack file, double-
> > click it and then see how great it is"
> >
> > Or
> >
> > (2) Present with a file selection dialog (filtered for stacks if
> > possible).
> >
> > But that's just me.
> ___
> 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: Disable the Home and End keys on a Mac

2005-08-11 Thread Douglas Gilliland
Klaus,
Your script (set the navigationarrows to false) worked fine. Thank you!  
As for the confusion about the keys - I apologize. I'm using a 17"
Aluminum PowerBook and on my keyboard the Home and End keys are the
arrows forward and backward. My Chemistry students quickly figured out
they could bypass the questions I had written into my stack. Thanks to
Klaus, I now have that problem solved.
Doug Gilliland
Sarasota, FL


On 8/11/05, Ken Ray <[EMAIL PROTECTED]> wrote:
> On 8/11/05 5:01 AM, "Douglas Gilliland" <[EMAIL PROTECTED]> wrote:
> 
> > Is there a way to disable the Home and End keys on a Mac? I have
> > authored stacks for my high school students and don't want them to
> > bypass my questions by hitting these keys to go forward or backward in
> > the stack. Searched the Documentation (use the disable command?) and
> > Shafer's book but none of my disable scripts would work.
> 
> Hmm... Home and End shouldn't navigate cards... only the arrow keys should
> do that. If you turn off the navigationArrows that takes care of the arrow
> keys. To trap for Home and End keys, you need to trap the 'rawKeyDown' or
> 'rawKeyUp' handlers and look for the keycode 65360 (for Home) and 65367 (for
> End).
> 
> HTH,
> 
> Ken Ray
> Sons of Thunder Software
> 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
>
___
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


Disable the Home and End keys on a Mac

2005-08-11 Thread Douglas Gilliland
Is there a way to disable the Home and End keys on a Mac? I have
authored stacks for my high school students and don't want them to
bypass my questions by hitting these keys to go forward or backward in
the stack. Searched the Documentation (use the disable command?) and 
Shafer's book but none of my disable scripts would work.
Thanks,
Doug Gilliland
Sarasota, FL
___
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


Hide menubar problem

2005-08-04 Thread Douglas Gilliland
Is there a way to have my stack move up and occupy the area of the
menubar when I hide it with the hide menubar command (using MacOSX)?
I assumed (my first problem) that when I hid the menubar my 800x600
stack would fill the screen. Instead the menubar is replaced with the
desktop and the bottom of my stack is cut off.
Doug Gilliland
Sarasota, FL
___
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: Flashing numbers added to Number Picker stack.

2005-08-02 Thread Douglas Gilliland
Thanks for the script but I can't get it to work. I get the error:

TypeHandler: error in command
Object  Button
Lineon MakeList DerNumber
Hinton

I'm too new at this to figure it out. Any ideas?
Thanks,
Doug Gilliland
Sarasota, FL


On 7/31/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> sez [EMAIL PROTECTED]:
> >One more question - if it's not asking too much.
> >Sometimes I want a number, once it is selected, to be taken out of
> >circulation. Is there a short script to add that will do this? I have
> >searched all the resources but cannot find anything that explains how
> >to do this.
>Try something like this:
> 
> local WhatzLeft
> 
> on MakeList DerNumber
>   -- call this function when you want to generate a pool of numbers
>   --
>   -- it assumes DerNumber is a positive integer, so watch what you feed it
> 
>   put "" into Rezult
>   repeat with K1 = 1 to DerNumber
> put K1 into item K1 of Rezult
>   end repeat
>   put Rezult into WhatzLeft
> end MakeList
> 
> function PickOne
>   put the number of items in WhatzLeft into PoolSize
>   if PoolSize = 0 then
> return "Hey! Doofus! You ain't got nuttin' left!"
>   else
> put the random of PoolSize into Fred
> put item Fred of WhatzLeft into Rezult
> delete item Fred of WhatzLeft
> return Rezult
>   end if
> end PickOne
> 
>Hope this helps...
> ___
> 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: Flashing numbers added to Number Picker stack.

2005-07-31 Thread Douglas Gilliland
One more question - if it's not asking too much.
Sometimes I want a number, once it is selected, to be taken out of
circulation. Is there a short script to add that will do this? I have
searched all the resources but cannot find anything that explains how
to do this.
Thanks.
Doug Gilliland
Sarasota, FL

On 7/27/05, Douglas Gilliland <[EMAIL PROTECTED]> wrote:
> Jan,
> It works even better than I thought it would.
> Thanks for the quick script - it is greatly appreciated.
> Doug Gilliland
> Sarasota, FL
> 
> 
> On 7/27/05, Jan Schenkel <[EMAIL PROTECTED]> wrote:
> > --- Douglas Gilliland <[EMAIL PROTECTED]> wrote:
> > > I just finished a small stack to select my 9th grade
> > > chemistry
> > > students (sitting at numbered lab tables) at random.
> > > I have 25
> > > students and used the following script to select one
> > > at random, then
> > > speak that number:
> > >
> > > on mouseUp
> > >   put random (25) into field "field1"
> > >  revsetspeechvoice "ralph"
> > >   revspeak field "field1"
> > >   wait 4 sec
> > >   put empty into field "field1"
> > > end mouseUp
> > >
> > > To add a little flair, I would like numbers to
> > > quickly flash on the
> > > screen for one or two seconds before it stops at the
> > > random number.
> > > Looked through the documentation but found nothing.
> > > Any suggestions? I don't need it if it is too
> > > difficult but thought I
> > > would ask. I'm too new to Revolution to know how
> > > much it involves.
> > > Doug Gilliland
> > >
> >
> > Hi Doug,
> >
> > Here's a quick idea:
> > --
> > on mouseUp
> >   ## show some numbers during 2 seconds
> >   repeat 10 times
> > put random (25) into field "field1"
> > wait 200 milliseconds
> >   end repeat
> >   ## now the code you already had
> >   put random (25) into field "field1"
> >   revsetspeechvoice "ralph"
> >   revspeak field "field1"
> >   wait 4 sec
> >   put empty into field "field1"
> > end mouseUp
> > --
> >
> > Hope this helped,
> >
> > Jan Schenkel.
> >
> > Quartam - Tools for Revolution
> > <http://www.quartam.com>
> >
> > =
> > "As we grow older, we grow both wiser and more foolish at the same time."  
> > (La Rochefoucauld)
> >
> >
> >
> > 
> > Start your day with Yahoo! - make it your home page
> > http://www.yahoo.com/r/hs
> >
> >
>
___
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: Flashing numbers added to Number Picker stack.

2005-07-27 Thread Douglas Gilliland
Jan,
It works even better than I thought it would.
Thanks for the quick script - it is greatly appreciated. 
Doug Gilliland
Sarasota, FL


On 7/27/05, Jan Schenkel <[EMAIL PROTECTED]> wrote:
> --- Douglas Gilliland <[EMAIL PROTECTED]> wrote:
> > I just finished a small stack to select my 9th grade
> > chemistry
> > students (sitting at numbered lab tables) at random.
> > I have 25
> > students and used the following script to select one
> > at random, then
> > speak that number:
> >
> > on mouseUp
> >   put random (25) into field "field1"
> >  revsetspeechvoice "ralph"
> >   revspeak field "field1"
> >   wait 4 sec
> >   put empty into field "field1"
> > end mouseUp
> >
> > To add a little flair, I would like numbers to
> > quickly flash on the
> > screen for one or two seconds before it stops at the
> > random number.
> > Looked through the documentation but found nothing.
> > Any suggestions? I don't need it if it is too
> > difficult but thought I
> > would ask. I'm too new to Revolution to know how
> > much it involves.
> > Doug Gilliland
> >
> 
> Hi Doug,
> 
> Here's a quick idea:
> --
> on mouseUp
>   ## show some numbers during 2 seconds
>   repeat 10 times
> put random (25) into field "field1"
> wait 200 milliseconds
>   end repeat
>   ## now the code you already had
>   put random (25) into field "field1"
>   revsetspeechvoice "ralph"
>   revspeak field "field1"
>   wait 4 sec
>   put empty into field "field1"
> end mouseUp
> --
> 
> Hope this helped,
> 
> Jan Schenkel.
> 
> Quartam - Tools for Revolution
> <http://www.quartam.com>
> 
> =
> "As we grow older, we grow both wiser and more foolish at the same time."  
> (La Rochefoucauld)
> 
> 
> 
> 
> Start your day with Yahoo! - make it your home page
> http://www.yahoo.com/r/hs
> 
>
___
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


Flashing numbers added to Number Picker stack.

2005-07-27 Thread Douglas Gilliland
I just finished a small stack to select my 9th grade chemistry
students (sitting at numbered lab tables) at random. I have 25
students and used the following script to select one at random, then
speak that number:

on mouseUp
  put random (25) into field "field1"
 revsetspeechvoice "ralph"
  revspeak field "field1"
  wait 4 sec
  put empty into field "field1"
end mouseUp

To add a little flair, I would like numbers to quickly flash on the
screen for one or two seconds before it stops at the random number.
Looked through the documentation but found nothing.
Any suggestions? I don't need it if it is too difficult but thought I
would ask. I'm too new to Revolution to know how much it involves.
Doug Gilliland
Sarasota, FL
___
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: Newbe Drag & Drop Question

2005-07-20 Thread Douglas Gilliland
Nicholas,
Worked like a dream! Thank you - you made my day.
And thanks to Eric also. While  Nicholas solved this problem, I did
download your stack and will spend some time studying it.
Again I appreciate all the help.
Doug Gilliland
Sarasota FL



On 7/20/05, Eric Chatonet <[EMAIL PROTECTED]> wrote:
> Hi Doug,
> 
> You are right, Rev needs a bit of scripting to handle drag an drop but it's
> a good thing since scripting allows to manage this feature precisely.
> You might be interested in a tutorial about drag and drop you can access
> trough Tutorials Picker.
> Tutorials Picker is available on Rev Online - user: So Smart Software.
> 
> Best Regards from Paris,
> 
> Eric Chatonet.
> 
> 
> Le 20 juil. 05 à 12:46, Douglas Gilliland a écrit :
> 
> 
> 
> I am writing a stack on Density for my students. I want them to drag a 
> 
> cube of iron on to an electronic balance to mass it. The script would 
> 
> change the display of the balance from 0.00 grams to thel mass of the 
> 
> iron sample. 
> 
> 
>  
> 
>  I have made the cube draggable by assigning it the following scipt: 
> 
> on mousedown 
> 
> drag me 
> 
> end mousedown 
> 
> That part works great. 
> 
> 
>  
> 
> I attempted to place a hidden button over the balance and use the 
> 
> dragenter message in a variety of ways but cannot get it to work. 
> 
> When I used HyperStudio the dragdrop function was built into the 
> 
> program so I didn't learn how to script it. 
> 
> Any advice for a Dreamcard newbe?
> 
>  
> 
> So Smart Software 
>   
> For institutions, companies and associations 
> Built-to-order applications: management, multimedia, internet, etc. 
> Windows, Mac OS and Linux... With the French touch
> 
> Free plugins and tutorials on my website 
> 
> Web sitehttp://www.sosmartsoftware.com/ 
> Email[EMAIL PROTECTED]/ 
> Phone33 (0)1 43 31 77 62 
> Mobile33 (0)6 20 74 50 86 
> 
>
___
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


Newbe Drag & Drop Question

2005-07-20 Thread Douglas Gilliland
I am writing a stack on Density for my students. I want them to drag a
cube of iron on to an electronic balance to mass it. The script would
change the display of the balance from 0.00 grams to thel mass of the
iron sample.

 I have made the cube draggable by assigning it the following scipt:
on mousedown
drag me
end mousedown
That part works great.

I attempted to place a hidden button over the balance and use the
dragenter message in a variety of ways but cannot get it to work.
When I used HyperStudio the dragdrop function was built into the
program so I didn't learn how to script it.
Any advice for a Dreamcard newbe?
Thanks,
Doug Gilliland
Sarasota, FL
___
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: Text Hyperlink

2005-07-15 Thread Douglas Gilliland
I'd like to thank you both for your quick response. It is appreciated.
Sincerely,
Doug Gilliland
Sarasota, FL

On 7/14/05, Lynch, Jonathan <[EMAIL PROTECTED]> wrote:
> Linktext is the way to go...
> 
> Such as...
> 
> Set the linktext of word 2 of field "myField" to "myCard"
> 
> 
> Then, in order to respond to it, you can do one of the following:
> 
> If it is a locked field, do this:
> 
> On linkclicked pLink
>   If exists(card pLink of this stack) = true then go card pLink
> End linkclicked
> 
> 
> 
> 
> If this is in an unlocked field, linkclicked won't work. For an unlocked
> field, use this:
> 
> On selectionchanged
>   -- make sure it is a click action, rather than a highlighting action
>   If word 4 of the selectedchunk <= word 2 of the selectedchunk then
> exit selectionchanged
> 
>   -- then get the link information of the selected text and respond to
> it
>   Put the linktext of the selection into tLink
>   If exists(card tLink of this stack) = true then go card tLink
> 
> End selectionchanged
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Douglas
> Gilliland
> Sent: Thursday, July 14, 2005 12:04 PM
> To: use-revolution@lists.runrev.com
> Subject: Text Hyperlink
> 
> How can I select a word in a scrolling text field and assign it
> actions? I have been placing transparent buttons over text in
> non-scrolling fields- works great but won't work for scrolling fields.
> Searched the documentation and Dan's book but no answers. Tried
> selecting the text and using link (hoping for a hyperlink) but that
> looks like it is more for grouping text.
> 
> I know this is a simple question (as all questions are when you know
> the answer) but being a newbe who authored in HyperStudio for years, I
> can't figure it out.
> 
> I do appreciate all the advice I have received in previous posts.
> Doug Gilliland
> Sarasota, FL
> ___
> 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


Text Hyperlink

2005-07-14 Thread Douglas Gilliland
How can I select a word in a scrolling text field and assign it
actions? I have been placing transparent buttons over text in
non-scrolling fields- works great but won't work for scrolling fields.
Searched the documentation and Dan's book but no answers. Tried
selecting the text and using link (hoping for a hyperlink) but that
looks like it is more for grouping text.

I know this is a simple question (as all questions are when you know
the answer) but being a newbe who authored in HyperStudio for years, I
can't figure it out.

I do appreciate all the advice I have received in previous posts. 
Doug Gilliland
Sarasota, FL
___
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: Making an image draggable

2005-07-09 Thread Douglas Gilliland
Thanks to all - it's great to have this as a resource for learning transcript.
The following script works great. 
on mouseDown
 grab me
end mouseDown
I will also try the others just to learn more about Revolution.
Thanks again.
Doug Gilliland
Sarasota, Fl
dodging the bullet with hurricane Dennis :>)

On 7/9/05, Derek Bump <[EMAIL PROTECTED]> wrote:
> Douglas Gilliland wrote:
> > I know it must be easy but I cannot figure out the script to make an
> > image of a metric ruler draggable so my students can drag it around
> > the screen to measure items in a quiz stack I am writing.
> 
> You could try the following...
> 
> 1.  Create a separate stack.
> 2.  Place the "ruler.jpg" image on the stack.
> 3.  Resize the stack so it is the same dimensions as the image.
> 4.  Set the windowDecorations to empty
> 5.  Add the following to the stack's script...
> 
> local sgDragging
> local sgOffset
> 
> on mouseDown
>put true into sgDragging
>put the mouseLoc into sgOffset
> end mouseDown
> 
> on mouseMove
>if sgDragging then
>  set the topLeft of this stack to \
>  item 1 of the screenMouseLoc - item 1 of sgOffset, \
>  item 2 of the screenMouseLoc - item 2 of sgOffset
>end if
> end mouseMove
> 
> on mouseUp
>put false into sgDragging
> end mouseUp
> 
> on mouseRelease
>put false into sgDragging
> end mouseRelease
> 
> 
> Derek Bump
> Dreamscape Software
> ___
> Compress Photos for the Web with JPEGCompress
> 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


Making an image draggable

2005-07-09 Thread Douglas Gilliland
I know it must be easy but I cannot figure out the script to make an
image of a metric ruler draggable so my students can drag it around
the screen to measure items in a quiz stack I am writing.
Tried several variations of the following script:
on mousedown
make image "ruler.jpg" draggable
end mousedown

Thanks for any help for this newbe.
Doug Gilliland
___
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


Multiple Choice Editor stack

2005-07-05 Thread Douglas Gilliland
As a Dreamcard newbe I am going through the tutorial movies on the web
site. I've authored two programs for my high school Chemistry students
and would now like to construct some quizzes that go along with the
programs.

I viewed the Multiple Choice Quiz movie but can't find the stacks that
the movie makes reference to. Searched the Dreamcard folder, my HD and
the Revolution site but no go.
Anyone tell me where I can find the multiple choice editor sample stack?
Thanks,
Doug Gilliland
___
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


Dreamcard Spell Check

2005-07-01 Thread Douglas Gilliland
I'm new to Revolution and can't find a spell check built into the
program. Any suggestions other than purchasing a spell check program?
I'm working on a G4 PowerBook, and Tiger's  built-in spell check
doesn't work.
Thanks,
Doug Gilliland
___
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: Dreamcard, am I missing something?

2005-06-10 Thread Douglas Gilliland
I agree. I am a high school physical science educator that has used
HyperStudio for ten years to author programs for my students. When
they double clicked on a program, a splash screen told them they were
running a HyperStudio program but that was it - they didn't have to
navigate to it. The program launched automatically.
But HyperStudio didn't upgrade to Mac OSX so I am now using DreamCard
to rewrite my stacks but don't like the idea that my students have to
navigate to my program after clicking on it's icon.
I also would like to know is there a way to eliminate this other than
purchasing Revolution Studio? I don't mind a splash screen to show my
students they are running a Revolution program, but why not skip the
navigation part since they already clicked on the program they wish to
run.
Doug Gilliland


On 6/10/05, Peter T. Evensen <[EMAIL PROTECTED]> wrote:
> The Dreamcard player opens  the revOnline viewer.  When I first ran it, I
> was confused as to what to do.  I finally realized I need to click on the
> folder icon to open my stack.
> 
> Was anyone else confused by this?  Is there an easier way?
> 
> Peter T. Evensen
> http://www.PetersRoadToHealth.com
> 24-hour recorded info hotline: 1-800-624-7671
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: audioClip

2005-06-01 Thread Douglas Gilliland
I'm using Dreamcard but it should be the same in Revolution:
1. Go to File and drag down to Import as Control. Select  Audio file.
2. Navigate to the sound file you wish to import into your stack and
select Open.
The sound file is now imported into your stack.
If you imported a sound file named OhYeah.wav you can access it by
using the following script:
 play "OhYeah.wav"
While this works for me, I've only been using Dreamcard for a week so
there may be some other way. But this way works for me.
Doug Gilliland


On 6/1/05, Alex Tweedly <[EMAIL PROTECTED]> wrote:
> Sorry, this feels like a really dumb question, but I've already wasted
> my required two hours searching through the docs .
> 
> How do I create an audio clip within a stack ?
> 
> I have a wav file - but I want to include it as a clip within the stack.
> I can find all kinds of ways to change it, to play it, to change the
> defaults used when I create a new audioclip - but I'll be darned if I
> can find out how to actually create one.
> 
> I know it's not "create" - that's only for items that go on a card.
> I can't use copy or clone - I don't have one yet to do that with :-)
> 
> So if someone could give me a pointer to the bit of the docs that I
> can't find, I'd be very grateful.
> 
> Thanks
> -- Alex.
> 
> --
> Alex Tweedly   http://www.tweedly.net
> 
> 
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.322 / Virus Database: 267.3.0 - Release Date: 30/05/2005
> 
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Dreamcard script problem

2005-05-31 Thread Douglas Gilliland
After spending hours trying to determine why the following
text-to-speech script wouldn't work in Mac OS 10.3, I trashed the
DreamCard Player version 2.5 (that came with Dreamcard two months ago)
and installed version 2.6.2.77.  The script works fine now.
Just thought I would let others know to save them hours of frustration.
Doug Gilliland

on mouseUp
revSetSpeechVoice "Victoria"
revSetSpeechSpeed 130
revSpeak "That is not correct. Try again"
answer "The Density of Water is 1.00 g/mL."
end mouseUp



>I use text-to-speech frequently in my HyperStudio programs so I am
>sure that isn't the problem. Also, the button answer text doesn't show
>up which is independent of the sound.
>Best regards from Florida,
>Doug


On 5/28/05, Eric Chatonet  wrote:
> Hi DOug,
> 
> If text to speech is not available on the current system, the text-to-
> speech commands set the result function to an error message.
> And we may think that's the problem.
> So, you could try something like:
> 
> put revSpeechVoices() into tVoices
> if it = empty then answer error "No computer's text-to-speech
> capability!"
> else etc.
> 
> or
> 
> revSpeak "All is well."
> if the result <> empty then answer the result.
> 
> Managing errors is one of the most important things in any software ,-)
> 
> Best regards from Paris,
> 
> Eric Chatonet.
> 
> Le 28 mai 05 à 15:52, Douglas Gilliland a écrit :
> 
> > I am an educator that just recently switched from HyperStudio (using
> > some HyperLogo scripting) to Dreamcard. I have created a stack to use
> > in my science class that has the following script:
> >
> > on mouseUp
> >   revSetSpeechVoice "Victoria"
> >   revSetSpeechSpeed 130
> > revSpeak "That is not correct. Try again"
> >   answer "The Density of Water is 1.00 g/mL."
> > end mouseUp
> >
> > Problem: It works find on my PowerBook (which I have DreamCard
> > installed). But when I play it on a student eMac (with the Dreamcard
> > Player) the button action does not execute. Another button with a
> > simple "go next" script works fine.
> >
> > Any ideas on what is preventing the button action?
> > Thanks,
> > Doug Gilliland
> 
> 
> So Smart Software
> 
> For institutions, companies and associations
> Built-to-order applications: management, multimedia, internet, etc.
> Windows, Mac OS and Linux... With the French touch
> 
> Plugins, tutorials and more on our website
> 
> Web sitehttp://www.sosmartsoftware.com/
> Emaileric.chatonet at sosmartsoftware.com/
> Phone33 (0)1 43 31 77 62
> Mobile33 (0)6 20 74 50 86
> 
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Dreamcard script problem

2005-05-28 Thread Douglas Gilliland
Eric,
I use text-to-speech frequently in my HyperStudio programs so I am
sure that isn't the problem. Also, the button answer text doesn't show
up which is independent of the sound.
Best regards from Florida,
Doug


On 5/28/05, Eric Chatonet <[EMAIL PROTECTED]> wrote:
> Hi DOug,
> 
> If text to speech is not available on the current system, the text-to-
> speech commands set the result function to an error message.
> And we may think that's the problem.
> So, you could try something like:
> 
> put revSpeechVoices() into tVoices
> if it = empty then answer error "No computer's text-to-speech
> capability!"
> else etc.
> 
> or
> 
> revSpeak "All is well."
> if the result <> empty then answer the result.
> 
> Managing errors is one of the most important things in any software ,-)
> 
> Best regards from Paris,
> 
> Eric Chatonet.
> 
> Le 28 mai 05 à 15:52, Douglas Gilliland a écrit :
> 
> > I am an educator that just recently switched from HyperStudio (using
> > some HyperLogo scripting) to Dreamcard. I have created a stack to use
> > in my science class that has the following script:
> >
> > on mouseUp
> >   revSetSpeechVoice "Victoria"
> >   revSetSpeechSpeed 130
> > revSpeak "That is not correct. Try again"
> >   answer "The Density of Water is 1.00 g/mL."
> > end mouseUp
> >
> > Problem: It works find on my PowerBook (which I have DreamCard
> > installed). But when I play it on a student eMac (with the Dreamcard
> > Player) the button action does not execute. Another button with a
> > simple "go next" script works fine.
> >
> > Any ideas on what is preventing the button action?
> > Thanks,
> > Doug Gilliland
> 
> 
> So Smart Software
> 
> For institutions, companies and associations
> Built-to-order applications: management, multimedia, internet, etc.
> Windows, Mac OS and Linux... With the French touch
> 
> Plugins, tutorials and more on our website
> 
> Web sitehttp://www.sosmartsoftware.com/
> Email[EMAIL PROTECTED]/
> Phone33 (0)1 43 31 77 62
> Mobile33 (0)6 20 74 50 86
> 
> 
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Dreamcard script problem

2005-05-28 Thread Douglas Gilliland
I am an educator that just recently switched from HyperStudio (using
some HyperLogo scripting) to Dreamcard. I have created a stack to use
in my science class that has the following script:

on mouseUp
  revSetSpeechVoice "Victoria"
  revSetSpeechSpeed 130
revSpeak "That is not correct. Try again"
  answer "The Density of Water is 1.00 g/mL."
end mouseUp

Problem: It works find on my PowerBook (which I have DreamCard
installed). But when I play it on a student eMac (with the Dreamcard
Player) the button action does not execute. Another button with a
simple "go next" script works fine.

Any ideas on what is preventing the button action?
Thanks,
Doug Gilliland
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution