Re: [Flashcoders] How to change reference?

2006-07-28 Thread natalia Vikhtinskaya

O! Thank you. This is interesting way.

2006/7/27, Mike [EMAIL PROTECTED]:


It's a hack, but you can do:

   as.func1.apply(_root);

Might be better to change func1 so that it takes a MovieClip as a
parameter. Then you could just do:

   as.func1(_root);

(Although that's still a bit of a hack.)
--
T. Michael Keesey

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of natalia
Vikhtinskaya
Sent: Thursday, July 27, 2006 3:40 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] How to change reference?

Maybe I was not clear.

Clip as has function funk1

To call this function from root I should say as.func1 or from another
clip:
_root.as.func1.

I want to find way to call this function as _root.func1 even if she is
in
clip with name as.


2006/7/27, denfi [EMAIL PROTECTED]:

 you dun have to put _root.attachMovie since you are already attaching
it
 right from your current maintimeline.

 Instead just:

 attachMove(as,as,100); will do the job.

 Regrads!

 On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:
 
  Hi
 
  I attach clip with this code:
 
  _root.attachMovie(as,as,100);
 
  Is it possible to change reference to this clip? Instead of
 
  as.something
 
  to have _root.something
 
 
  Another words I want to find way to say _root instead of _root.as.
Is it
  possible?
 
  Thank you for help.
  ___
  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
 



 --
 Discipline can be painful, but it helps when you give it a chance.
 ___
 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@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] How to change reference?

2006-07-28 Thread Arul Prasad M L

_root.attachMovie(as,as,100);
_root.something = _root.as.something;

wont this provide u a reference at the root level ?

~Arul Prasad

On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:


Hi

I attach clip with this code:

_root.attachMovie(as,as,100);

Is it possible to change reference to this clip? Instead of

as.something

to have _root.something


Another words I want to find way to say _root instead of _root.as. Is it
possible?

Thank you for help.
___
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] How to change reference?

2006-07-27 Thread natalia Vikhtinskaya

Hi

I attach clip with this code:

_root.attachMovie(as,as,100);

Is it possible to change reference to this clip? Instead of

as.something

to have _root.something


Another words I want to find way to say _root instead of _root.as. Is it
possible?

Thank you for help.
___
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] How to change reference?

2006-07-27 Thread denfi

you dun have to put _root.attachMovie since you are already attaching it
right from your current maintimeline.

Instead just:

attachMove(as,as,100); will do the job.

Regrads!

On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:


Hi

I attach clip with this code:

_root.attachMovie(as,as,100);

Is it possible to change reference to this clip? Instead of

as.something

to have _root.something


Another words I want to find way to say _root instead of _root.as. Is it
possible?

Thank you for help.
___
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





--
Discipline can be painful, but it helps when you give it a chance.
___
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] How to change reference?

2006-07-27 Thread natalia Vikhtinskaya

Maybe I was not clear.

Clip as has function funk1

To call this function from root I should say as.func1 or from another clip:
_root.as.func1.

I want to find way to call this function as _root.func1 even if she is in
clip with name as.


2006/7/27, denfi [EMAIL PROTECTED]:


you dun have to put _root.attachMovie since you are already attaching it
right from your current maintimeline.

Instead just:

attachMove(as,as,100); will do the job.

Regrads!

On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:

 Hi

 I attach clip with this code:

 _root.attachMovie(as,as,100);

 Is it possible to change reference to this clip? Instead of

 as.something

 to have _root.something


 Another words I want to find way to say _root instead of _root.as. Is it
 possible?

 Thank you for help.
 ___
 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




--
Discipline can be painful, but it helps when you give it a chance.
___
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] How to change reference?

2006-07-27 Thread André Goliath
you can make an additional cross-reference

_root.func1 =  _root.as.func1;

but why would you want to do that?
Why don´t you create the function directly on the root?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of natalia
Vikhtinskaya
Sent: Thursday, July 27, 2006 12:40 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] How to change reference?

Maybe I was not clear.

Clip as has function funk1

To call this function from root I should say as.func1 or from another clip:
_root.as.func1.

I want to find way to call this function as _root.func1 even if she is in
clip with name as.


2006/7/27, denfi [EMAIL PROTECTED]:

 you dun have to put _root.attachMovie since you are already attaching it
 right from your current maintimeline.

 Instead just:

 attachMove(as,as,100); will do the job.

 Regrads!

 On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:
 
  Hi
 
  I attach clip with this code:
 
  _root.attachMovie(as,as,100);
 
  Is it possible to change reference to this clip? Instead of
 
  as.something
 
  to have _root.something
 
 
  Another words I want to find way to say _root instead of _root.as. Is it
  possible?
 
  Thank you for help.
  ___
  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
 



 --
 Discipline can be painful, but it helps when you give it a chance.
 ___
 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@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] How to change reference?

2006-07-27 Thread Mike
It's a hack, but you can do:

as.func1.apply(_root);

Might be better to change func1 so that it takes a MovieClip as a
parameter. Then you could just do:

as.func1(_root);

(Although that's still a bit of a hack.)
--
T. Michael Keesey

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of natalia
Vikhtinskaya
Sent: Thursday, July 27, 2006 3:40 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] How to change reference?

Maybe I was not clear.

Clip as has function funk1

To call this function from root I should say as.func1 or from another
clip:
_root.as.func1.

I want to find way to call this function as _root.func1 even if she is
in
clip with name as.


2006/7/27, denfi [EMAIL PROTECTED]:

 you dun have to put _root.attachMovie since you are already attaching
it
 right from your current maintimeline.

 Instead just:

 attachMove(as,as,100); will do the job.

 Regrads!

 On 7/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:
 
  Hi
 
  I attach clip with this code:
 
  _root.attachMovie(as,as,100);
 
  Is it possible to change reference to this clip? Instead of
 
  as.something
 
  to have _root.something
 
 
  Another words I want to find way to say _root instead of _root.as.
Is it
  possible?
 
  Thank you for help.
  ___
  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
 



 --
 Discipline can be painful, but it helps when you give it a chance.
 ___
 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@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