Opening one stack from another

2000-12-13 Thread Gregory Lypny

Hi Everyone,

 I hope you'll excuse the naive question, but I'm having trouble 
opening one stack from another.

 I'm trying to create a splash screen with stack X which will then 
open stack Y, so I tried this in the stack script of X:

 on openStack
  wait 2 seconds
  go to stack "Y"
 end openStack

 It doesn't work.  Stack Y resides in the same folder as stack X.  I 
also tried referring to stack Y as stack "Y.mc", and I included stack Y 
in stack X's "Stack files..." as well.  Should I have specified the full 
path name of stack Y?

 I've also been reading about modes but am finding the online 
documentation a little obtuse.  I'd like the splash screen (stack X) to 
appear without a title bar or close box.  How can I do that?

 Regards,

  Greg




_
Gregory Lypny
Associate Professor of Finance
John Molson School of Business
Concordia University

_
"Take chances, make mistakes!"
   - Ms Frizzle, The Magic School Bus



Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: Opening one stack from another

2000-12-13 Thread michael kann


--- Gregory Lypny [EMAIL PROTECTED] wrote:
--- I'm having trouble opening one stack from another.

create a button with the following script:

on mouseUp
open stack "goodStack"
end mouseUp

__
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: Opening one stack from another

2000-12-13 Thread michael kann


--- Gregory Lypny [EMAIL PROTECTED] wrote:
I'd like the splash screen (stack X) to appear without
a title bar or close box.  How can I do that?

-- See the entry "decorations" in the index

__
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/

Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: Opening one stack from another

2000-12-13 Thread Kevin Miller

On 13/12/00 1:47 pm, Gregory Lypny [EMAIL PROTECTED] wrote:

 I hope you'll excuse the naive question, but I'm having trouble
 opening one stack from another.
 
 I'm trying to create a splash screen with stack X which will then
 open stack Y, so I tried this in the stack script of X:
 
 on openStack
 wait 2 seconds
 go to stack "Y"
 end openStack
 
 It doesn't work.  Stack Y resides in the same folder as stack X.  I
 also tried referring to stack Y as stack "Y.mc", and I included stack Y
 in stack X's "Stack files..." as well.  Should I have specified the full
 path name of stack Y?

Does the article on using stackFiles (class 3) on our web site help?

 I've also been reading about modes but am finding the online
 documentation a little obtuse.  I'd like the splash screen (stack X) to
 appear without a title bar or close box.  How can I do that?

set the decorations of stack "x" to empty

Regards,

Kevin

Kevin Miller [EMAIL PROTECTED] http://www.runrev.com/
Runtime Revolution Limited (formerly Cross Worlds Computing).
Tel: +44 (0)131 672 2909.  Fax: +44 (0)1639 830 707.


Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




RE: Opening one stack from another

2000-12-13 Thread Monte Goulding

Are the stacks you are trying to open in the same folder as the engine? the
paths need to be relative to the directory property which is by default the
directory that the engine is in.

Use the decorations property to hide/shoe the title bar close bos and
min/max/iconify icons

Regards

Monte

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Gregory Lypny
Sent: Thursday, 14 December 2000 12:18 AM
To: [EMAIL PROTECTED]
Subject: Opening one stack from another


Hi Everyone,

 I hope you'll excuse the naive question, but I'm having trouble
opening one stack from another.

 I'm trying to create a splash screen with stack X which will then
open stack Y, so I tried this in the stack script of X:

 on openStack
  wait 2 seconds
  go to stack "Y"
 end openStack

 It doesn't work.  Stack Y resides in the same folder as stack X.  I
also tried referring to stack Y as stack "Y.mc", and I included stack Y
in stack X's "Stack files..." as well.  Should I have specified the full
path name of stack Y?

 I've also been reading about modes but am finding the online
documentation a little obtuse.  I'd like the splash screen (stack X) to
appear without a title bar or close box.  How can I do that?

 Regards,

  Greg




_
Gregory Lypny
Associate Professor of Finance
John Molson School of Business
Concordia University

_
"Take chances, make mistakes!"
   - Ms Frizzle, The Magic School Bus



Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.


Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.




Re: Opening one stack from another

2000-12-13 Thread Gregory Lypny

Thanks to all for your responses.  I'll give your suggestions a shot.

 Greg






Gregory Lypny
Associate Professor
John Molson School of Business
Concordia University
Montreal, Canada


"I am just going outside and may be some time."
   - Captain Lawrence Oates, 17 March 1912, Scott Expedition



Archives: http://www.mail-archive.com/metacard@lists.runrev.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to [EMAIL PROTECTED], not this list.