Re: [Flashcoders] Flash environment variables?

2006-10-26 Thread slangeberg


everyone pointed to the classpath within their own workspaces
(absolute path)... for some reason this did not go over well with the
team?



This may not apply, but what I've done before is have all members on the
team use the same directory structure, eg:

c:/data/flash/classes

Or whatever you want to call it. Then, flash docs shared all point to same
location, even though it's on local drive. Combine this with source control
and your staff will never look back, once they've made the adjustment!

Scott

On 10/26/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


Thanks Mark,

We are using a source control system (perforce) and I originally wanted to
set
it up so everyone pointed to the classpath within their own workspaces
(absolute path)... for some reason this did not go over well with the
team?
Perhaps I'll need to explain it to them a bit better. I have also added
document relative classpaths for each fla so atleast for now, as long as
they're working within the file structure laid out in source control, they
can
find the classes.

I guess I just wanted an easier or recommended way for us all to share the
classes.

*.*   Sherri
Quoting Mark Lapasa <[EMAIL PROTECTED]>:

> A different (and long-term) approach to your problem would be not to use
the
> variable class path approach. Force your team to use a relative pathing
> instead of the variable. Then instead of having your 'classes' or other
> dependencies that your team relies on a shared drive on the network, use
a
> source control system like Visual SourceSafe or Subversion/TortoiseSVN.
>
> It is a time-consuming task to get this setup but I think many here
would
> testify that having a source control software managing shared project
> resources is an investment that will return many times.

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash environment variables?

2006-10-26 Thread webgurl

Thanks Mark,

We are using a source control system (perforce) and I originally wanted to set
it up so everyone pointed to the classpath within their own workspaces
(absolute path)... for some reason this did not go over well with the team?
Perhaps I'll need to explain it to them a bit better. I have also added
document relative classpaths for each fla so atleast for now, as long as
they're working within the file structure laid out in source control, they can
find the classes.

I guess I just wanted an easier or recommended way for us all to share the
classes.

*.*   Sherri
Quoting Mark Lapasa <[EMAIL PROTECTED]>:


A different (and long-term) approach to your problem would be not to use the
variable class path approach. Force your team to use a relative pathing
instead of the variable. Then instead of having your 'classes' or other
dependencies that your team relies on a shared drive on the network, use a
source control system like Visual SourceSafe or Subversion/TortoiseSVN.

It is a time-consuming task to get this setup but I think many here would
testify that having a source control software managing shared project
resources is an investment that will return many times.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash environment variables?

2006-10-26 Thread Muzak
I'd use a combination of those (gloabl classpath/source control).

Each user has a global classpath, which is on his/her local harddrive.
Files (classes) in the global classpath (on local drive) are 'copies' of files 
on shared drive.
Those are checked in/out using source control.

The problem with using no global classpath is that Flash (IDE) will complain 
(throw an error) when you want to "check syntax" or 
"auto format" your code.
You can get around that by setting up a classpath for each fla/project for that 
fla only (through the Publish Settings option), but 
if the fla needs to be shared among different users, that might be a problem as 
the path will probably be different for each user.
With a global classpath, this is not an issue.

As Mark said, using source control takes getting used to but pays off in the 
end.

regards,
Muzak

- Original Message - 
From: "Mark Lapasa" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Thursday, October 26, 2006 3:23 PM
Subject: RE: [Flashcoders] Flash environment variables?


>A different (and long-term) approach to your problem would be not to use the
> variable class path approach. Force your team to use a relative pathing
> instead of the variable. Then instead of having your 'classes' or other
> dependencies that your team relies on a shared drive on the network, use a
> source control system like Visual SourceSafe or Subversion/TortoiseSVN.
>
> It is a time-consuming task to get this setup but I think many here would
> testify that having a source control software managing shared project
> resources is an investment that will return many times.
>
> -mL
> http://knowledge.lapasa.net
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of
> [EMAIL PROTECTED]
> Sent: Wednesday, October 25, 2006 3:22 PM
> To: Flashcoders mailing list
> Subject: [Flashcoders] Flash environment variables?
>
>
> Hi there,
>
> Just wondering if there is a way to create a new variable to use within the
> IDE?
> I'm not sure if that is clear enough so I'll explain what I'd like to do...
>
> When setting the ClassPath in Flash 8 I see the default one is:
> '$(LocalData)/Classes'
>
> What I'd like to do is create something like '$(ProjectFolder)/Classes' so
> every
> member of the team can point to one location (most likely on a network).
>
> Is this possible?
>
> Thanks
>
> *.*  Sherri
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Flash environment variables?

2006-10-26 Thread Mark Lapasa
A different (and long-term) approach to your problem would be not to use the
variable class path approach. Force your team to use a relative pathing
instead of the variable. Then instead of having your 'classes' or other
dependencies that your team relies on a shared drive on the network, use a
source control system like Visual SourceSafe or Subversion/TortoiseSVN.

It is a time-consuming task to get this setup but I think many here would
testify that having a source control software managing shared project
resources is an investment that will return many times.

-mL
http://knowledge.lapasa.net

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, October 25, 2006 3:22 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Flash environment variables?


Hi there,

Just wondering if there is a way to create a new variable to use within the
IDE?
I'm not sure if that is clear enough so I'll explain what I'd like to do...

When setting the ClassPath in Flash 8 I see the default one is:
'$(LocalData)/Classes'

What I'd like to do is create something like '$(ProjectFolder)/Classes' so
every
member of the team can point to one location (most likely on a network).

Is this possible?

Thanks

*.*  Sherri

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash environment variables?

2006-10-25 Thread Chris Hill
I know this isn't what you're asking, but I'd strongly recommend you 
don't put your classes on a network share, because it wreaks havoc with 
your aso caching.


And to attempt to answer your question, I don't think its possible, but 
unsure. It would be awesome if flash recognized environment variables!


Peace
C

[EMAIL PROTECTED] wrote:


Hi there,

Just wondering if there is a way to create a new variable to use within the IDE?
I'm not sure if that is clear enough so I'll explain what I'd like to do...

When setting the ClassPath in Flash 8 I see the default one is:
'$(LocalData)/Classes'

What I'd like to do is create something like '$(ProjectFolder)/Classes' so every
member of the team can point to one location (most likely on a network).

Is this possible?

Thanks

*.*  Sherri

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash environment variables?

2006-10-25 Thread webgurl
Hi there,

Just wondering if there is a way to create a new variable to use within the IDE?
I'm not sure if that is clear enough so I'll explain what I'd like to do...

When setting the ClassPath in Flash 8 I see the default one is:
'$(LocalData)/Classes'

What I'd like to do is create something like '$(ProjectFolder)/Classes' so every
member of the team can point to one location (most likely on a network).

Is this possible?

Thanks

*.*  Sherri

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com