[Flashcoders] Moving groups of objects

2008-07-22 Thread J.C. Berry
Hi all, I hope this is not too basic, but are there any tutorials and/or
hints on how to move multiple objects as a group with AS (preferably AS2)?
Whenever you could throw me a line I would appreciate it! Thanks so much.

-- 
Jonathan Berry, M.A.
IT Consultant
619.306.1712(m)
[EMAIL PROTECTED]
I think the real reason the Extropy Institute closed is because Ayn Rand
rose from her cryo-sleep -digibrill

( @ o )
/ | | | | \ Chumby.com

---

This E-mail is covered by the Electronic Communications Privacy Act, 18
U.S.C. ?? 2510-2521 and is legally privileged.
This information is confidential information and is intended only for
the use of the individual or entity named above. If the reader of this
message is not the intended recipient, you are hereby notified that any
dissemination, distribution or copying of this communication is strictly
prohibited.

---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Moving groups of objects

2008-07-22 Thread Gabino Travassos

Hi Jonathan,

How about creating a root movieclip and then making your objects as 
children of that clip, so something (pseudocode) like:

create movieclip f1 // root button
create movieclip f1.button1 // button clip
create text field f1.button1.text1 // text
create movieclip f1.button1.rect1 // rectangle

and then you can move f1._x+=10 or f1._visible=0

Gabino

- Original Message - 
From: J.C. Berry [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Tuesday, July 22, 2008 8:51 PM
Subject: [Flashcoders] Moving groups of objects


Hi all, I hope this is not too basic, but are there any tutorials 
and/or
hints on how to move multiple objects as a group with AS (preferably 
AS2)?
Whenever you could throw me a line I would appreciate it! Thanks so 
much.


--
Jonathan Berry, M.A.
IT Consultant
619.306.1712(m)
[EMAIL PROTECTED]
I think the real reason the Extropy Institute closed is because Ayn 
Rand

rose from her cryo-sleep -digibrill

( @ o )
/ | | | | \ Chumby.com

---

This E-mail is covered by the Electronic Communications Privacy Act, 
18

U.S.C. ?? 2510-2521 and is legally privileged.
This information is confidential information and is intended only for
the use of the individual or entity named above. If the reader of this
message is not the intended recipient, you are hereby notified that 
any
dissemination, distribution or copying of this communication is 
strictly

prohibited.

---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Moving groups of objects

2008-07-22 Thread J.C. Berry
Thanks Gabino for the quick answer. However, I do not know what I have done
incorrectly. As per my second email, I have an empty mc on the root and I
have created a text field in there, also load in mcs in there, and
attachMovie some buttons. But when I move the mc in root only the images
which are loaded in move when I move it?

On Tue, Jul 22, 2008 at 9:12 PM, Gabino Travassos 
[EMAIL PROTECTED] wrote:

 Hi Jonathan,

 How about creating a root movieclip and then making your objects as
 children of that clip, so something (pseudocode) like:
 create movieclip f1 // root button
 create movieclip f1.button1 // button clip
 create text field f1.button1.text1 // text
 create movieclip f1.button1.rect1 // rectangle

 and then you can move f1._x+=10 or f1._visible=0

 Gabino

 - Original Message - From: J.C. Berry [EMAIL PROTECTED]
 To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
 Sent: Tuesday, July 22, 2008 8:51 PM
 Subject: [Flashcoders] Moving groups of objects


  Hi all, I hope this is not too basic, but are there any tutorials and/or
 hints on how to move multiple objects as a group with AS (preferably AS2)?
 Whenever you could throw me a line I would appreciate it! Thanks so much.

 --
 Jonathan Berry, M.A.
 IT Consultant
 619.306.1712(m)
 [EMAIL PROTECTED]
 I think the real reason the Extropy Institute closed is because Ayn Rand
 rose from her cryo-sleep -digibrill
 
 ( @ o )
 / | | | | \ Chumby.com

 ---

 This E-mail is covered by the Electronic Communications Privacy Act, 18
 U.S.C. ?? 2510-2521 and is legally privileged.
 This information is confidential information and is intended only for
 the use of the individual or entity named above. If the reader of this
 message is not the intended recipient, you are hereby notified that any
 dissemination, distribution or copying of this communication is strictly
 prohibited.

 ---
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




-- 
Jonathan Berry, M.A.
IT Consultant
619.306.1712(m)
[EMAIL PROTECTED]
I think the real reason the Extropy Institute closed is because Ayn Rand
rose from her cryo-sleep -digibrill

( @ o )
/ | | | | \ Chumby.com

---

This E-mail is covered by the Electronic Communications Privacy Act, 18
U.S.C. ?? 2510-2521 and is legally privileged.
This information is confidential information and is intended only for
the use of the individual or entity named above. If the reader of this
message is not the intended recipient, you are hereby notified that any
dissemination, distribution or copying of this communication is strictly
prohibited.

---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Moving groups of objects

2008-07-22 Thread Gabino Travassos
I think you'll have to provide some code. It's hard to tell why you've 
orphaned your text. Maybe your targeting the wrong clip. It can be 
pretty convoluted.


Luck


- Original Message - 
From: J.C. Berry [EMAIL PROTECTED]

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Tuesday, July 22, 2008 10:27 PM
Subject: Re: [Flashcoders] Moving groups of objects


Thanks Gabino for the quick answer. However, I do not know what I have 
done
incorrectly. As per my second email, I have an empty mc on the root 
and I

have created a text field in there, also load in mcs in there, and
attachMovie some buttons. But when I move the mc in root only the 
images

which are loaded in move when I move it?

On Tue, Jul 22, 2008 at 9:12 PM, Gabino Travassos 
[EMAIL PROTECTED] wrote:


Hi Jonathan,

How about creating a root movieclip and then making your objects as
children of that clip, so something (pseudocode) like:
create movieclip f1 // root button
create movieclip f1.button1 // button clip
create text field f1.button1.text1 // text
create movieclip f1.button1.rect1 // rectangle

and then you can move f1._x+=10 or f1._visible=0

Gabino

- Original Message - From: J.C. Berry 
[EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Tuesday, July 22, 2008 8:51 PM
Subject: [Flashcoders] Moving groups of objects


 Hi all, I hope this is not too basic, but are there any tutorials 
and/or
hints on how to move multiple objects as a group with AS (preferably 
AS2)?
Whenever you could throw me a line I would appreciate it! Thanks so 
much.


--
Jonathan Berry, M.A.
IT Consultant
619.306.1712(m)
[EMAIL PROTECTED]
I think the real reason the Extropy Institute closed is because Ayn 
Rand

rose from her cryo-sleep -digibrill

( @ o )
/ | | | | \ Chumby.com

---

This E-mail is covered by the Electronic Communications Privacy Act, 
18

U.S.C. ?? 2510-2521 and is legally privileged.
This information is confidential information and is intended only 
for
the use of the individual or entity named above. If the reader of 
this
message is not the intended recipient, you are hereby notified that 
any
dissemination, distribution or copying of this communication is 
strictly

prohibited.

---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





--
Jonathan Berry, M.A.
IT Consultant
619.306.1712(m)
[EMAIL PROTECTED]
I think the real reason the Extropy Institute closed is because Ayn 
Rand

rose from her cryo-sleep -digibrill

( @ o )
/ | | | | \ Chumby.com

---

This E-mail is covered by the Electronic Communications Privacy Act, 
18

U.S.C. ?? 2510-2521 and is legally privileged.
This information is confidential information and is intended only for
the use of the individual or entity named above. If the reader of this
message is not the intended recipient, you are hereby notified that 
any
dissemination, distribution or copying of this communication is 
strictly

prohibited.

---
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders