Re: Syntax problem

2005-05-06 Thread Sarah Reichelt
I don't think I understand your reply. The variable theLink holds a
well-formed url. I'm looking to add to that url by adding the contents 
of
another variable subID

Example:
variable theLink holds  http://www.google.com;
variable subID holds a number such as 44568
I'm looking for a way to combine both variables so the result is:
http://www.google.com/44568
Try this:
put theLink  /  subID into tURL
get tURL
BUT, you must make sure that this gives you a well-formed URL, so that 
is why I suggested putting the URL into the message box first and 
seeing if it worked in a browser.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Syntax problem

2005-05-06 Thread Ken Ray
On 5/6/05 12:50 AM, Varen Swaab [EMAIL PROTECTED] wrote:

 Thanks Sarah
 
 I don't think I understand your reply. The variable theLink holds a
 well-formed url. I'm looking to add to that url by adding the contents of
 another variable subID
 
 Example:
 
 variable theLink holds  http://www.google.com;
 variable subID holds a number such as 44568
 
 I'm looking for a way to combine both variables so the result is:
 
 http://www.google.com/44568
 
 I have been trying to combine the values of both the variables like this:
 
 get URL(theLink/subID)

You almost have it... you don't need the first and last , so what you're
really looking for is:

  theLink  /  subID

which will give you

  http://www.google.com/44568

So to pass that to 'get URL' you just do:

  get URL(theLink  /  subID)

The  is a concatenation operator, so have an  at the beginning of the
string confuses Rev, and the one at the end is unnecessary.

Hope this helps,

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


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Syntax problem

2005-05-06 Thread Varen Swaab

Sarah  Ken

Thanks to your suggestions I've got the problem licked. The url is now
loading as intended. Sometimes it's the easiest problems that stump us the
most. 

Var


On 5/5/05 11:41 PM, Ken Ray [EMAIL PROTECTED] wrote:

 On 5/6/05 12:50 AM, Varen Swaab [EMAIL PROTECTED] wrote:
 
 Thanks Sarah
 
 I don't think I understand your reply. The variable theLink holds a
 well-formed url. I'm looking to add to that url by adding the contents of
 another variable subID
 
 Example:
 
 variable theLink holds  http://www.google.com;
 variable subID holds a number such as 44568
 
 I'm looking for a way to combine both variables so the result is:
 
 http://www.google.com/44568
 
 I have been trying to combine the values of both the variables like this:
 
 get URL(theLink/subID)
 
 You almost have it... you don't need the first and last , so what you're
 really looking for is:
 
   theLink  /  subID
 
 which will give you
 
   http://www.google.com/44568
 
 So to pass that to 'get URL' you just do:
 
   get URL(theLink  /  subID)
 
 The  is a concatenation operator, so have an  at the beginning of the
 string confuses Rev, and the one at the end is unnecessary.
 
 Hope this helps,
 
 Ken Ray
 Sons of Thunder Software
 Web site: http://www.sonsothunder.com/
 Email: [EMAIL PROTECTED]
 
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 http://lists.runrev.com/mailman/listinfo/use-revolution

 
 
 
 Varen Swaab



___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode

2005-05-06 Thread Klaus Major
Hi Thomas,
Thank you so much,
Within 1 minute of downloading your helpful stack file I figured  
out how to do it.
Double unicodetext was needed at both ends to make it work.

 set the unicodetext of field Messages of card Messages of /
stack Editor to the unicodetext of field gChangeMessages
just curious, but what is the difference (except in the names of the  
fields) to my proposal:

set the unicodetext of fld the empty one to the unicodetext of  
field the one with mixed text in it

??? :-)
It now looks and seems to work great.
Tom
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Cursor issues in Tiger

2005-05-06 Thread Klaus Major
Hi Chipp,
Paul,
I too have seen this, but not only in Tiger, but Panther and even  
WinXP. The cursor just seems to get stuck after leaving an editable  
text fld. I think Jerry Daniels has a bug report on this.

My fix is to 'start using stack altCursorLib'
i know you are no Metacard man ;-), but since there is this lovely  
bug in the engine:

- set cursor to hand
results in the resize cursor, could you just change these lines to
- set cursor to 8
in your altCursorLib, which does what we exspect and is 3  
characters less to type :-)

Thanks a lot :-)
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Tiger problems...

2005-05-06 Thread Chris Carroll-Davis
We have a bunch of Applescripts that we fire from from SC that are  
broken under Tiger.  These are all to control and manipulate movies  
with QTPlayer. Apple actually seem to have changed the syntax for  
scripting with QTPlayer.  Ughhh.  I suppose this is a QT7 issue  
rather than Applescript per se, but still it goes to show that  
nothing is safe...

Chris
On 5 May 2005, at 21:40, Chipp Walters wrote:
Also, I've found some Applescript isn't working correctly either,  
and need to do further testing to figure out why.

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Folder list order

2005-05-06 Thread Chris Carroll-Davis
Hello folks -
just thought you might like to know about a weird issue I came across  
the other day.  Not a bug in Rev, but weird behaviour on Windows that  
cost me hours (probably days) and about 20 CD-Rs...

If you get a list of folders (using the folders ) on WIndows  
running from HD the list is alphabetical, NON case-sensitive, so  
(aardvark comes before Zoo).

If you get the same list running from CD, the list IS case-sensitve  
(so Zoo  comes before aardvark).

Perhaps this is a known issue to seasoned Revvers, but it was new to  
me!  This caused my prog to fail only when running from CD on  
Windows.  Running from HD on Windows, or on Mac HD or CD was fine.   
The only way I could track problem down was to cut disc after disc.   
ARGHH.

Anyway, moral of story is that it is probably prudent to sort the  
folder list as soon as you've got it so that you ensure consistent  
results.  Haven't checked if this is the same with files - but I  
expect so...

Chris
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Folder list order

2005-05-06 Thread MisterX
Chris,

You should try next time to burn mountable images of cds or virtualCDs.

Look it up, it's great. Built in Nero, VirtualCD, the was an alladyn tools
and an even better shareware in my macos times - macImage or something.
Others like ultraIso, winIso, etc, etc, etc do the same for different prices
and features. 

Eventually a ramdisk if you can lock the write access can do the job even
faster too.

The sorting issue seems bizarre indeed!

cheers
Xav

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Chris Carroll-Davis
 Sent: Friday, May 06, 2005 12:40
 To: How to use Revolution
 Subject: Folder list order
 
 Hello folks -
 
 just thought you might like to know about a weird issue I 
 came across the other day.  Not a bug in Rev, but weird 
 behaviour on Windows that cost me hours (probably days) and 
 about 20 CD-Rs...
 
 If you get a list of folders (using the folders ) on 
 WIndows running from HD the list is alphabetical, NON 
 case-sensitive, so (aardvark comes before Zoo).
 
 If you get the same list running from CD, the list IS 
 case-sensitve (so Zoo  comes before aardvark).
 
 Perhaps this is a known issue to seasoned Revvers, but it was 
 new to me!  This caused my prog to fail only when running from CD on  
 Windows.  Running from HD on Windows, or on Mac HD or CD was fine.   
 The only way I could track problem down was to cut disc after disc.   
 ARGHH.
 
 Anyway, moral of story is that it is probably prudent to sort 
 the folder list as soon as you've got it so that you ensure 
 consistent results.  Haven't checked if this is the same with 
 files - but I expect so...
 
 
 Chris
 
 
 ___
 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: Folder list order

2005-05-06 Thread Chris Carroll-Davis
Xavier -
I did try virtual cd rom control panel, but it didn't seem to want  
to mount any images I made from Toast on Mac (whichever format I  
chose ISO, UDF etc...)  so I gave up with it.  I'm afraid I am a bit  
of a Windows dunce. I make my CD's on Mac using Toast, so if you know  
of a specific PC utility that will mount these on XP I'd like to hear  
of it!

Indeed, what I'd really like is to have a locked CD image mounted on  
my G5 that is available to PC on network that sees it as a CD.  But  
I've not found a way to do that.  Most of the time testing from a  
shared folder on my G5 is fine.  This is the first time that I've  
come across a non-speed related issue that differs between CD and HD...

Thanks for the advice,
Chris
On 6 May 2005, at 12:17, MisterX wrote:
Chris,
You should try next time to burn mountable images of cds or  
virtualCDs.

Look it up, it's great. Built in Nero, VirtualCD, the was an  
alladyn tools
and an even better shareware in my macos times - macImage or  
something.
Others like ultraIso, winIso, etc, etc, etc do the same for  
different prices
and features.

Eventually a ramdisk if you can lock the write access can do the  
job even
faster too.

The sorting issue seems bizarre indeed!
cheers
Xav

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Chris Carroll-Davis
Sent: Friday, May 06, 2005 12:40
To: How to use Revolution
Subject: Folder list order
Hello folks -
just thought you might like to know about a weird issue I
came across the other day.  Not a bug in Rev, but weird
behaviour on Windows that cost me hours (probably days) and
about 20 CD-Rs...
If you get a list of folders (using the folders ) on
WIndows running from HD the list is alphabetical, NON
case-sensitive, so (aardvark comes before Zoo).
If you get the same list running from CD, the list IS
case-sensitve (so Zoo  comes before aardvark).
Perhaps this is a known issue to seasoned Revvers, but it was
new to me!  This caused my prog to fail only when running from CD on
Windows.  Running from HD on Windows, or on Mac HD or CD was fine.
The only way I could track problem down was to cut disc after disc.
ARGHH.
Anyway, moral of story is that it is probably prudent to sort
the folder list as soon as you've got it so that you ensure
consistent results.  Haven't checked if this is the same with
files - but I expect so...
Chris
___
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
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Pencil doesn't trigger mousedown?

2005-05-06 Thread MisterX
In the quest for a cool shift-horizontal/vertical dragging functionality of
the pencil as previously requested and often missed, i added the bit of
coded needed to ResizeN2O. It works for draging objects in a primitive way
but the pencil doesn't trigger the mousedown event!!! 
 
Any ideas anyone? The revdocs didn't help... 
 
Altough, when you drag a line with the line tool and hold the shift key, you
do get a 15 degree limiter/midar line... And I think someone did suggest
that at one point, im just surprised the mousedown doesn't work in pencil
tool mode though...

bugzilla suggestions?

cheers
Xavier

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Documentation Errors [Was: naming variables...]

2005-05-06 Thread Dennis Brown
Brian,
This brings up a good point that has been bugging me for years.  It  
is ABSOLUTELY RIDICULOUS that the Rev documentation built in to the  
IDE is so full of errors.  How many repeat questions and confusion by  
folks trying to learn Rev are the result of wrong or missing  
documentation.  Don't get me wrong, I really like the built in Doc.   
It is just that even I can read through it and find error after  
error.  It seems like it would be so easy for an informed Rev  
programmer at RunRev to step through and fix up the doc in a matter  
of a week or two.  It takes ten times as much work to make BZ reports  
about the errors than it does to just fix them.  I bet a Wiki style  
doc file that the users could input to and that could be downloaded  
to the IDE if desired could cure the problem.  It would probably  
greatly expand the How Do I  and simple examples also.  It seems  
like lots of people have tried to improve on the docs in various  
places on the web, but I don't want to go searching through ten sites  
and discussion lists to find a bit of info that should be part of the  
built-in docs.

Stupid Doc errors AND small bugs in the IDE that are ignored (because  
GOOD programmers can find an undocumented workaround) make a bad  
impression about the quality of Revolution.  It is even more damaging  
to DreamCard which is aimed at a less sophisticated users.  As users  
we can't do much about the programming problems, except complain.   
However, if RunRev would empower us, we could do great stuff about  
the docs.  Just from being on this list for a few weeks, I can see  
the quality of the user community and know that it could work -- 
especially if it were sponsored and monitored by RunRev.

Go ahead, make my day... tell me it is already in the works  ;-)
Dennis
On May 6, 2005, at 12:31 AM, Brian Yennie wrote:
It is not a scripting error if you are following the Reference  
Documentation supplied with Rev:

Right... I meant it was an obvious scripting error by the folks  
at RunRev in their documentation, not that it was an obvious error  
by you who was just following the docs =)!

- Brian
___
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: Unicode

2005-05-06 Thread Thomas McGrath III
Klaus,
Of course there is none.
When I saw your response I was heading out the door to get the dogs in 
and only saw the first unicodetext. I thought Yeah I tried that. but 
really had not. You know, when you find yourself adding a little 
frustration when figuring something out it never helps and ends up 
making you miss things. Also, the reason I noticed it right away in the 
stack was the script editor had both unicodetext's in blazing red.
I have always wanted the emails to keep the coloring of copied scripts 
and typed ones too.

Thank you though for the answer to my problem,
Tom
On May 6, 2005, at 5:00 AM, Klaus Major wrote:
Hi Thomas,
Thank you so much,
Within 1 minute of downloading your helpful stack file I figured out 
how to do it.
Double unicodetext was needed at both ends to make it work.

 set the unicodetext of field Messages of card Messages of /
stack Editor to the unicodetext of field gChangeMessages
just curious, but what is the difference (except in the names of the 
fields) to my proposal:

set the unicodetext of fld the empty one to the unicodetext of field 
the one with mixed text in it

??? :-)
It now looks and seems to work great.
Tom
Regards
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] RevZilla 2.0.1 Available

2005-05-06 Thread simplsol
Ken,
Thank you for such a prompt response, I (for one) appreciate it.
Revzilla is such a wonderful tool, I wish more revers would take 
advantage of it - and vote for bug #2387 (the date/time problem).
Paul Looney

-Original Message-
From: Ken Ray [EMAIL PROTECTED]
To: Use Revolution List use-revolution@lists.runrev.com; Improve 
Revolution List improve-revolution@lists.runrev.com
Sent: Thu, 05 May 2005 22:44:05 -0500
Subject: [ANN] RevZilla 2.0.1 Available

   Just a quick note to let you all know that a minor update to 
RevZilla has
been posted. This version fixes the bug Paul Looney found when trying to
post changes to bugs that had an OS marked Other.

You can get the new version on RevNet, RevOnline (under 'kray'), or at:
http://www.sonsothunder.com/devres/revolution/downloads/RevZilla2.htm
Enjoy!
Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]
___
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: Pencil doesn't trigger mousedown?

2005-05-06 Thread Thomas McGrath III
Xavier,
I don't know what mouseDown event you are needing but recently I fought 
the mouseDown and the mouseDown won. I did use other listers advice and 
start a self running loop (send checkMouse to me in 50 milliseconds) 
and look for an if the mouse is down or if the mouse is up in the 
checkMouse handler and that seemed to work fine. In fact since I didn't 
want to use the mouseMove it seemed the only other choice available to 
me.
I don't know if it will work for you but give it a try.

-- this acts just like a mouseDown message while holding the mouseDown 
and exits (after doing a mouseUp ).

on checkMouse
if the mouse is down then
-- do something important 
end if
if the mouse is up then
-- do something else
exit checkMouse
end if
send checkMouse to me in 50 miliseconds
end if

Tom
On May 6, 2005, at 8:07 AM, MisterX wrote:
In the quest for a cool shift-horizontal/vertical dragging 
functionality of
the pencil as previously requested and often missed, i added the bit of
coded needed to ResizeN2O. It works for draging objects in a primitive 
way
but the pencil doesn't trigger the mousedown event!!!

Any ideas anyone? The revdocs didn't help...
Altough, when you drag a line with the line tool and hold the shift 
key, you
do get a 15 degree limiter/midar line... And I think someone did 
suggest
that at one point, im just surprised the mousedown doesn't work in 
pencil
tool mode though...

bugzilla suggestions?
cheers
Xavier
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Documentation Errors [Was: naming variables...]

2005-05-06 Thread Derek Bump
Dennis Brown wrote:
Stupid Doc errors AND small bugs in the IDE that are ignored (because  
GOOD programmers can find an undocumented workaround) make a bad  
impression about the quality of Revolution.
I agree.  I tried fixing errors or problems way back when using MetaCard 
and when RunRev first came out, but now I have such a hard time editing 
the environment to suit my needs that I've just given up on it.

The thing that blows my mind the most is that if you Show Invisible 
Objects and open the docs...you can see all of the docs invisible objects.

But alas, my programming is not perfect either. :)
Derek Bump
Dreamscape Software
___
Compress Images Easily with JPEGCompress
http://www.dreamscapesoftware.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Unicode question

2005-05-06 Thread Thomas McGrath III
Hello,
I was wondering if once the unicodetext of a fields content has been 
set if that field will then Keep that characteristic always. Or do I 
then always have to use the set the unicodetext of when I am putting 
text into fields? Is this the same for variables as well?

set the unicodetext of field one to the unicodetext of field two
Later if I set the contents of field one to  and then add some 
other text will it still test unicodetext positive. I tried the docs 
for the unicode test but it didn't work for me.

Thanks
Tom

Macintosh PowerBook G-4 OSX 10.3.8, OS 9.2.2, 1.25 GHz, 512MB RAM, Rev 
2.5

Advanced Media Group
Thomas J McGrath III
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Documentation Errors [Was: naming variables...]

2005-05-06 Thread Dennis Brown
[I am resending this message, because it seems to have been lost in  
the mail]

Brian,
This brings up a good point that has been bugging me for years.  It  
is ABSOLUTELY RIDICULOUS that the Rev documentation built in to the  
IDE is so full of errors.  How many repeat questions and confusion by  
folks trying to learn Rev are the result of wrong or missing  
documentation.  Don't get me wrong, I really like the built in Doc.   
It is just that even I can read through it and find error after  
error.  It seems like it would be so easy for an informed Rev  
programmer at RunRev to step through and fix up the doc in a matter  
of a week or two.  It takes ten times as much work to make BZ reports  
about the errors than it does to just fix them.  I bet a Wiki style  
doc file that the users could input to and that could be downloaded  
to the IDE if desired could cure the problem.  It would probably  
greatly expand the How Do I  and simple examples also.  It seems  
like lots of people have tried to improve on the docs in various  
places on the web, but I don't want to go searching through ten sites  
and discussion lists to find a bit of info that should be part of the  
built-in docs.

Stupid Doc errors AND small bugs in the IDE that are ignored (because  
GOOD programmers can find an undocumented workaround) make a bad  
impression about the quality of Revolution.  It is even more damaging  
to DreamCard which is aimed at a less sophisticated users.  As users  
we can't do much about the programming problems, except complain.   
However, if RunRev would empower us, we could do great stuff about  
the docs.  Just from being on this list for a few weeks, I can see  
the quality of the user community and know that it could work -- 
especially if it were sponsored and monitored by RunRev.

Go ahead, make my day... tell me it is already in the works  ;-)
Dennis
On May 6, 2005, at 12:31 AM, Brian Yennie wrote:

It is not a scripting error if you are following the Reference  
Documentation supplied with Rev:


Right... I meant it was an obvious scripting error by the folks  
at RunRev in their documentation, not that it was an obvious error  
by you who was just following the docs =)!

- Brian
___
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: Documentation Errors [Was: naming variables...]

2005-05-06 Thread Dennis Brown
Wow, that was weird.  The new Tiger mail.app suddenly decided that  
mail from me or on this subject was Junk.  I found my message and  
responses along with several good messages in my junk mail folder  
just now.  Sorry for the resend.  Tiger users, watch you junk mailbox.

Dennis
On May 6, 2005, at 11:01 AM, Dennis Brown wrote:
[I am resending this message, because it seems to have been lost in  
the mail]

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Tiger problems...

2005-05-06 Thread Ken Ray
On 5/6/05 4:32 AM, Chris Carroll-Davis [EMAIL PROTECTED] wrote:

 We have a bunch of Applescripts that we fire from from SC that are
 broken under Tiger.  These are all to control and manipulate movies
 with QTPlayer. Apple actually seem to have changed the syntax for
 scripting with QTPlayer.  Ughhh.  I suppose this is a QT7 issue
 rather than Applescript per se, but still it goes to show that
 nothing is safe...

Chris, thanks for letting us know... Apple broke the GURLGURL apple event
(among other things) when the 10.1-10.2 transition took hold and didn't tell
anyone also, so you're right... nothing is safe.

:-)

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


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Tiger problems...

2005-05-06 Thread Richard Gaskin
Chris Carroll-Davis wrote:
We have a bunch of Applescripts that we fire from from SC that are  
broken under Tiger.  These are all to control and manipulate movies  
with QTPlayer. Apple actually seem to have changed the syntax for  
scripting with QTPlayer.  Ughhh.  I suppose this is a QT7 issue  rather 
than Applescript per se, but still it goes to show that  nothing is safe...
Could it be a licensing issue?  Does QT7 require a new Pro license to 
script some features?

--
 Richard Gaskin
 Fourth World Media Corporation
 __
 Rev tools and more: http://www.fourthworld.com/rev
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Documentation Errors [Was: naming variables...]

2005-05-06 Thread Richard Gaskin
Dennis Brown wrote:
This brings up a good point that has been bugging me for years.  It  is 
ABSOLUTELY RIDICULOUS that the Rev documentation built in to the  IDE is 
so full of errors.  How many repeat questions and confusion by  folks 
trying to learn Rev are the result of wrong or missing  documentation.
I hear you loud and clear.  Back when I was learning C, starting with 
externals using Gary Bonds' X-Command book seemed like a good start. I 
found myself spending a lot of time double-checking everything and 
rarely got anything to actually run.  That was one of several 
experiences that made me appreciate xTalk, but a couple years ago I was 
telling that story to a good friend who's an expert in C on Mac (he's 
been known to make Apple engineers ask How'd you do that?) and he told 
me it was too bad I let it discourage me as the problem wasn't me at all 
-- he reports that most of the C examples in that book simply don't 
work.  :(

Missing stuff take time to address.  I've not seen a product yet where 
people didn't complain about the docs every day until a variety of 
third-party books became available.  Don't know why that is, just 
reporting what I've seen.  It seems the only remedy is to track what's 
reported as missing and add it as soon after as possible.

But errata should of course always be a high priority.  Which erroneous 
entries have you found, and what are there Bugzilla IDs so we can draw 
attention to them?

I believe Monte does a fair job of reviewing BZ for errata reports, and 
has a track record of addressing them promptly. Getting them into your 
hands is a different matter (what should Check for updates... do?), 
but at least Monte does his part in a very timely manner.

However, if RunRev would empower us, we could do great stuff about  the 
docs.  Just from being on this list for a few weeks, I can see  the 
quality of the user community and know that it could work -- especially 
if it were sponsored and monitored by RunRev.

Go ahead, make my day... tell me it is already in the works  ;-)
Would already in place be better?  See the WebNotes feature.  It's not 
my favorite implementation of the idea, but it's a good start toward a 
mechanism for community-ehnanced docs.

--
 Richard Gaskin
 Fourth World Media Corporation
 __
 Rev tools and more: http://www.fourthworld.com/rev
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: QT Applescript. Bit OT (was Tiger problems...)

2005-05-06 Thread Chris Carroll-Davis
(Sorry folks, this is going off-topic, I think. But I'll post just in  
case someone has a suggestion!!)

Could it be a licensing issue?  Does QT7 require a new Pro license  
to script some features?
Richard - I don't think that is it.  They have definitely changed  
stuff.  I don't have things to hand at moment, but here's one thing I  
can remember off the top of my head that causes us real problems...

We are manipulating some large QT movies using Applescript/QTPlayer.   
e.g. taking an NTSC size movie with an alpha channel (very large  
because it requires the use of the none compressor) and adding a  
second movie behind it, then adding a sound track, cropping as  
necessary.  Now with Panther/QT6.5 we could then save this file with  
dependencies to make a movie that was literally just a few k in size  
(i.e. very quick to save) This was easy to do, because the default  
save option in QTPlayer was this form.

If we wanted to remove these dependencies we could save the movie  
with the AppleScript command Save self contained. This takes a long  
time and produces very big files (1Gb).  This has all changed.  The  
default option is now to save self contained, but there is no  
applescript option to save with dependencies, so like it or not, we  
always end up with *massive* files that take ages to save!  (if any  
kind soul does have any suggestions on this one, I'd be soo  
grateful.  This is a bit of a killer for us.)

I'm pretty sure they have also changed the way in which QTPlayer  
applescript stores internal references to open movies (but I might be  
wrong here, memory going in old age)

Chris

On 6 May 2005, at 16:31, Richard Gaskin wrote:
Chris Carroll-Davis wrote:
We have a bunch of Applescripts that we fire from from SC that  
are  broken under Tiger.  These are all to control and manipulate  
movies  with QTPlayer. Apple actually seem to have changed the  
syntax for  scripting with QTPlayer.  Ughhh.  I suppose this is a  
QT7 issue  rather than Applescript per se, but still it goes to  
show that  nothing is safe...

Could it be a licensing issue?  Does QT7 require a new Pro license  
to script some features?

--
 Richard Gaskin
 Fourth World Media Corporation
 __
 Rev tools and more: http://www.fourthworld.com/rev
___
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: Unicode

2005-05-06 Thread Dan Friedman
Thomas,

I don't know what your project is, but thought you might want/need to know
that Rev does NOT print unicode text.  I have spoken with Jacqueline and she
tells me they are working on it.

Hope this doesn't ruin your day...

-Dan

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode

2005-05-06 Thread Thomas McGrath III
Dan,
Thanks for the heads up but thankfully I won't need to print at this 
time. Later it might be nice to print my data base with unicode text 
but for now it's not an issue.

Thanks
Tom
On May 6, 2005, at 12:36 PM, Dan Friedman wrote:
Thomas,
I don't know what your project is, but thought you might want/need to 
know
that Rev does NOT print unicode text.  I have spoken with Jacqueline 
and she
tells me they are working on it.

Hope this doesn't ruin your day...
-Dan
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


[ANN] Pen Tool v2

2005-05-06 Thread Alejandro Tejada
Hi Developers,

Download the stack Pen Tool v2 from:

http://www.geocities.com/capellan2000/penToolv2.zip

This stack shows a pen tool similar to the bezier pen
tool of vector ilustration software. i'm working in
the companion three selection tools for this tool and
integrating all my previous work with vector graphics
into one stack: graphic tools v02

To start drawing, click on the button 
Set cursor to pen, then the cursor turns to 
the icon Pen Tool.

To start drawing, click on the empty space of 
the card.
1- To start drawing a curved line, click on the card
to
create the FIRST VERTEX POINT (sending a mousedown 
msg) and while keeping the mouse down, drag the mouse 
far from the point where you clicked (mousemove msg) 
and release the mouse button (mouseup msg) to create 
the FIRST CONTROL POINT... a red line appears with a 
bezier curve.

Click again (mousedown msg) to fix the position of the
SECOND VERTEX POINT and move the mouse to shape the 
bezier curve (mousemove msg) and release the mouse in 
any location to fix the SECOND CONTROL POINT (mouseup
msg).

IMPORTANT: If you press the ALT/OPTION key while
moving
the mouse to fix the position of the SECOND CONTROL 
POINT, you get a THIRD CONTROL POINT that moves in
sync
with the second control point... this third control 
point becomes the first control point of a new
curve that will follow the line you are drawing. 

Click to fix the position of these control points.
Now the red line turns to a green line and you could 
repeat the steps above to draw another curved line or
simply click and release the mouse button to draw 
straight lines.

To close the polygon you put the cursor exactly over 
the beginning of the line (You'll notice that the 
cursor changes to a pen with a circle)and DOUBLE CLICK
(mousedoubleup msg).

You'll finish drawing anytime by double clicking in 
any place of the card.

Feel free to streamline this handler for your own 
purposes.  All i ask is that you keep an updated link
to my website in your website or the documentation of 
your software.

Alejandro Tejada

Thursday 5 may 2006



Visit my site:
http://www.geocities.com/capellan2000/



Yahoo! Mail
Stay connected, organized, and protected. Take the tour:
http://tour.mail.yahoo.com/mailtour.html

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: [ANN] Pen Tool v2

2005-05-06 Thread MisterX
Beautiful work Alejandro!!!

The only critique i got is that it feels more illustractor (3 clicks+ drag)
like than the simpler Freehand interface (2 clicks-drag) (if i got it
correctly ;) - finally a professional looking line graphic tool in Rev ;)

smooth animation too, im officially impressed!

cheers
Xav

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Alejandro Tejada
 Sent: Friday, May 06, 2005 18:53
 To: use-revolution@lists.runrev.com
 Subject: [ANN] Pen Tool v2
 
 Hi Developers,
 
 Download the stack Pen Tool v2 from:
 
 http://www.geocities.com/capellan2000/penToolv2.zip
 
 This stack shows a pen tool similar to the bezier pen tool of 
 vector ilustration software. i'm working in the companion 
 three selection tools for this tool and integrating all my 
 previous work with vector graphics into one stack: graphic tools v02
 
 To start drawing, click on the button
 Set cursor to pen, then the cursor turns to the icon Pen Tool.
 
 To start drawing, click on the empty space of the card.
 1- To start drawing a curved line, click on the card to 
 create the FIRST VERTEX POINT (sending a mousedown
 msg) and while keeping the mouse down, drag the mouse far 
 from the point where you clicked (mousemove msg) and release 
 the mouse button (mouseup msg) to create the FIRST CONTROL 
 POINT... a red line appears with a bezier curve.
 
 Click again (mousedown msg) to fix the position of the SECOND 
 VERTEX POINT and move the mouse to shape the bezier curve 
 (mousemove msg) and release the mouse in any location to fix 
 the SECOND CONTROL POINT (mouseup msg).
 
 IMPORTANT: If you press the ALT/OPTION key while moving the 
 mouse to fix the position of the SECOND CONTROL POINT, you 
 get a THIRD CONTROL POINT that moves in sync with the second 
 control point... this third control point becomes the first 
 control point of a new curve that will follow the line you 
 are drawing. 
 
 Click to fix the position of these control points.
 Now the red line turns to a green line and you could repeat 
 the steps above to draw another curved line or simply click 
 and release the mouse button to draw straight lines.
 
 To close the polygon you put the cursor exactly over the 
 beginning of the line (You'll notice that the cursor changes 
 to a pen with a circle)and DOUBLE CLICK (mousedoubleup msg).
 
 You'll finish drawing anytime by double clicking in any place 
 of the card.
 
 Feel free to streamline this handler for your own purposes.  
 All i ask is that you keep an updated link to my website in 
 your website or the documentation of your software.
 
 Alejandro Tejada
 
 Thursday 5 may 2006
 
 
 
 Visit my site:
 http://www.geocities.com/capellan2000/
 
 
   
 Yahoo! Mail
 Stay connected, organized, and protected. Take the tour:
 http://tour.mail.yahoo.com/mailtour.html
 
 ___
 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: Folder list order

2005-05-06 Thread Kat
Toast uses a proprietary disc image format. I don't know of any other 
app that will open them.  If your Mac is networked to the PC, try 
mounting the image on your Mac, mount the volume on your PC via my 
network or something Windows-specific like that, and burn it over the 
network.

Cheers,
Katherine Cochrane
http://cd-info.com
Chris Carroll-Davis wrote:
Xavier -
I did try virtual cd rom control panel, but it didn't seem to want  
to mount any images I made from Toast on Mac (whichever format I  
chose ISO, UDF etc...)  so I gave up with it.  I'm afraid I am a bit  
of a Windows dunce. I make my CD's on Mac using Toast, so if you know  
of a specific PC utility that will mount these on XP I'd like to hear  
of it!

Indeed, what I'd really like is to have a locked CD image mounted on  
my G5 that is available to PC on network that sees it as a CD.  But  
I've not found a way to do that.  Most of the time testing from a  
shared folder on my G5 is fine.  This is the first time that I've  
come across a non-speed related issue that differs between CD and HD...

Thanks for the advice,
Chris
On 6 May 2005, at 12:17, MisterX wrote:
Chris,
You should try next time to burn mountable images of cds or  
virtualCDs.

Look it up, it's great. Built in Nero, VirtualCD, the was an  alladyn 
tools
and an even better shareware in my macos times - macImage or  something.
Others like ultraIso, winIso, etc, etc, etc do the same for  
different prices
and features.

Eventually a ramdisk if you can lock the write access can do the  job 
even
faster too.

The sorting issue seems bizarre indeed!
cheers
Xav

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Chris Carroll-Davis
Sent: Friday, May 06, 2005 12:40
To: How to use Revolution
Subject: Folder list order
Hello folks -
just thought you might like to know about a weird issue I
came across the other day.  Not a bug in Rev, but weird
behaviour on Windows that cost me hours (probably days) and
about 20 CD-Rs...

[snipped]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


ANN/RFD Python in Rev - no probs!

2005-05-06 Thread MisterX
Hi Guys,
 
Any python users in the list interested in a planned project to have python
executed from Rev or compiled as dlls for RunRev including WinMFC and COM
apis are welcome to join. Finally a possible way to do compileIt in RunRev.
I dont have a Mac to see how this can be done but gnu-c compilation seems
possible so there may be a way for osx/unix/linux users present and
interested. So you input is equally welcome and encouraged. 
 
A team spirit to empower (keyword of the day) RunRev is only good for all in
RunRev! I'll open a forum for it on MonsieurX.com if there is discussion
material (and avoid polution to the kind Rev Mailist). 
 
Side note, this will probably be replicated for PHP and GNU C when and if
needed only
 
Plan more or less include in an approximate order:
- The standard ebook hyper-referenced code library in Revo (independent but
based on TAOO)
- Python languague reference and translation matrix (rev to py and
viceversa)
- Object model compatibility interface (the exo in xos) - easy parameters
passing as usual
- Python function compatibility wrapper-layer (user python's calls in rev) -
easier ports of py in rev!
- Python direct function calls (shell or direct to dll eventually)
- WinPython and Python shell call management-intelligence
- Python task threading and scheduling management (agents are great tools)
- Python - meta-dll to openGL modules and more...
 
I think my agenda is full until next year now ;)
 
Cheers
Xav
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE disk image formerly Folder list order

2005-05-06 Thread Stephen Barncard
CHECK OUT Dragon Burn for Mac (they also make NTI CD  DVD - Maker 7 
for PC...-I never used it).
From their site: Supports virtually all popular image file formats: 
.bin, .cue, .cdr, .dmg, .iso, and .ncd..

As I remember, the .iso image I created by DB in Mac was viewable on a pc.
Good software. And affordable.
http://www.ntius.com/default.asp?p=dragonburn/dburn4_main
sqb
At 1:43 PM -0400 5/6/05, Kat wrote:
Toast uses a proprietary disc image format. I don't know of any 
other app that will open them.  If your Mac is networked to the PC, 
try mounting the image on your Mac, mount the volume on your PC via 
my network or something Windows-specific like that, and burn it 
over the network.

Cheers,
Katherine Cochrane
http://cd-info.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: RE disk image formerly Folder list order

2005-05-06 Thread MisterX

That's a good one for the faq ;) 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Stephen Barncard
 Sent: Friday, May 06, 2005 20:03
 To: How to use Revolution
 Subject: RE disk image formerly Folder list order
 
 CHECK OUT Dragon Burn for Mac (they also make NTI CD  DVD - 
 Maker 7 for PC...-I never used it).
  From their site: Supports virtually all popular image file formats: 
 .bin, .cue, .cdr, .dmg, .iso, and .ncd..
 
 As I remember, the .iso image I created by DB in Mac was 
 viewable on a pc.
 
 Good software. And affordable.
 http://www.ntius.com/default.asp?p=dragonburn/dburn4_main
 
 sqb
 
 At 1:43 PM -0400 5/6/05, Kat wrote:
 Toast uses a proprietary disc image format. I don't know of 
 any other 
 app that will open them.  If your Mac is networked to the PC, try 
 mounting the image on your Mac, mount the volume on your PC via my 
 network or something Windows-specific like that, and burn 
 it over the 
 network.
 
 Cheers,
 Katherine Cochrane
 http://cd-info.com
 ___
 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


OT: awk features in Python

2005-05-06 Thread MisterX
Just on last quick word from the python documents:
 
ActivePython 2.4 documentation
Section Whetting Your Appetite:
lots that also applies to RunRev - but no GUI ;) ...
 
Because of its more general data types Python is applicable to a much
larger problem domain than Awk or even Perl, yet many things are at least as
easy in Python as in those languages. 
 
and he he
 
By the way, the language is named after the BBC show ``Monty Python's
Flying Circus'' and has nothing to do with nasty reptiles. Making references
to Monty Python skits in documentation is not only allowed, it is
encouraged!
 
TAOO is based on the Hitchickers guide to the galaxy - so proof i got a
higher-level pangalactic gargleblasting head effect with my software
documentation they they ever will! It occured to me to put the dont Panic
mention on the opening card of TAOO too ;) 
 
This is going to be fun!
Xav
IT Overload, DATA overload, Disk Overload, overzapped, overjoyed! ;)
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: ANN/RFD Python in Rev - no probs!

2005-05-06 Thread Dan Shafer
xav.
Count me in, in spades. This would be my ideal coding universe.
Need to check out PythonCard (http://www.pythoncard.org), an Open  
Source project trying to approach this from the other side (Python  
scripting in an HC/Rev kind of IDE world) for possible cross- 
pollination. Alex Tweedly and I have both been involved in that  
project (he more than I, particularly of late).

Glad to see someone spearheading this. I'll do whatever I can.
Python scripts running quasi-native in Rev. yum

~~
Dan Shafer, Co-Chair
RevConWest '05
June 17-18, 2005, Monterey, California
http://www.altuit.com/webs/altuit/RevConWest
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RE disk image formerly Folder list order

2005-05-06 Thread Chris Carroll-Davis
This sounds perfect.  I'll have a look!
Thanks,
Chris
On 6 May 2005, at 19:11, MisterX wrote:
CHECK OUT Dragon Burn for Mac (they also make NTI CD  DVD -
Maker 7 for PC...-I never used it).
 From their site: Supports virtually all popular image file formats:
.bin, .cue, .cdr, .dmg, .iso, and .ncd..
As I remember, the .iso image I created by DB in Mac was
viewable on a pc.

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: ANN/RFD Python in Rev - no probs!

2005-05-06 Thread Glen Bojsza
XMan,

I am very interested in this as well. Years ago I was hoping that
Pythonware by Pythonworks was going to solve this problem but they
died in the end.

Glen

On 5/6/05, Dan Shafer [EMAIL PROTECTED] wrote:
 xav.
 
 Count me in, in spades. This would be my ideal coding universe.
 
 Need to check out PythonCard (http://www.pythoncard.org), an Open
 Source project trying to approach this from the other side (Python
 scripting in an HC/Rev kind of IDE world) for possible cross-
 pollination. Alex Tweedly and I have both been involved in that
 project (he more than I, particularly of late).
 
 Glad to see someone spearheading this. I'll do whatever I can.
 
 Python scripts running quasi-native in Rev. yum
 
 
 ~~
 Dan Shafer, Co-Chair
 RevConWest '05
 June 17-18, 2005, Monterey, California
 http://www.altuit.com/webs/altuit/RevConWest
 
 ___
 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


selected question

2005-05-06 Thread Thomas McGrath III
Hey guys,
I have a field that I highlight a word in and want via script to cut 
that word. In my button I started with:

get  the selected text of field Message of card SMS of stack Games
but I get a error in object expression.
Could someone point out what I am doing wrong?
thanks
Tom
Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


[ANN] Pen Tool v2

2005-05-06 Thread Alejandro Tejada
on Fri May 6
Xavier Bury wrote:

 Beautiful work Alejandro!!!

Thanks! You are welcome! :)

 The only critique i got is that it feels more 
 illustrator (3 clicks+ drag)
 like than the simpler Freehand interface (2 
 clicks-drag) (if i got it correctly ;) - 
 finally a professional looking line graphic tool 
 in Rev ;)

i'll check how Macromedia do this in FreeHand.

By the way, i noticed so many resemblances in
RR with many vector drawing apps, 
layers could be implemented with groups,
groups could be implemented with groups
within other groups (that works as layers)
zoom and scrolling by scaling and translating...
except in one vital feature: There is no compound 
paths in vector graphics... so you could not draw
the circles inside the number 8 or the hole
in the letter o, etc.

Ink effects are too cool to be left out, so
Did other vector drawing apps implement ink effects
or something alike?

al


Visit my site:
http://www.geocities.com/capellan2000/



Discover Yahoo! 
Use Yahoo! to plan a weekend, have fun online and more. Check it out! 
http://discover.yahoo.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: selected question

2005-05-06 Thread Chris Sheffield
Hi Tom,
There shouldn't be any space between selected and text.  Should just  
be get the selectedText, etc.

Chris Sheffield
Read Naturally
On May 6, 2005, at 1:18 PM, Thomas McGrath III wrote:
Hey guys,
I have a field that I highlight a word in and want via script to  
cut that word. In my button I started with:

get  the selected text of field Message of card SMS of stack  
Games

but I get a error in object expression.
Could someone point out what I am doing wrong?
thanks
Tom
Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
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: RE disk image formerly Folder list order

2005-05-06 Thread Kat
Good recommendation!  Dragon Burn does create a standard ISO disc image. 
It's just about as capable as Toast for most tasks, and has a very cool 
interface as well.  Much more informative than Toast's.  I wrote an 
article about them for my local Mac User's Group newsletter.  There's a 
rewrite of it in my blog at 
http://www.cd-info.com/cgi-bin/cdinfo.cgi/2004/10/20#toast_dragonburn

Cheers,
Kat
Stephen Barncard wrote:
CHECK OUT Dragon Burn for Mac (they also make NTI CD  DVD - Maker 7 
for PC...-I never used it).
From their site: Supports virtually all popular image file formats: 
.bin, .cue, .cdr, .dmg, .iso, and .ncd..

As I remember, the .iso image I created by DB in Mac was viewable on a 
pc.

Good software. And affordable.
http://www.ntius.com/default.asp?p=dragonburn/dburn4_main
sqb
At 1:43 PM -0400 5/6/05, Kat wrote:
Toast uses a proprietary disc image format. I don't know of any other 
app that will open them.  If your Mac is networked to the PC, try 
mounting the image on your Mac, mount the volume on your PC via my 
network or something Windows-specific like that, and burn it over 
the network.

Cheers,
Katherine Cochrane
http://cd-info.com
___
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: [ANN] Pen Tool v2

2005-05-06 Thread MisterX

  The only critique i got is that it feels more illustrator 
 (3 clicks+ 
  drag) like than the simpler Freehand interface (2
  clicks-drag) (if i got it correctly ;) - finally a professional 
  looking line graphic tool in Rev ;)
 
 i'll check how Macromedia do this in FreeHand.

it's my all time prefered vector/cad drawing tool! Visually there's better
apps that do amazing 3D stuff far better but Freehand is the reference
IMOHO. Clean and laser quality cut for any illustration job!

 By the way, i noticed so many resemblances in RR with many 
 vector drawing apps, layers could be implemented with groups, 
 groups could be implemented with groups within other groups 
 (that works as layers) zoom and scrolling by scaling and 
 translating...

Yes, im working on layering in ControlsN2O and themes. Partly implemented in
GIM using layers as a third dimension too. But the 3D functions im leaving
for last until all 2D's are imagined and written (with 3D in mind).

 except in one vital feature: There is no compound paths in 
 vector graphics... so you could not draw the circles inside 
 the number 8 or the hole in the letter o, etc.

There's ways with masks but it's messy.

 Ink effects are too cool to be left out, so Did other vector 
 drawing apps implement ink effects or something alike?

Look at flash ;) I think it's very important and looking at PhotoShops use
of them, there's a clear advantage to having them in many [eg skinning]
situations.

cheers
Xav

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


a little message path issue

2005-05-06 Thread Chris Sheffield
Dear List,
Okay, let's see if I can explain this.
I have a group that contains an image as a background and several  
custom buttons placed on the top of it.  The background image has a  
stick out tab sort of thing on it's left side.  The idea is to  
place the group on the right side of the window so that only the tab  
is showing.  When the user moves the mouse over that tab, I want the  
group to slide out revealing the buttons.  When the user moves the  
mouse out of the group, I want it to slide back so that only the tab  
is visible again.  Okay, so far so good.

So I place mouseEnter (to slide the button panel out) and mouseLeave  
(to slide it back in) handlers in the group's script.  Worked great  
until I placed my buttons in the group.  This is what happens now.  I  
move the cursor over the tab.  The group slides out fine.  But as I  
move up and down over my buttons, mouseEnter and mouseLeave messages  
get sent, including those to the background image, which triggers my  
moving action.  So if I mouseEnter one of my buttons, I mouseLeave my  
background image, which slides the group back.  That's not the  
behavior I want.  As long as I'm within the group, I want it to be  
slid out, even as I'm moving up and down over the buttons.

Does that make sense?  Should I be handling different messages  
besides mouseEnter and mouseLeave?  A mouseWithin perhaps?  I'm kind  
of stuck.  Can someone help?

Thanks,
Chris Sheffield
Read Naturally
P.S.  Here's my group's script:
on mouseEnter
if ButtonBar is in the name of the target then
move me to 580,241
end if
end mouseEnter
on mouseLeave
if ButtonBar is in the name of the target then
move me to 668,241
end if
end mouseLeave
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: a little message path issue

2005-05-06 Thread Richard Gaskin
Chris Sheffield wrote:
Dear List,
Okay, let's see if I can explain this.
I have a group that contains an image as a background and several  
custom buttons placed on the top of it.  The background image has a  
stick out tab sort of thing on it's left side.  The idea is to  place 
the group on the right side of the window so that only the tab  is 
showing.  When the user moves the mouse over that tab, I want the  group 
to slide out revealing the buttons.  When the user moves the  mouse out 
of the group, I want it to slide back so that only the tab  is visible 
again.  Okay, so far so good.

So I place mouseEnter (to slide the button panel out) and mouseLeave  
(to slide it back in) handlers in the group's script.  Worked great  
until I placed my buttons in the group.  This is what happens now.  I  
move the cursor over the tab.  The group slides out fine.  But as I  
move up and down over my buttons, mouseEnter and mouseLeave messages  
get sent, including those to the background image, which triggers my  
moving action.  So if I mouseEnter one of my buttons, I mouseLeave my  
background image, which slides the group back.  That's not the  behavior 
I want.  As long as I'm within the group, I want it to be  slid out, 
even as I'm moving up and down over the buttons.

Does that make sense?  Should I be handling different messages  besides 
mouseEnter and mouseLeave?  A mouseWithin perhaps?  I'm kind  of stuck.  
Can someone help?
I'm not sure this will help, but I recently made a very complex nested 
group thang with lots of mouse interactions and I now have a rule for 
such things:

Whenever you're moving objects with scripts and those objects are within 
groups, more often than not you'll do well to set the lockLoc of both 
the object and the group.

--
 Richard Gaskin
 Fourth World Media Corporation
 __
 Rev tools and more: http://www.fourthworld.com/rev
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: selected question

2005-05-06 Thread Thomas McGrath III
I see that, now.
Thanks
Tom
On May 6, 2005, at 3:39 PM, Chris Sheffield wrote:
Hi Tom,
There shouldn't be any space between selected and text.  Should just 
be get the selectedText, etc.

Chris Sheffield
Read Naturally
On May 6, 2005, at 1:18 PM, Thomas McGrath III wrote:
Hey guys,
I have a field that I highlight a word in and want via script to cut 
that word. In my button I started with:

get  the selected text of field Message of card SMS of stack 
Games

but I get a error in object expression.
Could someone point out what I am doing wrong?
thanks
Tom
Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
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

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: a little message path issue

2005-05-06 Thread Derek Bump
I think what would help in your situation is a mouseEnter script that 
tests whether or not the mouse is within any of the items in that group, 
and not just the image or the group itself.

Derek Bump
Dreamscape Software
___
Compress Images Easily with JPEGCompress
http://www.dreamscapesoftware.com/
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: a little message path issue

2005-05-06 Thread Dar Scott
On May 6, 2005, at 4:33 PM, Chris Sheffield wrote:
Does that make sense?  Should I be handling different messages besides 
mouseEnter and mouseLeave?  A mouseWithin perhaps?  I'm kind of stuck. 
 Can someone help?
Just a wild untested idea typed right into the email:
local moveID
local barState = in
on initBarPos
  put empty into moveID
  put in into barState
  move me to 668,241
end initBarPos
on slideOut
  if barState = in
move me to 580,241 in .2 seconds without waiting
put out into barState
  end if
end slideOut
on slideIn
  if barState = out
move me to 668,241 in .2 seconds without waiting
put in into barState
  end if
end slideIn
on mouseWithin
   slideOut
   cancel moveID
   send slideOut to me in .5 seconds
   put the result into moveID
end mouseWithin
Dar
--
**
DSC (Dar Scott Consulting  Dar's Lab)
http://www.swcp.com/dsc/
A Sponsor of RevCon West
**
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Unicode woes

2005-05-06 Thread Thomas McGrath III
OK, I am now on my second week of beating the pants off of Director. 
Our Director Guru took 2 months to build what I might be able to finish 
in 2 weeks.
I would say I am  85 % done. I have 2 sections left and the problem of 
Unicode.

The problem:
I am able to get Unicode text into rev by pasting into a field. I can 
take that code to a field on another stack using:
This works great;
set the unicodetext of field Inputtray of stack Games to the 
unicodetext of field CHIcons of stack Editor

But I have to filter my fields in order to get my software to work. I 
need to store my Unicode in variables BUT they don't seem to work. It 
seems that you can't set the unicode of a variable to the unicode of a 
field:
This does not work;
set the unicodetext of gPreviewMessage to the unicodetext of field 
CHMessages of card Languages of stack Editor

Do any of you guys have any ideas how to accomplish this???
Thank you so much,
Tom
Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode woes

2005-05-06 Thread Trevor DeVore
On May 6, 2005, at 5:59 PM, Thomas McGrath III wrote:
OK, I am now on my second week of beating the pants off of Director. 
Our Director Guru took 2 months to build what I might be able to 
finish in 2 weeks.
I would say I am  85 % done. I have 2 sections left and the problem of 
Unicode.

The problem:
I am able to get Unicode text into rev by pasting into a field. I can 
take that code to a field on another stack using:
This works great;
set the unicodetext of field Inputtray of stack Games to the 
unicodetext of field CHIcons of stack Editor

But I have to filter my fields in order to get my software to work. I 
need to store my Unicode in variables BUT they don't seem to work. It 
seems that you can't set the unicode of a variable to the unicode of a 
field:
This does not work;
set the unicodetext of gPreviewMessage to the unicodetext of field 
CHMessages of card Languages of stack Editor

Do any of you guys have any ideas how to accomplish this???
Variables do not have a unicodeText property.  Just put the unicodeText 
of the field into the variable.

--
Trevor DeVore
Blue Mango Multimedia
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Problems with resource mages

2005-05-06 Thread docmann
Hello folks,
I've built a simple test stack where I imported a dozen images fom a
folder directly into the stack as resources. Then I added a blank
graphic object for use as a container to display the images in. Next
step was to add a text field (named search) in order to enter the
name of an image I'd like to display, along with a second field (named
ext) to hold the file extension for the image.

Finally, I added a button to click, which holds my script.

I have no problems displaying images into my container using either a
local file or URL location, but cannot for the life of me figure out
how to display an image directly from within the stack file itself.

on mouseUp
  put field search  field ext into tGraphic
  set the imageSource of Image to tGraphic
end mouseUp

When I run the script above, the debugger clearly shows that the
filename of the image is being built correctly, so I assume that my
problem is related to getting the correct resource ID of the image.

Can anyone point out were I'm going wrong?

Thanks,
-Doc-
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode woes

2005-05-06 Thread Thomas McGrath III
Trevor,
Thanks for the reply, are you saying that I can:
put field unicodestuff into gVariable
and then:
set the unicodetext of field field to gVariable
P.S. I am working with mixed fields that have both English and Asian 
languages in them.

Tom
On May 6, 2005, at 9:52 PM, Trevor DeVore wrote:
Variables do not have a unicodeText property.  Just put the 
unicodeText of the field into the variable.
Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode woes

2005-05-06 Thread Trevor DeVore
On May 6, 2005, at 8:28 PM, Thomas McGrath III wrote:
Trevor,
Thanks for the reply, are you saying that I can:
put field unicodestuff into gVariable
and then:
set the unicodetext of field field to gVariable
P.S. I am working with mixed fields that have both English and  
Asian languages in them.
Almost.  The first line should be:
put the unicodeText of fld unicodeStuff into gVariable
then
set the unicodeText of field field to gVariable
Once you put unicodeText of a field into a variable then you can  
assign it to the unicodeText of another field.  The variable just  
holds the data that you put into it.  If you put the  text of a field  
into gVariable (like in your first example above) and then try to  
assign the unicodeText of another field to the variable will you get  
junk in the field since it is the same as saying

set the unicodeText of fld field to text of field unicodeStuff
Just remember that it is the field that has different ways to access  
the text in the field (text, htmlText, unicodeText, rtf).  Your  
variable is just holding whatever you initially put into it.

--
Trevor DeVore
Blue Mango Multimedia
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Unicode woes

2005-05-06 Thread Thomas McGrath III
Thanks,
Got it. Of course all of this playing around caused my REV to crash
Thanks
Tom
On May 6, 2005, at 11:56 PM, Trevor DeVore wrote:
On May 6, 2005, at 8:28 PM, Thomas McGrath III wrote:
Trevor,
Thanks for the reply, are you saying that I can:
put field unicodestuff into gVariable
and then:
set the unicodetext of field field to gVariable
P.S. I am working with mixed fields that have both English and Asian 
languages in them.
Almost.  The first line should be:
put the unicodeText of fld unicodeStuff into gVariable
then
set the unicodeText of field field to gVariable
Once you put unicodeText of a field into a variable then you can 
assign it to the unicodeText of another field.  The variable just 
holds the data that you put into it.  If you put the  text of a field 
into gVariable (like in your first example above) and then try to 
assign the unicodeText of another field to the variable will you get 
junk in the field since it is the same as saying

set the unicodeText of fld field to text of field unicodeStuff
Just remember that it is the field that has different ways to access 
the text in the field (text, htmlText, unicodeText, rtf).  Your 
variable is just holding whatever you initially put into it.

--
Trevor DeVore
Blue Mango Multimedia
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Problems with resource mages

2005-05-06 Thread Chipp Walters
Doc,
It's easier than you think:
put img fred into img ginger
-Chipp
docmann wrote:
I have no problems displaying images into my container using either a
local file or URL location, but cannot for the life of me figure out
how to display an image directly from within the stack file itself.
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution