Option menu question

2000-12-11 Thread Hugh Senior

Is it possible to pre-set the selected line of an Option menu?

/H
Hugh Senior

The Flexible Learning Company
Consultant Programming  Software Solutions
Fax/Voice: +44 (0)1483.27 87 27
Email: [EMAIL PROTECTED]
Web: www.flexibleLearning.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: Option menu question

2000-12-11 Thread Peter Reid

Is it possible to pre-set the selected line of an Option menu?

/H
Hugh Senior

Hi Hugh,

What about setting the menuHistory to the line number of the option 
you want as the default, does this do the trick?

   e.g.

   set the menuHistory of button theOptions to thePreset
   set the label of button theOptions \
   to line thePreset of the text of button theOptions

this should set the option pick and pre-set the visible selection as well.

Cheers
Peter
-- 

Peter Reid
Reid-IT Limited, Loughborough, Leics., UK
Tel: +44 (0)1509 268843 Fax: +44 (0)870 052 7576
E-mail: [EMAIL PROTECTED]
Web: http://www.reidit.co.uk

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: 256 Color support

2000-12-11 Thread Kevin Miller

On 10/12/00 8:45 pm, Monte Goulding [EMAIL PROTECTED] wrote:

 I have been thinking about this latest problem and playing with it on my
 desktop running Win 98 and have found that on it when the colors are set to
 256 the button icons will display but the armed buttons instead of being a
 beep blue are a slightly lighter shade of grey. I can't find any function
 that will return the color bit level. Should I post a bug report or is this
 something I'm doing wrong. I'm now confused because the button icons display
 on my computer but on on the old laptop at 256 colors.

Sound like a video card issue: the report should be sent to the maker of the
video card (see the read me file for the latest version of MC for a comment
on this type of issue).

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.




Layering a field over a Movie Player

2000-12-11 Thread Jack

Is it possible to apply a text field over a player object - in order to
see the text? This would be like credits or titles in a movie or video.
Once they are layered over the top - it will be easy to apply many neat
effects.  Any ideas?

Jack Rarick
Braintree Athletic Systems


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.




Iconic property

2000-12-11 Thread PEChumbley

I made a new stack called "Test1" containing one button.  The script of the 
button is:

  on mouseUp
set the iconic of this stack to not the iconic of this stack
  end mouseUp

I am running MC 2.3.1 on a Mac.  I hoped that clicking the button would 
iconify the stack using windowshade.  I click the button and nothing happens. 
 Using the message box, I type:

  put the iconic of stack "test1"

and I see that the property switches between true and false each time I click 
the button yet the stack does not minimize using windowshade.  I also tried 
typing into the message box:

  set the iconic of stack "Test1" to true

and again, nothing happens.  Am I doing something wrong?

Philip Chumbley

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: Layering a field over a Movie Player

2000-12-11 Thread Kevin Miller

On 11/12/00 10:05 pm, Jack [EMAIL PROTECTED] wrote:

 Is it possible to apply a text field over a player object - in order to
 see the text? This would be like credits or titles in a movie or video.
 Once they are layered over the top - it will be easy to apply many neat
 effects.  Any ideas?

Yes, you need to turn alwaysBuffer on for the player first though.  (Which
means it can only be controlled by script - mouse interaction with the
controller won't work.)

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: Iconic property

2000-12-11 Thread Scott Raney

On Tue, 12 Dec 2000 [EMAIL PROTECTED] wrote:

 I made a new stack called "Test1" containing one button.  The script of the 
 button is:
 
   on mouseUp
 set the iconic of this stack to not the iconic of this stack
   end mouseUp
 
 I am running MC 2.3.1 on a Mac.  I hoped that clicking the button would 
 iconify the stack using windowshade.  I click the button and nothing happens. 
  Using the message box, I type:
 
   put the iconic of stack "test1"
 
 and I see that the property switches between true and false each time I click 
 the button yet the stack does not minimize using windowshade.  I also tried 
 typing into the message box:
 
   set the iconic of stack "Test1" to true
 
 and again, nothing happens.  Am I doing something wrong?

Yes: you're assuming that it's possible for an application to minimize
its own windows on the Mac.  Turns out it's not, mostly as a result of
the fact that "windowshading" is a hack and not really a part of the
OS.  Indeed, there isn't even any notification given to an application
when its windows have been minimized by the user nor any API support
for determining if it's been done, so the engine just has to poll one
of the window regions any time any event comes in for that window and
deal with it then.

If there's a silver lining here, it's that Carbon finally provides an
API for all of this, which means that eventually this will be
supported, if only on systems new enough to support Carbon.
Unfortunately Carbon itself is a moving target, and it's possible that
it will only work on Mac OS X, and maybe OS 9.X systems that have
upgraded to a working version of Carbon (which will be something later
than the current 1.2 release ;-)
  Regards,
Scott

 Philip Chumbley


Scott Raney  [EMAIL PROTECTED]  http://www.metacard.com
MetaCard: You know, there's an easier way to do that...


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

2000-12-11 Thread MMessieh

How do you place scroll bars on a BACKGROUND so that the entire background 
with its grouped objects can be scrolled both horizontally and vertically?
This is to accomodate viewing a stack in a small screen.

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

2000-12-11 Thread Monte Goulding

I rareley use backgrounds. I think they have the same properties as groups
so they should have their own vertical and horizontal scrollBars

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, 12 December 2000 1:05 PM
To: [EMAIL PROTECTED]
Subject: Re: scroll


How do you place scroll bars on a BACKGROUND so that the entire background
with its grouped objects can be scrolled both horizontally and vertically?
This is to accomodate viewing a stack in a small screen.

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

2000-12-11 Thread Simon Lord

Old argument.  Besides, I fell in love with groups and how they operate in
MetaCard.

Just awesome.

--

Cheers,
Simon

Graphic Development: http://www.amigo-3.com

--
"The great discoveries in science are not punctuated by 'Eureka! I've found
it!' but rather "Hmmm,that's funny" Isaac Asimov

 From: "Monte Goulding" [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 Date: Tue, 12 Dec 2000 12:55:00 +1030
 To: [EMAIL PROTECTED]
 Subject: RE: scroll
 
 I rareley use backgrounds. I think they have the same properties as groups
 so they should have their own vertical and horizontal scrollBars
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED]
 Sent: Tuesday, 12 December 2000 1:05 PM
 To: [EMAIL PROTECTED]
 Subject: Re: scroll
 
 
 How do you place scroll bars on a BACKGROUND so that the entire background
 with its grouped objects can be scrolled both horizontally and vertically?
 This is to accomodate viewing a stack in a small screen.
 
 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.
 


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.