RE: Launching a local file in the default browser

2003-08-11 Thread Ken Ray
Richard, you posted this to the MC list last year under the header :

 Found it:  You have to explicitely tell the Finder, like this:

put "tell application ""e&"Finder""e&cr&"open ""e& \
tFilePath "e&cr&"end tell" into s
do s as AppleScript

See: http://lists.runrev.com/pipermail/metacard/2002-January/000569.html

But I just checked it and it doesn't work for me. I'll keep looking...

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/ 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Richard Gaskin
> Sent: Saturday, August 09, 2003 1:14 AM
> To: MetaCard List
> Subject: Launching a local file in the default browser
> 
> 
> Yep, the same ol' question:  how do I launch a local file in 
> the default browser on Mac OS X?
> 
> And for future reference:  Where is the definitive answer archived?
> 
> TIA -
> 
> -- 
>  Richard Gaskin 
>  Fourth World Media Corporation
>  Developer of WebMerge: Publish any database on any Web site  
> ___
>  [EMAIL PROTECTED]   http://www.FourthWorld.com
>  Tel: 323-225-3717   AIM: FourthWorldInc
> 
> ___
> metacard mailing list
> [EMAIL PROTECTED] 
> http://lists.runrev.com/mailman/listinfo/metac> ard
> 


___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Script Limits and solid IDE evolution!

2003-08-11 Thread jbv
>
>
> I still think the free StarterKit was the best thing ever.
>
> One could play with it, get used to the app and even build useful
> things :-)
>
> and 30 (contiguous?) days may be not enough, even with no script
> limits...
>

And BTW is this 30 days trial a valid / useful protection ?

I know ppl who build huge projects by re-downloading again and again
Flash MX (or other apps) evaluation versions every 30 days...

Telling the truth I downloaded the Rev 2.01 (AFAIR) about 2 weeks
ago, but haven't downloaded the key yet, as I'm not sure I'll have
enough time within the next 30 days to explore every feature...

JB




___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Drawers

2003-08-11 Thread J. Landman Gay
On 8/10/03 5:14 PM, Wilhelm Sanke wrote:

If you want to have this "visual effect" of a drawer being opened and
closed like a real drawer, it is important to first open the drawers
invisibly, and then take care that the drawers start from underneath the
base stack and prevent that flickering that occurs when the vis of the
drawer is set the true.
I may not understand what you mean, but when I use the "drawer" command, 
the stack animates and slides out exactly like the ones in Apple's 
applications. There is a smooth glide from closed to open.

The "drawer" command slides the stack out. A "hide stack myStack" 
command slides it back in. Once the stack is set to be a drawer, you can 
just use "show stack myStack" to slide it open again.

There doesn't seem to be any need to manually adjust the position of the 
stack as it slides open. The stack also appears "underneath" the main stack.

This is all with version 2.1 beta, of course.

--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


MC in RR

2003-08-11 Thread FlexibleLearning
Having been 'out of things' for well over a year, I am delighted to see how much RR has evolved since 'the early days'. So much discussion on the 'take-over' and Kevin's reasuring post would seem to pave my way to adopt the RR approach BUT

Q1. Can I still use my MetaCard stacks in the RR GUI? Or do they have to be 'translated'? Or do I simply change the suffix?

Q2. Can I use RR in 'spartan metaCard mode' and continue to 'roll my own'?

Q3. I have been happy with mc2.3 and mc2.4 for ages and most of the new features have not really impacted on me (under the rule of appropriateness whereby 'Just because you can does not mean you have to'). As my subscription has lapsed, I am a tad confused about the upgrade/cross-grade/transfer licence and price. What's the cost to buy into the new equivalent?

Not much FAQ-wise on the RR website on the MC transfer implications, but I apologise in advance if I have missed posts covering the above.

Any pointers would be appreciated, on or off list.

Hey-ho... I suddenly feel rather old. And I wasn't two weeks ago.

/H

_
Hugh Senior
The Flexible Learning Company
Consultant Programming & Software Solutions
Fax/Voice: +44 (0)1483.27 87 27
Email: mailto:[EMAIL PROTECTED]
Web: www.flexibleLearning.com


Re: Launching a local file in the default browser

2003-08-11 Thread Scott Rossi
On 8/9/03 9:04 AM, "Richard Gaskin" <[EMAIL PROTECTED]> wrote:

>> If there's not a better way, you could work around this by creating a
>> dummy HTML file that just redirects the browser to the correct file.
>> That'll get you in the right app, *then* open the file.
> 
> But how to get the default browser so I can obtain its creator code?

I'm not sure how to extract the above, but I'm pretty sure that any HTML
file without specific creator/type info will automagically open in the
default browser -- if this is your concern you shouldn't need to worry about
it working.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia & Design
-
E: [EMAIL PROTECTED]
W: http://www.tactilemedia.com

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: MC or Intel precision?

2003-08-11 Thread Jeanne A. E. DeVoto
At 7:33 AM -0700 8/10/03, MisterX wrote:
>put 2 ^ .5 = 1.414214
>put pi = 3.14159265358979323846
>put pi * 1 = 3.141593 --- ooops...
>put 0.0005 * 0.0005 = 0
>
>Other than start writting out externals,
>is there a way to use "Real" math precision?


The numberFormat property sets the precision of reported arithmetic results:

  set the numberFormat to "."
  put pi * 1 -- reports 3.14159265359

--
Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
Runtime Revolution Limited - Software at the Speed of Thought
http://www.runrev.com/


___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: MC or Intel precision?

2003-08-11 Thread xbury . cs

Well, that was confusing enough (coming from C++/MC debugging comparisons!)

Thanks a million.00.1!

Xavier

On 10/08/2003 21:45:11 metacard-admin wrote:
>At 7:33 AM -0700 8/10/03, MisterX wrote:
>>put 2 ^ .5 = 1.414214
>>put pi = 3.14159265358979323846
>>put pi * 1 = 3.141593 --- ooops...
>>put 0.0005 * 0.0005 = 0
>>
>>Other than start writting out externals,
>>is there a way to use "Real" math precision?
>
>
>The numberFormat property sets the precision of reported arithmetic results:
>
>set the numberFormat to "."
>put pi * 1 -- reports 3.14159265359

Visit us at http://www.clearstream.com
  
IMPORTANT MESSAGE

Internet communications are not secure and therefore Clearstream International does not accept legal responsibility for the contents of this message.

The information contained in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. Any views expressed in this e-mail are those of the individual sender, except where the sender specifically states them to be the views of Clearstream International or of any of its affiliates or subsidiaries.

END OF DISCLAIMER


Re: Script limit - clarify please - BRAVO!

2003-08-11 Thread Pierre Sahores
Ken Ray wrote:
Kevin,

That was one heck of a post... thanks for making it all very clear that
it is and has always been RunRev's intent to do the best thing for its
customers.
Bravo!

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/ 


The same there, Kevin ! Thanks a lot. I'm, more and more, thinking that 
we have just to go head, all together and welcome to the next years...

Bravo, again !

Best Regards to the RunRev's Rockers Team, you too, Scott :-)

--
Bien cordialement, Pierre Sahores
Inspection académique de Seine-Saint-Denis
Serveurs d'applications et SGBDR (Web/PGI)
Penser et produire l'avantage compétitif
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard