Re: [Flashcoders] extends MovieClip

2007-02-17 Thread T. Michael Keesey

Look into the [Inspectable] metadata tag.

If you place it before a class variable or property, then setting the
class under the component definition will automatically populate the
parameters.

class MyClass {
   //...
   [Inspectable(defaultValue=default)]
   public var myVar:String;
   [Inspectable]
   public function get myProp():Number {
   return _prop;
   }
   public function set myProp(value:Number):Void {
   _prop = isFinite(value) ? Math.floor(value) : 0;
   }
   private var _prop:Number;
   //...
}

There are other options: enumeration, different types, etc.

On 2/16/07, David Cohn [EMAIL PROTECTED] wrote:

Hey all,

As per my earlier thread, I've been playing around with the
Component Definition dialog box in order to create a class which
extends MovieClip, where the class can be passed parameters (or,
set in the Parameters tab as the case may be).  This seems to
implement what I want, but I'm puzzled about the behavior of the
Component Definition dialog box. What I do is:

-- Set Linkage...:

AS 2.0 Class:   MyPackage.myClass


-- Open Component Definition... and enter Parameters like:

Parameters:
TypesType   typeA   String
Degree  nDegree 37.5Number


-- Now, what puzzles me is the behavior of the AS 2.0 Class field
in this dialog box:


AS 2.0 Class:   MyPackage.myClass(val)

-- this seems to work; the parameters are set correctly for the
instance.
Puzzlement 1: val can be *anything*, as long as it's 
just one
word (e.g. it can't be sType,nDegree) and the parameters are set
correctly!


AS 2.0 Class:   MyPackage.myClass()

-- this gives me a syntax error


AS 2.0 Class:   MyPackage.myClass

-- Puzzlement 2: this causes all the parameters to disappear 
next
time the dialog box is open, and the parameters aren't set for the
instance!


Am I using this thing right?  I can't make heads or tails of what's
going on!

Thanks,
--Dave

___
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




--
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry  Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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] extends MovieClip

2007-02-17 Thread Muzak
Also, leave the Parameters in the Component Definition window blank, it's 
there for backwards compatibility and will be filled 
in automatically if you use [Inspectable] metadata in your class.
But for that to work you need to fill in the class (including package) in the 
AS 2.0 Class field - just below the paramaters in 
the Component Definition window.

When you make changes to a class' [Inspectable] metadata, those changes are not 
reflected in the fla immediatly. For instance, if 
you add new Inspectable metadata and you have a movieclip instance on stage, 
you won't see the properties show up in the Parameters. 
You'll have to compile the fla first, or make the movieclip a compiled clip 
and recompile it each time you change the class.

regards,
Muzak

- Original Message - 
From: T. Michael Keesey [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Saturday, February 17, 2007 9:08 AM
Subject: Re: [Flashcoders] extends MovieClip


 Look into the [Inspectable] metadata tag.

 If you place it before a class variable or property, then setting the
 class under the component definition will automatically populate the
 parameters.

 class MyClass {
//...
[Inspectable(defaultValue=default)]
public var myVar:String;
[Inspectable]
public function get myProp():Number {
return _prop;
}
public function set myProp(value:Number):Void {
_prop = isFinite(value) ? Math.floor(value) : 0;
}
private var _prop:Number;
//...
 }

 There are other options: enumeration, different types, etc.



___
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] Re: _lockroot resetting

2007-02-17 Thread Hans Wichman

So, any ideas anyone? This 'feature' kinda messes up the whole system atm
...

thanks in advance
JC


On 2/14/07, Hans Wichman [EMAIL PROTECTED] wrote:


Hi,
in an application I am working on, I was 'forced' to use _lockroot (until
the architecture can be reevaluated:))).

So assume main loads sub into a path _root.sub and sub has _lockroot to
true.
If I trace _root from sub, it prints _level0.sub as it should.
However when I load sub for the second time (with different parameters),
_root stops pointing to _level0.sub and reverts back to _level0.

Even more strange, sub initializes some webservices and if i do:
trace 1:+_root
var myWS = new webservice
myWS.onSuccess = onSuccess

onSuccess = function () {
trace 2:+_root
}

It will print:
1:_level0.sub
2:_level0.sub
the first time sub is loaded, and
 1:_level0.sub
2:_level0
the second time.

Has anyone seen this behavior before?

greetz
JC







___
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] Re: _lockroot resetting

2007-02-17 Thread eka

Hello :)

you can try

_root._lockroot = true ;

?

EKA+ :)

2007/2/17, Hans Wichman [EMAIL PROTECTED]:


So, any ideas anyone? This 'feature' kinda messes up the whole system atm
...

thanks in advance
JC


On 2/14/07, Hans Wichman [EMAIL PROTECTED] wrote:

 Hi,
 in an application I am working on, I was 'forced' to use _lockroot
(until
 the architecture can be reevaluated:))).

 So assume main loads sub into a path _root.sub and sub has _lockroot to
 true.
 If I trace _root from sub, it prints _level0.sub as it should.
 However when I load sub for the second time (with different parameters),
 _root stops pointing to _level0.sub and reverts back to _level0.

 Even more strange, sub initializes some webservices and if i do:
 trace 1:+_root
 var myWS = new webservice
 myWS.onSuccess = onSuccess

 onSuccess = function () {
 trace 2:+_root
 }

 It will print:
 1:_level0.sub
 2:_level0.sub
 the first time sub is loaded, and
  1:_level0.sub
 2:_level0
 the second time.

 Has anyone seen this behavior before?

 greetz
 JC






___
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] Action Script editor

2007-02-17 Thread pedr browne

Hi,

Just wondering what AS editors people were using? I love sepy but can't get
it to run without errors on my intel mac. Does anyone have a good
alternative?

Thanks
___
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] Action Script editor

2007-02-17 Thread dr.ache

Hi Pedr.

My editor of choice is FlashDevelop[www.flashdevelop.org]. Its 
absolutely easy to

install and handle. Give it a try!

dr.ache



pedr browne schrieb:

Hi,

Just wondering what AS editors people were using? I love sepy but 
can't get

it to run without errors on my intel mac. Does anyone have a good
alternative?

Thanks
___
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] Action Script editor

2007-02-17 Thread eka

Hello :)

flashDevelop work in Mac ?

For me the best Flash Editor is Eclipse + FDT but fdt is free only if you
develop an OpenSource projet...

EKA+ :)

2007/2/17, dr.ache [EMAIL PROTECTED]:


Hi Pedr.

My editor of choice is FlashDevelop[www.flashdevelop.org]. Its
absolutely easy to
install and handle. Give it a try!

dr.ache



pedr browne schrieb:
 Hi,

 Just wondering what AS editors people were using? I love sepy but
 can't get
 it to run without errors on my intel mac. Does anyone have a good
 alternative?

 Thanks
 ___
 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] Action Script editor

2007-02-17 Thread Chris Mitchell
Hello;
  FlashDevelop IDE is the best thing out there. Its easy to set up for AS3 and 
AS2 comes ready to roll. www.flashdevelop.org . don't wait another minute. I 
will be using this forever :)
   
  chris;

eka [EMAIL PROTECTED] wrote:
  Hello :)

flashDevelop work in Mac ?

For me the best Flash Editor is Eclipse + FDT but fdt is free only if you
develop an OpenSource projet...

EKA+ :)

2007/2/17, dr.ache :

 Hi Pedr.

 My editor of choice is FlashDevelop[www.flashdevelop.org]. Its
 absolutely easy to
 install and handle. Give it a try!

 dr.ache



 pedr browne schrieb:
  Hi,
 
  Just wondering what AS editors people were using? I love sepy but
  can't get
  it to run without errors on my intel mac. Does anyone have a good
  alternative?
 
  Thanks
  ___
  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


 
-
Any questions?  Get answers on any topic at Yahoo! Answers. Try it now.
___
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] Re: Flashcoders Digest, Vol 25, Issue 53

2007-02-17 Thread David Cohn


Thanks, [Inspectable] metadata does the trick!

Where would people go for overview documentation on this stuff?

Flash (8) Help shows nothing for metadata nor Inspectable.  I found  
info on the adobe site once I knew what to look for, but is there a  
good summary available?


(if possible, anything but livedocs ;)

Thanks again,
--Dave




Look into the [Inspectable] metadata tag.

If you place it before a class variable or property, then setting the
class under the component definition will automatically populate the
parameters.

class MyClass {
//...
[Inspectable(defaultValue=default)]
public var myVar:String;
[Inspectable]
public function get myProp():Number {
return _prop;
}
public function set myProp(value:Number):Void {
_prop = isFinite(value) ? Math.floor(value) : 0;
}
private var _prop:Number;
//...
}

There are other options: enumeration, different types, etc.




Also, leave the Parameters in the Component Definition window  
blank, it's there for backwards compatibility and will be filled

in automatically if you use [Inspectable] metadata in your class.
But for that to work you need to fill in the class (including  
package) in the AS 2.0 Class field - just below the paramaters in

the Component Definition window.

When you make changes to a class' [Inspectable] metadata, those  
changes are not reflected in the fla immediatly. For instance, if
you add new Inspectable metadata and you have a movieclip instance  
on stage, you won't see the properties show up in the Parameters.
You'll have to compile the fla first, or make the movieclip a  
compiled clip and recompile it each time you change the class.





___
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] Re: Flashcoders Digest, Vol 25, Issue 53

2007-02-17 Thread Keith Reinfeld
Dave, 
 
I often get a 'Help Topic Not Found' result when I use search. Even when I
know it's in there! In this case, it's in there: 
 
Using Components 
 
Creating Components  Creating the ActionScript class file  Adding
component metadata  Metadata tags 
 
HTH 

-Keith 
http://keithreinfeld.home.comcast.net
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David Cohn
Sent: Saturday, February 17, 2007 12:30 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Re: Flashcoders Digest, Vol 25, Issue 53


Thanks, [Inspectable] metadata does the trick!

Where would people go for overview documentation on this stuff?

Flash (8) Help shows nothing for metadata nor Inspectable.  I found  
info on the adobe site once I knew what to look for, but is there a  
good summary available?

(if possible, anything but livedocs ;)

Thanks again,
--Dave



 Look into the [Inspectable] metadata tag.

 If you place it before a class variable or property, then setting the
 class under the component definition will automatically populate the
 parameters.

 class MyClass {
 //...
 [Inspectable(defaultValue=default)]
 public var myVar:String;
 [Inspectable]
 public function get myProp():Number {
 return _prop;
 }
 public function set myProp(value:Number):Void {
 _prop = isFinite(value) ? Math.floor(value) : 0;
 }
 private var _prop:Number;
 //...
 }

 There are other options: enumeration, different types, etc.



 Also, leave the Parameters in the Component Definition window  
 blank, it's there for backwards compatibility and will be filled
 in automatically if you use [Inspectable] metadata in your class.
 But for that to work you need to fill in the class (including  
 package) in the AS 2.0 Class field - just below the paramaters in
 the Component Definition window.

 When you make changes to a class' [Inspectable] metadata, those  
 changes are not reflected in the fla immediatly. For instance, if
 you add new Inspectable metadata and you have a movieclip instance  
 on stage, you won't see the properties show up in the Parameters.
 You'll have to compile the fla first, or make the movieclip a  
 compiled clip and recompile it each time you change the class.




___
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] Looking for Freelancer for Flash Development

2007-02-17 Thread Phil Dupré

Hello,

My name is Phil Dupre' and I'm a designer looking to work with a flash
developer.  If you're interested, please send me an email and we can talk
about projects needing some good flash code.  Thanks.  Looking forward to
hearing back from you.

Kind regards,

Phil
___
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] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf

When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

   private function createTab(name:String):void {
   var bool:Boolean = true
   for (var x:Object in allChatConversation) {
   if (x == name  allChatConversation[x] != null) {
   bool = false
   }
   }
   if (bool) {
   chatTabs.visible = true
   var chatRoom:NMChatRoom = new NMChatRoom()
   chatRoom.id = chatRoom
   chatTabs.addChild(chatRoom)
   chatRoom.label = name
   allChatConversation[name] = chatRoom //this is an object
to keep a track on all the chatRoom opened
   chatList.setFocus()
   if (chatTabs.numChildren == 1) {
chatTabs.visible = true
   }
   chatTabs.selectedChild = allChatConversation[name]
   }
   }
selectedChild work well when there's already at least one child created but
when there is zero child the glitch happen.
--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
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] What do you think are the best Flash projects andRIA's

2007-02-17 Thread Guillaume Malartre

I'm working full-time on one www.NetMaths.net
We are almost living from it :P

On 2/15/07, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote:


Looks like they're using DENG or something like it.


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Glen Pike
 Sent: Thursday, February 15, 2007 3:44 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] What do you think are the best
 Flash projects andRIA's

 Hi,

 It might not be a full on application as such, but I
 really liked the way that Pier Inc's site uses Flash to
 enhance the blog as I see it.

 http://pierinc.com/

 Check it out, there is some nifty ideas and slick stuff
 in there.
 Then set your user-agent to GoogleBot and see what is served.
___
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





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
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] Action Script editor

2007-02-17 Thread Muzak
check the archives
http://muzakdeezign.com/flashcoders/?q=actionscript%20editor

Muzak

- Original Message - 
From: pedr browne [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Saturday, February 17, 2007 3:14 PM
Subject: [Flashcoders] Action Script editor


 Hi,

 Just wondering what AS editors people were using? I love sepy but can't get
 it to run without errors on my intel mac. Does anyone have a good
 alternative?

 Thanks


___
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] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf


When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

   private function createTab(name:String):void {
   var bool:Boolean = true
   for (var x:Object in allChatConversation) {
   if (x == name  allChatConversation[x] != null) {
   bool = false
   }
   }
   if (bool) {
   chatTabs.visible = true
   var chatRoom:NMChatRoom = new NMChatRoom()
   chatRoom.id = chatRoom
   chatTabs.addChild(chatRoom)
   chatRoom.label = name
   allChatConversation[name] = chatRoom //this is an object
to keep a track on all the chatRoom opened
   chatList.setFocus()
   if (chatTabs.numChildren == 1) {
chatTabs.visible = true
   }
   chatTabs.selectedChild = allChatConversation[name]
   }
   }
selectedChild work well when there's already at least one child created but
when there is zero child the glitch happen.

--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
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] Re: Flashcoders Digest, Vol 25, Issue 53

2007-02-17 Thread Muzak
 Flash (8) Help shows nothing for metadata nor Inspectable.

It does here, for both words.

http://livedocs.macromedia.com/flash/8/main/3033.html

 I found info on the adobe site once I knew what to look for, but is there a  
 good summary available?

http://livedocs.macromedia.com/flash/8/main/3016.html

Google is always a good place to start
http://www.google.com/search?hl=enq=flash+component+metadata+-videometa=
http://www.google.com/search?hl=enq=flash+component+parametersmeta=

And so are the archives
http://muzakdeezign.com/flashcoders/?q=flash%20component%20parameters
http://muzakdeezign.com/flashcoders/?q=component%20parameters
http://muzakdeezign.com/flashcoders/?q=component%20metadata
http://muzakdeezign.com/flashcoders/?q=component%20inspectable

regards,
Muzak 


___
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] TabNavigator customized; weird button(tab) refresh glitch

2007-02-17 Thread Guillaume Malartre

Sorry just updated the .swf online :P
the glitch is now online

On 2/17/07, Guillaume Malartre [EMAIL PROTECTED] wrote:


I'll start this message with the problem:
My chat application:
http://ded692cale.maximumasp.com/NetMaths111/SWF/ExplorationsBeta/NMChat.swf


When I open a client by double-clicking in the list(in order to work you
need to login 2 user) and then I close it with a removeChildren() I'll get a
glitch with the tab button in the TabBar.
The button doesn't appear white like he should be (selected), I tried
selectedIndex etc.. And everything seems to be well coded. Anyone got a
suggestion?

private function createTab(name:String):void {
var bool:Boolean = true
for (var x:Object in allChatConversation) {
if (x == name  allChatConversation[x] != null) {
bool = false
}
}
if (bool) {
chatTabs.visible = true
var chatRoom:NMChatRoom = new NMChatRoom()
chatRoom.id = chatRoom
chatTabs.addChild(chatRoom)
chatRoom.label = name
allChatConversation[name] = chatRoom //this is an
object to keep a track on all the chatRoom opened
chatList.setFocus()
if (chatTabs.numChildren == 1) {
 chatTabs.visible = true
}
chatTabs.selectedChild = allChatConversation[name]
}
}
selectedChild work well when there's already at least one child created
but when there is zero child the glitch happen.

--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net





--
Merci,
Guillaume

Guillaume Malartre
Programmeur-Analyste, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.NetMaths.net
___
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] Action Script editor

2007-02-17 Thread eric dolecki

Intel Mac = XP possibilities. I run the PC version of SEPY on my Mac from
time to time using Parallels and XP.

Eric

On 2/17/07, Muzak [EMAIL PROTECTED] wrote:


check the archives
http://muzakdeezign.com/flashcoders/?q=actionscript%20editor

Muzak

- Original Message -
From: pedr browne [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Saturday, February 17, 2007 3:14 PM
Subject: [Flashcoders] Action Script editor


 Hi,

 Just wondering what AS editors people were using? I love sepy but can't
get
 it to run without errors on my intel mac. Does anyone have a good
 alternative?

 Thanks


___
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





--
eric e. dolecki
senior interactive engineer
http://www.ericd.net
___
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