Re: [Flashcoders] Quick greeting

2011-02-16 Thread Henrik Andersson
John R. Sweeney Jr skriver: TestŠ TestŠ Is this mic on? Nope. Try this one: ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Quick greeting

2011-02-16 Thread John R. Sweeney Jr
TestŠ TestŠ Is this mic on? ;) on 2/16/11 10:02 AM, Eric E. Dolecki at edole...@gmail.com wrote: > I am welcoming a certain Conor to the list. > > Test message for his inbox :) > > Eric John R. Sweeney Jr. Interactive Multimedia Developer OnDemand Interactive Inc 945 Washington Blvd. Ho

[Flashcoders] Quick greeting

2011-02-16 Thread Eric E. Dolecki
I am welcoming a certain Conor to the list. Test message for his inbox :) Eric ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
Thanks so much Jens! Willem van den Goorbergh On 16 feb 2011, at 14:33, Jens Struwe wrote: > To recusively dump your complex object you might use: > > function traceProperties(object : Object, depth : uint = 0) : void { >for (var prop : String in object) { > trace (prefix(depth), prop,

Re: [Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Karl DeSaulniers
:) My pleasure.. Best, Karl On Feb 16, 2011, at 7:24 AM, Cor wrote: That did the trick!!! Thanks Karl. regards, Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: woensdag 16

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Jens Struwe
To recusively dump your complex object you might use: function traceProperties(object : Object, depth : uint = 0) : void { for (var prop : String in object) { trace (prefix(depth), prop, object[prop]); if (object[prop] is Object) traceProperties(object[prop], depth + 1); }

RE: [Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Cor
That did the trick!!! Thanks Karl. regards, Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: woensdag 16 februari 2011 14:19 To: Flash Coders List Subject: Re: [Flashcoders] How

Re: [Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Karl DeSaulniers
Hi Cor, Try this.. body { text-align:center; width:100%; height:100%; } div#flashContent { width:auto; height:auto; } or this if you want it centered vertically body { text-align:center; vertical-align:middle; width:100%; height: 100%; }
d

RE: [Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Cor
Thank you, but that didn't work. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Glen Pike Sent: woensdag 16 februari 2011 13:55 To: Flash Coders List Subject: Re: [Flashcoders] How to center my Flash in SW

Re: [Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Glen Pike
You might need: html, body { width:100%; height:100%;} #flashContent { height:100%;width:100%; text-align:center;} This won't do vertical align - you have to hack with javascript to do that. On 16/02/2011 12:40, Cor wrote: Can anyone tell me how to center my Flash content in html page with

[Flashcoders] How to center my Flash in SWFOBJECT?

2011-02-16 Thread Cor
Can anyone tell me how to center my Flash content in html page with use of SWFOBJECT? I tried these: body { margin: 0px} div#flashContent { text-align: center; } object#flashContent { display:inline; } AND body { margin: 0px} div#flashConten

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
Hi Jens, What I basically want is to transform the xml structure into an object structure. xml: 0xEBDBAA RA01 0xEBDBAA RA01

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
Hi Cor thanks, but that won't do. If I write a part out in a tree structure you'll see why: map map.classes map.classes,class1 map.classes,class1.areaColor map.classes,class1.value ... map.classes,class2 map.classes,class2.areaColo

Re: [Flashcoders] checking for properties AS3

2011-02-16 Thread Jens Struwe
Having an example XML could be pretty useful. And, actually, I don't understand the problem. What should be the output? Please hand over all necessary info required to be able to help you. Am 16.02.2011 12:43, schrieb Geografiek: Hi list, I posted this question a week ago on flash tiger, but

RE: [Flashcoders] checking for properties AS3

2011-02-16 Thread Cor
Hi Willem, Not sure, but what if you change this: for each (var childNode:XML in node.*) { into: for each (var childNode:XML in node..*) { Groeten, Cor van Dooren www.codobyte.com -- "There are only 10 types of people in th

[Flashcoders] checking for properties AS3

2011-02-16 Thread Geografiek
Hi list, I posted this question a week ago on flash tiger, but never got an answer. So I try my luck here. I create an object and dynamically assign properties to it, values from xml-nodes. If an xml-node has child nodes the property assigned is an object and the values of the child nodes are a