Geoff and Monte,
Based upon your replies (excerpted below), it looks like a transition to
Revolution would be even smoother than I imagined! I've just completed the
first tutorial, and it's clear that it will be difficult to exhaust the
capabilities of this tool. I'll definitely investigate those tips! I also
appreciate Runtime Revolution for making this e-mail resource available -
it's been a tremendous help so far.
Sincerely,
Tommy Simmons
Employment Law Advisory Network, Inc.
www.employmentlawadvisors.com
----- first original message -----
Why the distinction? What Mac-specific and PC-specific things can't be made
to share one project? Have a look at the Profile Manager, and see if it
won't meet your needs. (I know it amazed me the first time I examined it!)
Regards,
Geoff
----- second original message -----
> > what I'm expecting to have to do is maintain
> > two development stacks, one with Mac-specific things, the other with
> > PC-specifics, but sharing 99.5% of their content and coding - even
though
> > it's not flawless "write once, compile everywhere", I expect it to be a
> > large improvement over what I've been doing.
>
> There should be no need to do this. If there is part of your script that
is
> platform dependant then you just do:
>
> switch the platform
> case "MacOS"
> Mac stuff here
> break
> case "Windows"
> Windows stuff here
> break
> default
> UNIX stuff here
> break
> end switch
>
> Revoloution is "write once, compile everywhere"
>
> Monte