[Flashcoders] can't access XML attributes with HTTPService

2008-09-29 Thread Johan Nyberg
Hi, I don't know what I'm doing wrong. I'm trying to load an XML file 
into my Flex app, but I can't seem to be able to display any data that 
is residing as attributes in the XML file.


What have I missed?

Here is my sample app:


?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; 
layout=absolute height=400 width=792 
creationComplete=feedRequest.send()

mx:HTTPService
id=feedRequest
url=cashgamelookup.xml
useProxy=false/
	mx:Panel x=10 y=10 width=772 height=380 layout=absolute 
title={ feedRequest.lastResult.root.title }
		mx:DataGrid x=10 y=10 width=732 id=dgPosts dataProvider={ 
feedRequest.lastResult.root.tables.table }

mx:columns
mx:DataGridColumn headerText=Posts  
dataField=@limit/
mx:DataGridColumn headerText=Date   
dataField=@players width=150/
/mx:columns
/mx:DataGrid
/mx:Panel
/mx:Application


And here is an abbreviated version of the xml file:


?xml version=1.0 encoding=utf-8?
root
  titleKalle Anka/title
  tables
table site=party name=Deep Stack #1416111 (No DP) 
game=Hold'em limit=NL stake=2/4 players=6 bigblind=400 
pot=12400 hands=125 wait=0 flop=31/
table site=party name=Speed #1381943 (No DP) game=Hold'em 
limit=NL stake=2/4 players=6 bigblind=400 pot=10300 hands=92 
wait=3 flop=35/

/tables
/root


Thankful for any help!

Regards,

--
Johan Nyberg
Flash developer

Web Guide Partner
Sergels Torg 12, 8 tr
111 57 Stockholm
070 - 407 83 00
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] AS3 additions/changes in CS4?

2008-09-29 Thread Kostas Plastiras
2008/9/25 Merrill, Jason [EMAIL PROTECTED]

 What I don't get is why Adobe doesn't (or maybe they are working on it, but
 they haven't rolled it out yet) merge the two frameworks that compile into
 .swf format - Flash CS* and Flex.  There are a lot of gotchas and
 workaround when using Flash inside of Flex for example, and the Flash CS*
 framework is seriously lacking in components.  The Flex SDK is free, so it
 would seem that both compilers should use the same class framework to
 compile .swfs - that would make development with both tools a lot easier,
 and provide more features (especially to the Flash authoring tool).

 Jason Merrill
 Bank of America
 GCIB  Staff Support LLD
 Instructional Technology  Media
 Join the Bank of America Flash Platform Developer Community
 Are you a Bank of America associate interested in innovative learning ideas
 and technologies?
 Check out our internal  Innovative Learning Blog  subscribe.


Maybe it is just marketing decision

-- 
Kostas Plastiras - Master Degree: Multimedia Expert. Web design, Web
development  Multimedia Production. webplastic.net
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] can't access XML attributes with HTTPService

2008-09-29 Thread Kerry Thompson
Johan Nyberg wrote:

 Hi, I don't know what I'm doing wrong. I'm trying to load an XML file
 into my Flex app, but I can't seem to be able to display any data that
 is residing as attributes in the XML file.
 
 What have I missed?
 snip
 And here is an abbreviated version of the xml file:
 
 
 ?xml version=1.0 encoding=utf-8?
 root
titleKalle Anka/title
tables
  table site=party name=Deep Stack #1416111 (No DP)
 game=Hold'em limit=NL stake=2/4 players=6 bigblind=400
 pot=12400 hands=125 wait=0 flop=31/
  table site=party name=Speed #1381943 (No DP) game=Hold'em
 limit=NL stake=2/4 players=6 bigblind=400 pot=10300 hands=92
 wait=3 flop=35/
 /tables
 /root

I didn't go through the code in detail, but one thing that jumps out at me
is that you have some problematic characters in the attributes. Try
replacing the apostrophe with apos.

There is a lot of information on XML at www.xml.com. You can see a
discussion of illegal characters at
http://www.xml.com/pub/a/2003/02/26/qa.html.

Cordially,

Kerry Thompson

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


[Flashcoders] Selling a Flash website

2008-09-29 Thread Gert-Jan van der Wel

Hi everybody,

This might be a little off topic, but hopefully someone can help me out.

For the last couple of years a friend and I were happily running a  
project on the side called T-signers.com. It's a site where people can  
design and order their own custom t-shirts. It's always been a  
pleasure to work on it, but recently a couple of things have changed  
and we can't find the time anymore to work on it. At this moment we're  
thinking about selling it or finding some enthusiastic developers to  
continue the project. Does anybody know how we should handle this?


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


Re: [Flashcoders] Selling a Flash website

2008-09-29 Thread Paul Andrews

It's a nice site.

I don't know what the issue is that makes you want to give it up, but if 
there's enough revenue coming in why not employ someone part time to take 
over the admin?


Paul
- Original Message - 
From: Gert-Jan van der Wel [EMAIL PROTECTED]

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Monday, September 29, 2008 4:18 PM
Subject: [Flashcoders] Selling a Flash website



Hi everybody,

This might be a little off topic, but hopefully someone can help me out.

For the last couple of years a friend and I were happily running a 
project on the side called T-signers.com. It's a site where people can 
design and order their own custom t-shirts. It's always been a  pleasure 
to work on it, but recently a couple of things have changed  and we can't 
find the time anymore to work on it. At this moment we're  thinking about 
selling it or finding some enthusiastic developers to  continue the 
project. Does anybody know how we should handle this?


Thanks!
Gert-Jan
___
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] Selling a Flash website

2008-09-29 Thread Lehr, Theodore M (N-SGIS)
Ebay?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan
van der Wel
Sent: Monday, September 29, 2008 11:18 AM
To: Flash Coders List
Subject: [Flashcoders] Selling a Flash website

Hi everybody,

This might be a little off topic, but hopefully someone can help me out.

For the last couple of years a friend and I were happily running a  
project on the side called T-signers.com. It's a site where people can  
design and order their own custom t-shirts. It's always been a  
pleasure to work on it, but recently a couple of things have changed  
and we can't find the time anymore to work on it. At this moment we're  
thinking about selling it or finding some enthusiastic developers to  
continue the project. Does anybody know how we should handle this?

Thanks!
Gert-Jan
___
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] Can URLLoader Open New Window Like LoadVars?

2008-09-29 Thread Glen Pike

use navigateToURL

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/package.html#navigateToURL()

With a URLRequest having the method variable set to POST and the 
window set to _blank


Not 100% sure, but you may run into problems with pop-up blocking.

Glen

Elia Morling wrote:
The LoadVars could specify a target to open a new window in AS2... Can 
we open a new window with URLLoader while making a POST operation?


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




--

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

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


Re: [Flashcoders] Selling a Flash website

2008-09-29 Thread Gert-Jan van der Wel
@Paul: It's a good suggestion, but we can't afford to hire someone at this
moment. We're making money, but not enough to hire someone.

@Theodore: Ebay could be an option. Has anybody done this?

Gert-Jan

2008/9/29 Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED]

 Ebay?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan
 van der Wel
 Sent: Monday, September 29, 2008 11:18 AM
 To: Flash Coders List
 Subject: [Flashcoders] Selling a Flash website

 Hi everybody,

 This might be a little off topic, but hopefully someone can help me out.

 For the last couple of years a friend and I were happily running a
 project on the side called T-signers.com. It's a site where people can
 design and order their own custom t-shirts. It's always been a
 pleasure to work on it, but recently a couple of things have changed
 and we can't find the time anymore to work on it. At this moment we're
 thinking about selling it or finding some enthusiastic developers to
 continue the project. Does anybody know how we should handle this?

 Thanks!
 Gert-Jan
 ___
 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




-- 
Gert-Jan van der Wel
Co-Founder  CTO, Floorplanner.com

+31 (0)10 281 0799
+31 (0)6 1665 0338
[EMAIL PROTECTED]
http://www.floorplanner.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] Selling a Flash website

2008-09-29 Thread Lehr, Theodore M (N-SGIS)
That's probably what I would do - you simply package the domain name with your 
files and be done with it...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan van der 
Wel
Sent: Monday, September 29, 2008 2:03 PM
To: Flash Coders List
Subject: Re: [Flashcoders] Selling a Flash website

@Paul: It's a good suggestion, but we can't afford to hire someone at this
moment. We're making money, but not enough to hire someone.

@Theodore: Ebay could be an option. Has anybody done this?

Gert-Jan

2008/9/29 Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED]

 Ebay?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gert-Jan
 van der Wel
 Sent: Monday, September 29, 2008 11:18 AM
 To: Flash Coders List
 Subject: [Flashcoders] Selling a Flash website

 Hi everybody,

 This might be a little off topic, but hopefully someone can help me out.

 For the last couple of years a friend and I were happily running a
 project on the side called T-signers.com. It's a site where people can
 design and order their own custom t-shirts. It's always been a
 pleasure to work on it, but recently a couple of things have changed
 and we can't find the time anymore to work on it. At this moment we're
 thinking about selling it or finding some enthusiastic developers to
 continue the project. Does anybody know how we should handle this?

 Thanks!
 Gert-Jan
 ___
 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




-- 
Gert-Jan van der Wel
Co-Founder  CTO, Floorplanner.com

+31 (0)10 281 0799
+31 (0)6 1665 0338
[EMAIL PROTECTED]
http://www.floorplanner.com
___
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


[Flashcoders] Layering, drawing a blank

2008-09-29 Thread Lord, Susan, CTR, DSS
Hi there,

I cannot for the life of me remember what the method is to have a layer
come to the top of the stacking order when you click it.  

Any help you can provide is appreciated!
Thanks,
Susan
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Matt S.
AS2 or AS3?

On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
[EMAIL PROTECTED] wrote:
 Hi there,

 I cannot for the life of me remember what the method is to have a layer
 come to the top of the stacking order when you click it.

 Any help you can provide is appreciated!
 Thanks,
 Susan
 ___
 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: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Lord, Susan, CTR, DSS
AS3.  

I tried swapDepth() and getDepth, and a fewothers but none worked. Has
it changed since AS2?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
Sent: Monday, September 29, 2008 3:02 PM
To: Flash Coders List
Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
Importance: Low

AS2 or AS3?

On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
[EMAIL PROTECTED] wrote:
 Hi there,

 I cannot for the life of me remember what the method is to have a
layer
 come to the top of the stacking order when you click it.

 Any help you can provide is appreciated!
 Thanks,
 Susan
 ___
 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

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


Re: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread jonathan howe
It absolutely has: the whole display model has changed for the better.

Arguably the most understandable way to do it is a removeChild and addChild
in succession.

parentDisplayObjectName.removeChild(childYoureMoving);
parentDisplayObjectName.addChild(childYoureMoving);
This works because addChild() puts the new object at the top of the display
order.

The display object model is definitely worth doing a little reading on,
though.

-jonathan


On Mon, Sep 29, 2008 at 3:06 PM, Lord, Susan, CTR, DSS 
[EMAIL PROTECTED] wrote:

 AS3.

 I tried swapDepth() and getDepth, and a fewothers but none worked. Has
 it changed since AS2?


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
 Sent: Monday, September 29, 2008 3:02 PM
 To: Flash Coders List
 Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
 Importance: Low

 AS2 or AS3?

 On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
 [EMAIL PROTECTED] wrote:
  Hi there,
 
  I cannot for the life of me remember what the method is to have a
 layer
  come to the top of the stacking order when you click it.
 
  Any help you can provide is appreciated!
  Thanks,
  Susan
  ___
  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

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




-- 
-jonathan howe :: 404.434.2321 :: 180 High St Apt 26 Portland, ME 04101
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread eric e. dolecki
Umm... just a little bit. Check out DisplayObject

On Mon, Sep 29, 2008 at 3:06 PM, Lord, Susan, CTR, DSS 
[EMAIL PROTECTED] wrote:

 AS3.

 I tried swapDepth() and getDepth, and a fewothers but none worked. Has
 it changed since AS2?


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
 Sent: Monday, September 29, 2008 3:02 PM
 To: Flash Coders List
 Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
 Importance: Low

 AS2 or AS3?

 On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
 [EMAIL PROTECTED] wrote:
  Hi there,
 
  I cannot for the life of me remember what the method is to have a
 layer
  come to the top of the stacking order when you click it.
 
  Any help you can provide is appreciated!
  Thanks,
  Susan
  ___
  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

 ___
 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: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Glen Pike

Hi,

   It has changed - I think this may help:

   http://www.foundation-flash.com/tutorials/changingdepths/

   If not, try googling AS3 + depth

   Glen

Lord, Susan, CTR, DSS wrote:
AS3.  


I tried swapDepth() and getDepth, and a fewothers but none worked. Has
it changed since AS2?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
Sent: Monday, September 29, 2008 3:02 PM
To: Flash Coders List
Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
Importance: Low

AS2 or AS3?

On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
[EMAIL PROTECTED] wrote:
  

Hi there,

I cannot for the life of me remember what the method is to have a


layer
  

come to the top of the stacking order when you click it.

Any help you can provide is appreciated!
Thanks,
Susan
___
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

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


  


--

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

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


RE: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Lord, Susan, CTR, DSS
What would my parentDisplayObject be if the objects were drawn directly
onto the stage?  They are now in an object array and I am manipulating
them from there.  I noticed that sometimes they drag behind other
objects though, so wanted to make sure they always be on top.

function startDragging(event:MouseEvent):void {

for (i= 0; i  count; i++) {
if (event.target == aButtons[i] ) {
trace(start dragging);
event.target.startDrag();
}
stage.addEventListener(MouseEvent.MOUSE_UP,
stopDragging);
}
}


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of jonathan
howe
Sent: Monday, September 29, 2008 3:34 PM
To: Flash Coders List
Subject: Re: [BULK] Re: [Flashcoders] Layering, drawing a blank
Importance: Low

It absolutely has: the whole display model has changed for the better.

Arguably the most understandable way to do it is a removeChild and
addChild
in succession.

parentDisplayObjectName.removeChild(childYoureMoving);
parentDisplayObjectName.addChild(childYoureMoving);
This works because addChild() puts the new object at the top of the
display
order.

The display object model is definitely worth doing a little reading on,
though.

-jonathan


On Mon, Sep 29, 2008 at 3:06 PM, Lord, Susan, CTR, DSS 
[EMAIL PROTECTED] wrote:

 AS3.

 I tried swapDepth() and getDepth, and a fewothers but none worked. Has
 it changed since AS2?


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Matt
S.
 Sent: Monday, September 29, 2008 3:02 PM
 To: Flash Coders List
 Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
 Importance: Low

 AS2 or AS3?

 On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
 [EMAIL PROTECTED] wrote:
  Hi there,
 
  I cannot for the life of me remember what the method is to have a
 layer
  come to the top of the stacking order when you click it.
 
  Any help you can provide is appreciated!
  Thanks,
  Susan
  ___
  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

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




-- 
-jonathan howe :: 404.434.2321 :: 180 High St Apt 26 Portland, ME 04101
___
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: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Zeh Fernando

It changed:

myparent.setChildIndex(mychild, myparent.numChildren-1);

Or just:

myparent.addChild(mychild);

Even if it's already a child. It just removes and readds on the top.


Zeh

Lord, Susan, CTR, DSS wrote:
AS3.  


I tried swapDepth() and getDepth, and a fewothers but none worked. Has
it changed since AS2?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matt S.
Sent: Monday, September 29, 2008 3:02 PM
To: Flash Coders List
Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
Importance: Low

AS2 or AS3?

On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
[EMAIL PROTECTED] wrote:

Hi there,

I cannot for the life of me remember what the method is to have a

layer

come to the top of the stacking order when you click it.

Any help you can provide is appreciated!
Thanks,
Susan
___
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

___
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: [BULK] Re: [Flashcoders] Layering, drawing a blank

2008-09-29 Thread Lord, Susan, CTR, DSS
What an awesome reference! Thanks!!

I used:

setChildIndex(aButtons[i], numChildren - 1);

And it worked like a charm.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen
Pike
Sent: Monday, September 29, 2008 3:37 PM
To: Flash Coders List
Subject: Re: [BULK] Re: [Flashcoders] Layering, drawing a blank
Importance: Low

Hi,

It has changed - I think this may help:

http://www.foundation-flash.com/tutorials/changingdepths/

If not, try googling AS3 + depth

Glen

Lord, Susan, CTR, DSS wrote:
 AS3.  

 I tried swapDepth() and getDepth, and a fewothers but none worked. Has
 it changed since AS2?


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Matt
S.
 Sent: Monday, September 29, 2008 3:02 PM
 To: Flash Coders List
 Subject: [BULK] Re: [Flashcoders] Layering, drawing a blank
 Importance: Low

 AS2 or AS3?

 On Mon, Sep 29, 2008 at 2:48 PM, Lord, Susan, CTR, DSS
 [EMAIL PROTECTED] wrote:
   
 Hi there,

 I cannot for the life of me remember what the method is to have a
 
 layer
   
 come to the top of the stacking order when you click it.

 Any help you can provide is appreciated!
 Thanks,
 Susan
 ___
 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

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


   

-- 

Glen Pike
01326 218440
www.glenpike.co.uk http://www.glenpike.co.uk

___
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