Re: [flexcoders] use the standalone player

2008-01-16 Thread Sheriff
anyone know if it works?


- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, January 15, 2008 11:26:47 PM
Subject: [flexcoders] use the standalone player

is it possible to use the standalone player in flash for Flex 3 Beta 3 instead 
of IE/Firefox? 






Never miss a thing. Make Yahoo your homepage. 



  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

Re: [flexcoders] DataGrid column resizing

2008-01-16 Thread Sheriff
Did you try doing DataGrid(gridId).setActualSize(); or just extend the 
dataGridColumn and override the mx_internal that calculates the width.



- Original Message 
From: brileach [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 16, 2008 2:50:30 PM
Subject: [flexcoders] DataGrid column resizing

I've been slamming my head against my desk for the last day trying to
figure out how to resize DataGrid columns and I'm hoping somebody can
help me out. I'm using Flex 2.0.1. Any help will be much appreciated!

The idea here is that onCreationComplete the DataGridColumns will
recreate themselves based off of a certain size, eventually the length
of the data inside of them. I've gotten this to work with every
attribute except width. (labelFunctions, itemRenderers, etc.)

mx:Script
![CDATA[

private var gridData:Array = [
{ symbol: ADBE, name: Adobe Systems Inc., price: 49.95 },
{ symbol: MACR, name: Macromedia Inc., price: 39.95 },
{ symbol: MSFT, name: Microsoft Corp., price: 25.95 },
{ symbol: IBM, name: IBM Corp., price: 42.55 }
];

public function resizeGridColumns( gridId:Object) :void {
var oldColumns:Array = gridId.columns;
var numberOfColumns: int = oldColumns.length;
var newColumns:Array = new Array();
for(var i:int = 0; i  numberOfColumns; i++){
var oldColumn:DataGridC olumn = (oldColumns[ i] as DataGridColumn) ;
var newColumn:DataGridC olumn = new DataGridColumn;
newColumn.dataField = oldColumn.dataField ;
newColumn.headerTex t = oldColumn.headerTex t+-dynamic ;
newColumn.width = 50;
newColumns.push( newColumn) ;
}
gridId.columns = newColumns;
}

]]
/mx:Script

mx:DataGrid id=grid 
initialize= grid.dataProvide r = gridData 
creationComplete= resizeGridColum ns(grid)
width=500
mx:columns
mx:DataGridColumn headerText= Name dataField=name /
mx:DataGridColumn headerText= Symbol dataField=symbol /
mx:DataGridColumn headerText= Price dataField=price /
/mx:columns 
/mx:DataGrid

I just can't figure out how to set a column width on the fly. 

Thanks!

--Brian Leach, [EMAIL PROTECTED] com





  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] tooltip styling or skinning

2008-01-16 Thread Sheriff
Well you can extend the ToolTipBorder Class, override the updateDisplayList() 
and create ur own custom shape


- Original Message 
From: Gustavo Duenas [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 16, 2008 1:38:24 PM
Subject: [flexcoders] tooltip styling or skinning




Does anyone know hos can I style a tooltip ( example the shape of the tootip, 
one side rounded and the other side straight)
if there is a way to do that, please let me know.


Regards



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsol utions.com
Jacksonville - Florida











  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] tooltip styling or skinning

2008-01-16 Thread Sheriff
http://livedocs.adobe.com/labs/flex3/html/tooltips_6.html

- Original Message 
From: Gustavo Duenas [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 16, 2008 3:41:56 PM
Subject: Re: [flexcoders] tooltip styling or skinning

thanks do you know how could I do that?


Regards


Gustavo




Ps: or at least a tutorial about it.




On Jan 16, 2008, at 4:31 PM, Sheriff wrote:




Well you can extend the ToolTipBorder Class, override the updateDisplayList( ) 
and create ur own custom shape


- Original Message 
From: Gustavo Duenas [EMAIL PROTECTED] tsolutions. com
To: [EMAIL PROTECTED] ups.com
Sent: Wednesday, January 16, 2008 1:38:24 PM
Subject: [flexcoders] tooltip styling or skinning





Does anyone know hos can I style a tooltip ( example the shape of the tootip, 
one side rounded and the other side straight)
if there is a way to do that, please let me know.


Regards



Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsol utions.com
Jacksonville - Florida













Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.







Gustavo A. Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS
904.  265 0330 - 904. 386 7958
www.leftandrightsol utions.com
Jacksonville - Florida











  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

[flexcoders] use the standalone player

2008-01-15 Thread Sheriff
is it possible to use the standalone player in flash for Flex 3 Beta 3 instead 
of IE/Firefox? 



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] XML List problems

2008-01-10 Thread Sheriff
never mind


- Original Message 
From: markcavins [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, January 10, 2008 3:40:58 PM
Subject: [flexcoders] XML List problems

I have had some help from some others on this issue but the battle
continues and I am perplexed as to why this might be happening.

I am grabbing a HTTPService from my site

mx:HTTPService id=tempXML
url=https://mysite. net/interface. php?action= showopen amp;operation= 
showassets amp;format= xmlamp;opstatus =crit
/

and displaying it in a TileList

mx:TileList dataProvider= {tempXML. lastResult. asset.fleet}  
width=344 backgroundColor= #00 color=#ff fontSize=27
borderColor= #00 columnWidth= 300 rowHeight=50
themeColor= #808080 fontWeight= bold allowMultipleSelect ion=true 
id=TileList1 height=0 y=202 x=178/

and then refreshing the data every 5 minutes or when a user pushes a
button.

before I was trying to call the data with a mx:XML and the data was
displaying but the data would not refresh. Looking through the docs it
seems that that is the expected response. changing to the Service
request I can look through firebug and see that the request is being
made and that the server is returning the proper xml but now the
TileList is not displaying any information.

I have tried to look through the docs to see what might be the cause
but not solution has presented itself.





  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] XML List problems

2008-01-10 Thread Sheriff
it shouldnt be tempXML.lastResult, instead tempXML.result


- Original Message 
From: markcavins [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, January 10, 2008 3:40:58 PM
Subject: [flexcoders] XML List problems

I have had some help from some others on this issue but the battle
continues and I am perplexed as to why this might be happening.

I am grabbing a HTTPService from my site

mx:HTTPService id=tempXML
url=https://mysite. net/interface. php?action= showopen amp;operation= 
showassets amp;format= xmlamp;opstatus =crit
/

and displaying it in a TileList

mx:TileList dataProvider= {tempXML. lastResult. asset.fleet}  
width=344 backgroundColor= #00 color=#ff fontSize=27
borderColor= #00 columnWidth= 300 rowHeight=50
themeColor= #808080 fontWeight= bold allowMultipleSelect ion=true 
id=TileList1 height=0 y=202 x=178/

and then refreshing the data every 5 minutes or when a user pushes a
button.

before I was trying to call the data with a mx:XML and the data was
displaying but the data would not refresh. Looking through the docs it
seems that that is the expected response. changing to the Service
request I can look through firebug and see that the request is being
made and that the server is returning the proper xml but now the
TileList is not displaying any information.

I have tried to look through the docs to see what might be the cause
but not solution has presented itself.





  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

Re: [flexcoders] which Flex componet is similar to HTML table?

2008-01-09 Thread Sheriff
You mean a DataGrid


- Original Message 
From: markflex2007 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 9, 2008 12:06:22 PM
Subject: [flexcoders] which Flex componet is similar to HTML table?


Hi,

I need design table with line to seperate cells,please let me know how to 
do this in Flex.

Thanks

Mark





  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] flex meter

2008-01-07 Thread Sheriff
same here


- Original Message 
From: coder3 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, January 7, 2008 1:37:29 PM
Subject: RE: [flexcoders] flex meter


is it just me? can't download the file...

Alex Harui wrote:
 
 http://weblogs. macromedia. com/pent/ archives/ 2004/12/gauge_ component. cfm
 
 
 
  _ _ __
 
 From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On
 Behalf Of coder3
 Sent: Friday, January 04, 2008 11:20 AM
 To: [EMAIL PROTECTED] ups.com
 Subject: [flexcoders] flex meter
 
 
 
 
 Hi All, 
 
 i need to implement a real time meter for my web app. does FLEX have
 that
 kind of feature? i can't find it.
 
 thanks
 
 -- 
 View this message in context:
 http://www.nabble. com/flex- meter-tp14623087 p14623087. html
 http://www.nabble. com/flex- meter-tp14623087 p14623087. html 
 Sent from the FlexCoders mailing list archive at Nabble.com.
 
 
 
 
 

-- 
View this message in context: http://www.nabble. com/flex- meter-tp14623087 
p14673936. html
Sent from the FlexCoders mailing list archive at Nabble.com.





  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


Re: [flexcoders] Strange compiler error

2008-01-02 Thread Sheriff
are u trying to use namespaces or it usually means ur import statments are not 
at a package level or u have some variables at the pacakge


- Original Message 
From: Gordon Smith [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 2, 2008 2:44:55 PM
Subject: RE: [flexcoders] Strange compiler error

If you can repro this in a simple case, please file a bug at http://bugs. 
adobe.com/ flex.
 
Gordon Smith
Adobe Flex SDK Team




From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Mark Ingram
Sent: Wednesday, January 02, 2008 9:00 AM
To: [EMAIL PROTECTED] ups.com
Subject: RE: [flexcoders] Strange compiler error


I’ve managed to fix this (after much deleting and undoing and redoing). The 
problem was a missing “;” on one line. Strangely, the contents of the code had 
been copied from another file where it worked just fine. I have a feeling the 
line below this one was [Bindable]. But I’m not sure why that would make a 
difference.



From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Mark Ingram
Sent: 02 January 2008 15:59
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Strange compiler error
I’m getting this error:
“1046: Type was not found or was not a compile-time constant: .”
Note: It doesn’t give me a type at all. Sometimes when I jig around the import 
statements it gives me the error in the generated actionscript. But I’ve 
checked that and the error is usually on the last “}”.
Has anyone come across this before?
Mark



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


Re: [flexcoders] Cannot connect to debugger anymore

2007-12-27 Thread Sheriff
I had the same problem too, If you look at around 12/25 messages and 12/26. It 
turns out that my firewall/Anitvirus was blocking the port for the flash 
debugger so it would not connect. The port that u need to unblock is 7935


- Original Message 
From: Paul Decoursey [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, December 27, 2007 9:42:13 AM
Subject: [flexcoders] Cannot connect to debugger anymore

I'm on a Mac, OS X 10.5, and Flash Player was just updated to 
9,0,115,0, not by choice... I didn't see it in the list of updates 
that were packaged in an Apple Update. Anyway, I had to go and get 
the debug version and install that but still no dice. Flex Builder 
cannot connect, it doesn't even look like the debugger is getting 
started.

I've tried uninstalling and installing again, installing an older 
version of the debug player, i've even tried to reinstall flex 
Builder nothing works. what is going on here??

I've been pounding on this for about a week now, I have deadlines 
looming and I'm losing money every second that this does not work. 
I'm desperate, very unhappy and just about to blow up.

Paul





  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

Re: [flexcoders] Cannot connect to debugger anymore

2007-12-27 Thread Sheriff
well see if the debugger is installed 
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507

if it is then most likely the port is blocked.


- Original Message 
From: Paul Decoursey [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, December 27, 2007 11:13:20 AM
Subject: Re: [flexcoders] Cannot connect to debugger anymore

I don't have Antivirus, and from what I can tell the firewall is not on.  I'll 
look again.




On Dec 27, 2007, at 10:58 AM, Sheriff wrote:


I had the same problem too, If you look at around 12/25 messages and 12/26. It 
turns out that my firewall/Anitvirus was blocking the port for the flash 
debugger so it would not connect. The port that u need to unblock is 7935


- Original Message 
From: Paul Decoursey [EMAIL PROTECTED] net
To: [EMAIL PROTECTED] ups.com
Sent: Thursday, December 27, 2007 9:42:13 AM
Subject: [flexcoders] Cannot connect to debugger anymore


I'm on a Mac, OS X 10.5, and Flash Player was just updated to 
9,0,115,0, not by choice... I didn't see it in the list of updates 
that were packaged in an Apple Update. Anyway, I had to go and get 
the debug version and install that but still no dice. Flex Builder 
cannot connect, it doesn't even look like the debugger is getting 
started.

I've tried uninstalling and installing again, installing an older 
version of the debug player, i've even tried to reinstall flex 
Builder nothing works. what is going on here??

I've been pounding on this for about a week now, I have deadlines 
looming and I'm losing money every second that this does not work. 
I'm desperate, very unhappy and just about to blow up.

Paul







Looking for last minute shopping deals? Find them fast with Yahoo! Search. 





  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
It only works for Flex 3 Beta 2, Flex 3 Beta 3 does not work with the flash 
9.0115 build. Flex 3 Beta 2 actually connects and works, but Beta 3 does not


- Original Message 
From: mydarkspoon [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, December 26, 2007 2:16:50 AM
Subject: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

If you're running a firewall softwarre, it might block port 3434,
which the flex builder uses for debugging.

--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:

 reverted back to Flex 3 Beta 2 and installed the older flash player
and everything works again so i am guessing it has to do with the
flash 9.0115 and Windows Vista Home Premium or something with the Flex
3 Beta 3 not connecting. Any Advise?
 
 
 - Original Message 
 From: Sheriff [EMAIL PROTECTED] ..
 To: [EMAIL PROTECTED] ups.com
 Sent: Tuesday, December 25, 2007 4:34:08 PM
 Subject: [flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect
 
 Anyone having this problem? I am running Windows Vista Home and the
Debugger always times out. Flash Player used is the one that comes
with the Stand Alone Flex Builder. I cleaned/Uninstalled /reinstalled
and nothing works it always times out. I even tried the plugin version
and same problem. The build is the 115 one
 
 
 
 Never miss a thing. Make Yahoo your homepage. 
 
 
 
 
 _ _ _ _ _ _
 Never miss a thing. Make Yahoo your home page. 
 http://www.yahoo. com/r/hs






  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


Re: [flexcoders] Re: [Fixed] Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
It turns out the ESET NOD 32 Antivirus had something blocked,  I am guessing 
the port.


- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, December 26, 2007 11:53:15 AM
Subject: Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

It only works for Flex 3 Beta 2, Flex 3 Beta 3 does not work with the flash 
9.0115 build. Flex 3 Beta 2 actually connects and works, but Beta 3 does not


- Original Message 
From: mydarkspoon mydarkspoon@ yahoo.com
To: [EMAIL PROTECTED] ups.com
Sent: Wednesday, December 26, 2007 2:16:50 AM
Subject: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect


If you're running a firewall softwarre, it might block port 3434,
which the flex builder uses for debugging.

--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:

 reverted back to Flex 3 Beta 2 and installed the older flash player
and everything works again so i am guessing it has to do with the
flash 9.0115 and Windows Vista Home Premium or something with the Flex
3 Beta 3 not connecting. Any Advise?
 
 
 - Original Message 
 From: Sheriff [EMAIL PROTECTED] ..
 To: [EMAIL PROTECTED] ups.com
 Sent: Tuesday, December 25, 2007 4:34:08 PM
 Subject: [flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect
 
 Anyone having this problem? I am running Windows Vista Home and the
Debugger always times out. Flash Player used is the one that comes
with the Stand Alone Flex Builder. I cleaned/Uninstalled /reinstalled
and nothing works it always times out. I even tried the plugin version
and same problem. The build is the 115 one
 
 
 
 Never miss a thing. Make Yahoo your homepage. 
 
 
 
 
 _ _ _ _ _ _
 Never miss a thing. Make Yahoo your home page. 
 http://www.yahoo. com/r/hs








Looking for last minute shopping deals? Find them fast with Yahoo! Search. 



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


Re: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-26 Thread Sheriff
I have no reason, just read alot of good reviews on it and decided to try it. I 
had to uninstall it though and download another antivirus/secuirty program and 
everything worked after.


- Original Message 
From: Mike Morearty [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, December 26, 2007 6:55:12 PM
Subject: [flexcoders] Re: Flex 3 Beta 3 Debugger Doesnt Connect

Oops, I missed your followup saying that NOD 32 Antivirus caused the
problem.

Glad to see you figured it out. I have to ask, though -- I
occasionally see references to this sort of problem, only to have it
always come down to NOD 32 Antivirus. I have never, ever heard of
that program in any context other than the cause of the Flex Builder
debugger not working. Can you tell me a little about it? E.g. is it
popular in certain circles? I'm thinking maybe we should have a tech
note warning that NOD 32 blocks the Flex Builder debugger.

Thanks - Mike Morearty, Adobe Flex Builder team

--- In [EMAIL PROTECTED] ups.com, Mike Morearty mike.morearty@ ...
wrote:

 Which component caused it to stop working -- the new Flex Builder, or
 the new Flash player? In other words, if you run the old beta 2 with
 the new player 115, does it work? If you run the new beta 3 with the
 old player that came out with beta 2 (whatever version that was), does
 it work?
 
 By the way, for the record, the port used by the debugger is 7935, not
 the port mentioned by mydarkspoon. But as you have already figured
 out, that doesn't seem to be the problem here...
 
 - Mike Morearty, Adobe Flex Builder team
 
 
 --- In [EMAIL PROTECTED] ups.com, Sheriff sherif626@ wrote:
 
  reverted back to Flex 3 Beta 2 and installed the older flash player
 and everything works again so i am guessing it has to do with the
 flash 9.0115 and Windows Vista Home Premium or something with the Flex
 3 Beta 3 not connecting. Any Advise?
  
  
  - Original Message 
  From: Sheriff sherif626@
  To: [EMAIL PROTECTED] ups.com
  Sent: Tuesday, December 25, 2007 4:34:08 PM
  Subject: [flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect
  
  Anyone having this problem? I am running Windows Vista Home and the
 Debugger always times out. Flash Player used is the one that comes
 with the Stand Alone Flex Builder. I cleaned/Uninstalled /reinstalled
 and nothing works it always times out. I even tried the plugin version
 and same problem. The build is the 115 one
  
  
  
  Never miss a thing. Make Yahoo your homepage. 
  
  
  
  

 _ _ _ _ _ _
  Never miss a thing. Make Yahoo your home page. 
  http://www.yahoo. com/r/hs
 






  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

[flexcoders] Flex 2 Key doesnt work on Beta 3

2007-12-26 Thread Sheriff
Anyone having the same problem? My flex 2 key when I enter it in the Beta 3 it 
doesnt work. It works in Beta 2 though.


  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

[flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-25 Thread Sheriff
Anyone having this problem? I am running Windows Vista Home and the Debugger 
always times out. Flash Player used is the one that comes with the Stand Alone 
Flex Builder. I cleaned/Uninstalled/reinstalled and nothing works it always 
times out. I even tried the plugin version and same problem. The build is the 
115 one


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


Re: [flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect

2007-12-25 Thread Sheriff
reverted back to Flex 3 Beta 2 and installed the older flash player and 
everything works again so i am guessing it has to do with the flash 9.0115 and 
Windows Vista Home Premium or something with the Flex 3 Beta 3 not connecting. 
Any Advise?


- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, December 25, 2007 4:34:08 PM
Subject: [flexcoders] Flex 3 Beta 3 Debugger Doesnt Connect

Anyone having this problem? I am running Windows Vista Home and the Debugger 
always times out. Flash Player used is the one that comes with the Stand Alone 
Flex Builder. I cleaned/Uninstalled /reinstalled and nothing works it always 
times out. I even tried the plugin version and same problem. The build is the 
115 one



Never miss a thing. Make Yahoo your homepage. 



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

[flexcoders] Best Way to learn Flex

2007-12-01 Thread Sheriff
So I have been trying to learn flex now for almost 9 month and i pretty much 
still don't know much to get me anywhere. This is also my first programming 
language to learn. I know enough to make everything work on its own but i still 
can't create stuff like this
http://demo.quietlyscheming.com/displayShelf/index.html  or any of the adobe 
Examples. So i was wondering, how long does it take to actually start doing 
some of that stuff and what is the best way to learn. Looking at the source 
code doesn't help much since there are too many files and its split up and the 
functions get spread out all over.


  

Be a better sports nut!  Let your teams follow you 
with Yahoo Mobile. Try it now.  
http://mobile.yahoo.com/sports;_ylt=At9_qDKvtAbMuh1G1SQtBI7ntAcJ

[flexcoders] Dictionary Class

2007-11-27 Thread Sheriff
Does anyone have a real world example on when to use the Dictionary Class, I 
don't get what purpose it serves other than using an object as a key rather 
than a string. When would you use something like it?


  

Be a better pen pal. 
Text or chat with friends inside Yahoo! Mail. See how.  
http://overview.mail.yahoo.com/

Re: [flexcoders]

2007-11-27 Thread Sheriff
you cant multiline a label so use mx:text/ instead


- Original Message 
From: yourName [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 28, 2007 12:45:25 AM
Subject: [flexcoders]

Can Any Tell me how to wrap text of this label or how to make it mulitline
Thanks in advance. .
mx:Label text=That the quick brown fox jumps over very lazy dog. . /



  

Get easy, one-click access to your favorites. 
Make Yahoo! your homepage.
http://www.yahoo.com/r/hs 

Re: [flexcoders] loading an image via actionscript

2007-11-25 Thread Sheriff
cause I am trying to learn flex and im just trying to use everything. I would 
use the image if i was doing a project but i am not. just learning to pass time.

- Original Message 
From: Douglas Knudsen [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, November 24, 2007 10:44:32 PM
Subject: Re: [flexcoders] loading an image via actionscript










  



Image.source = pathtoimage loads up at runtime, eh? Why not use 
this?



DK



On 11/24/07, Sheriff [EMAIL PROTECTED] com wrote:

 sorry but what does that exactly mean? like the loader isn't suppose to be

 handling that type of stuff. Thanks



 - Original Message 

 From: Alex Harui [EMAIL PROTECTED] com

 To: [EMAIL PROTECTED] ups.com

 Sent: Saturday, November 24, 2007 2:18:03 AM

 Subject: RE: [flexcoders] loading an image via actionscript















































 If you look at the source code for

 mx:Image/SWFLoader, you'll see it is much more sophisticated than your

 example.  Also, you are not waiting for the complete event so there is

 nothing

 to manipulate until then.





























 From:

 [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf

 Of Sheriff



 Sent: Friday, November 23, 2007

 5:02 PM



 To: [EMAIL PROTECTED] ups.com



 Subject: [flexcoders] loading an

 image via actionscript





































 Ok so what is happening is when i load the image via actionscript it

 scales it twice as big as when i just do



 mx:Image source=image1. jpg/ //Displays the correct

 size automatically



 public class Test extends Sprite



 {



 internal var loader:Loader;



 public function Test(){



 super();



 loader= new Loader();



 var url:URLRequest =

 new URLRequest( image1.jpg );



 loader.load( url);



 this.addChild( url);

 //what i get is an image that is twice the height and width i want even

 though

 the dimensions are correct. I tried doign scaleX etc.. and nothing works



 loader.contentLoade rInfo.addEventLi stener(Event. COMPLETE,

 setupStage) ;







 }





































 Get easy, one-click access to your favorites. Make Yahoo!

 your homepage.

















































 !--



 #ygrp-mkp{

 border:1px solid #d8d8d8;font- family:Arial; margin:14px 0px;padding: 0px

 14px;}

 #ygrp-mkp hr{

 border:1px solid #d8d8d8;}

 #ygrp-mkp #hd{

 color:#628c2a; font-size: 85%;font- weight:bold; line-height: 122%;margin: 
 10px

 0px;}

 #ygrp-mkp #ads{

 margin-bottom: 10px;}

 #ygrp-mkp .ad{

 padding:0 0;}

 #ygrp-mkp .ad a{

 color:#ff; text-decoration: none;}

 --







 !--



 #ygrp-sponsor #ygrp-lc{

 font-family: Arial;}

 #ygrp-sponsor #ygrp-lc #hd{

 margin:10px 0px;font-weight: bold;font- size:78%; line-height: 122%;}

 #ygrp-sponsor #ygrp-lc .ad{

 margin-bottom: 10px;padding: 0 0;}

 --







 !--



 #ygrp-mlmsg {font-size:13px; font-family: arial, helvetica, clean,

 sans-serif;}

 #ygrp-mlmsg table {font-size:inherit; font:100% ;}

 #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean,

 sans-serif;}

 #ygrp-mlmsg pre, code {font:115% monospace;}

 #ygrp-mlmsg * {line-height: 1.22em;}

 #ygrp-text{

 font-family: Georgia;

 }

 #ygrp-text p{

 margin:0 0 1em 0;}

 #ygrp-tpmsgs{

 font-family: Arial;

 clear:both;}

 #ygrp-vitnav{

 padding-top: 10px;font- family:Verdana; font-size: 77%;margin: 0;}

 #ygrp-vitnav a{

 padding:0 1px;}

 #ygrp-actbar{

 clear:both;margin: 25px 0;white-space: nowrap;color: #666;text- align:right; }

 #ygrp-actbar .left{

 float:left;white- space:nowrap; }

 .bld{font-weight: bold;}

 #ygrp-grft{

 font-family: Verdana;font- size:77%; padding:15px 0;}

 #ygrp-ft{

 font-family: verdana;font- size:77%; border-top: 1px solid #666;

 padding:5px 0;

 }

 #ygrp-mlmsg #logo{

 padding-bottom: 10px;}



 #ygrp-vital{

 background-color: #e0ecee;margin- bottom:20px; padding:2px 0 8px 8px;}

 #ygrp-vital #vithd{

 font-size:77% ;font-family: Verdana;font- weight:bold; color:#333; 
 text-transform: uppercase; }

 #ygrp-vital ul{

 padding:0;margin: 2px 0;}

 #ygrp-vital ul li{

 list-style-type: none;clear: both;border: 1px solid #e0ecee;

 }

 #ygrp-vital ul li .ct{

 font-weight: bold;color: #ff7900;float: right;width: 2em;text- align:right; 
 padding-right: .5em;}

 #ygrp-vital ul li .cat{

 font-weight: bold;}

 #ygrp-vital a{

 text-decoration: none;}



 #ygrp-vital a:hover{

 text-decoration: underline; }



 #ygrp-sponsor #hd{

 color:#999;font- size:77%; }

 #ygrp-sponsor #ov{

 padding:6px 13px;background- color:#e0ecee; margin-bottom: 20px;}

 #ygrp-sponsor #ov ul{

 padding:0 0 0 8px;margin:0; }

 #ygrp-sponsor #ov li{

 list-style-type: square;padding: 6px 0;font-size: 77%;}

 #ygrp-sponsor #ov li a{

 text-decoration: none;font- size:130% ;}

 #ygrp-sponsor #nc{

 background

Re: [flexcoders] loading an image via actionscript

2007-11-24 Thread Sheriff
sorry but what does that exactly mean? like the loader isn't suppose to be 
handling that type of stuff. Thanks

- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, November 24, 2007 2:18:03 AM
Subject: RE: [flexcoders] loading an image via actionscript










  












If you look at the source code for
mx:Image/SWFLoader, you’ll see it is much more sophisticated than your
example.  Also, you are not waiting for the complete event so there is nothing
to manipulate until then.
 

  
 










From:
[EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of 
Sheriff

Sent: Friday, November 23, 2007
5:02 PM

To: [EMAIL PROTECTED] ups.com

Subject: [flexcoders] loading an
image via actionscript
 




  
 











Ok so what is happening is when i load the image via actionscript it
scales it twice as big as when i just do 

mx:Image source=image1. jpg/ //Displays the correct
size automatically

public class Test extends Sprite

{

internal var loader:Loader;

public function Test(){

super();

loader= new Loader();

var url:URLRequest =
new URLRequest( image1.jpg );

loader.load( url);

this.addChild( url);
//what i get is an image that is twice the height and width i want even though
the dimensions are correct. I tried doign scaleX etc.. and nothing works

loader.contentLoade rInfo.addEventLi stener(Event. COMPLETE, 
setupStage) ;



}
 







  
 








Get easy, one-click access to your favorites. Make Yahoo!
your homepage. 
 















  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Be a better pen pal. 
Text or chat with friends inside Yahoo! Mail. See how.  
http://overview.mail.yahoo.com/

[flexcoders] loading an image via actionscript

2007-11-23 Thread Sheriff
Ok so what is happening is when i load the image via actionscript it scales it 
twice as big as when i just do 
mx:Image source=image1.jpg/ //Displays the correct size automatically
public class Test extends Sprite
{
internal var loader:Loader;
public function Test(){
super();
loader= new Loader();
var url:URLRequest = new URLRequest(image1.jpg);
loader.load(url);
this.addChild(url); //what i get is an image that is twice the 
height and width i want even though the dimensions are correct. I tried doign 
scaleX etc.. and nothing works

loader.contentLoaderInfo.addEventListener(Event.COMPLETE,setupStage);

}




  

Get easy, one-click access to your favorites. 
Make Yahoo! your homepage.
http://www.yahoo.com/r/hs 

Re: [flexcoders] FYI: Flex video site for Aussie regional TV station

2007-11-22 Thread Sheriff
did you design it? how long did it take?

- Original Message 
From: Mailing Lists [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, November 22, 2007 8:01:27 PM
Subject: [flexcoders] FYI: Flex video site for Aussie regional TV station










  



Hi all,



http://canberra. iprime.com. au was released a few weeks ago and I thought I'd

mention it and see what you think.



Any comments greatly appreciated.



Mike.






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] Re: Flex Hierarchy

2007-11-21 Thread Sheriff
why can't you just do
this.getChildByName(test_input);

- Original Message 
From: Rafael Faria [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 21, 2007 9:59:41 PM
Subject: [flexcoders] Re: Flex Hierarchy










  



Peter,



this is just to ilustrate... just did it here in the textarea... didnt

even compiled.



if you want a real example...



?xml version=1.0 encoding=utf- 8?

mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

layout=absolute creationComplete= init()

mx:Script

![CDATA[

import mx.controls. TextInput;



function init():void

{

var ipt:TextInput = new TextInput();

ipt.name = test_input ;

ipt.id = test_input ;

ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
traceInput) ;

addChild(ipt) ;







}



function traceInput(evt: Event):void

{

trace(this[' test_input' ]);

}

]]

/mx:Script

/mx:Application



tell me why this['test_input' ] doesnt work and HOW i'm suppose to

make it work



how i'm suppose to make reference to an object that i'm creating

dynamically and adding to the stage... how do i access the staging.



I hope it's clear now.



thanks

raf



--- In [EMAIL PROTECTED] ups.com, Peter Hall [EMAIL PROTECTED] .. wrote:



 I'm surprised that even compiles...

 

 Peter

 

 

 On Nov 22, 2007 12:59 AM, Alex Harui [EMAIL PROTECTED] wrote:

 

 

 

 

 

 

 

 

 

  I would avoid name collisions between functions and ids.

 

 

 

    _ _ __

 

 

  From: [EMAIL PROTECTED] ups.com

[mailto:[EMAIL PROTECTED] ups.com] On

  Behalf Of Rafael Faria

   Sent: Wednesday, November 21, 2007 4:57 PM

   To: [EMAIL PROTECTED] ups.com

   Subject: [flexcoders] Flex Hierarchy

 

 

 

 

 

 

 

 

  When i understand it my life will be so much easier...

 

   Look the code above...

 

   see that on the function test2 it doesnt return the proper object?

 

   I know that exist some kind of hierarchy... . but what i couldnt

get it

   is how i get the object that is on the global scope.

 

   i tried this.parent, this.parentDocument , this.parentApplicat ion

   all of them and none of them seem to be working...

 

   someone can help me?!!?!

 

   thanks

 

   ?xml version=1.0 encoding=utf- 8?

   mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

   creationComplete= init()

   mx:Button id=test label=Test /

   mx:Canvas id=test2 label=testing /

   /mx:Application

 

   mx:Script

   ![CDATA[

   function init()

   {

   test();

   test2();

 

   function test2()

   {

   trace(this[' test2']);

   }

   }

 

   function test()

   {

   trace(this[' test2']) // return The object i want

   }

 

   ]]

   /mx:Script

 

 








  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul 

Re: [flexcoders] Re: Flex Hierarchy

2007-11-21 Thread Sheriff
this works for me and i can manipulate it

?xml version=1.0 encoding=utf-8?

 creationComplete=initApp()
mx:Script
![CDATA[
import mx.controls.TextInput;
private function initApp():void{
var ipt:TextInput = new TextInput();
ipt.name = test_input;
ipt.id=test_input;
ipt.addEventListener(Event.ADDED_TO_STAGE,traceInput);
this.addChild(ipt);
}
private function traceInput(event:Event):void{
var test:TextInput = this.getChildByName('test_input') as 
TextInput;
test.text=Flex;
}

]]

/mx:Script
/mx:Application

- Original Message 
From: Rafael Faria [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 21, 2007 9:59:41 PM
Subject: [flexcoders] Re: Flex Hierarchy










  



Peter,



this is just to ilustrate... just did it here in the textarea... didnt

even compiled.



if you want a real example...



?xml version=1.0 encoding=utf- 8?

mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

layout=absolute creationComplete= init()

mx:Script

![CDATA[

import mx.controls. TextInput;



function init():void

{

var ipt:TextInput = new TextInput();

ipt.name = test_input ;

ipt.id = test_input ;

ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
traceInput) ;

addChild(ipt) ;







}



function traceInput(evt: Event):void

{

trace(this[' test_input' ]);

}

]]

/mx:Script

/mx:Application



tell me why this['test_input' ] doesnt work and HOW i'm suppose to

make it work



how i'm suppose to make reference to an object that i'm creating

dynamically and adding to the stage... how do i access the staging.



I hope it's clear now.



thanks

raf



--- In [EMAIL PROTECTED] ups.com, Peter Hall [EMAIL PROTECTED] .. wrote:



 I'm surprised that even compiles...

 

 Peter

 

 

 On Nov 22, 2007 12:59 AM, Alex Harui [EMAIL PROTECTED] wrote:

 

 

 

 

 

 

 

 

 

  I would avoid name collisions between functions and ids.

 

 

 

    _ _ __

 

 

  From: [EMAIL PROTECTED] ups.com

[mailto:[EMAIL PROTECTED] ups.com] On

  Behalf Of Rafael Faria

   Sent: Wednesday, November 21, 2007 4:57 PM

   To: [EMAIL PROTECTED] ups.com

   Subject: [flexcoders] Flex Hierarchy

 

 

 

 

 

 

 

 

  When i understand it my life will be so much easier...

 

   Look the code above...

 

   see that on the function test2 it doesnt return the proper object?

 

   I know that exist some kind of hierarchy... . but what i couldnt

get it

   is how i get the object that is on the global scope.

 

   i tried this.parent, this.parentDocument , this.parentApplicat ion

   all of them and none of them seem to be working...

 

   someone can help me?!!?!

 

   thanks

 

   ?xml version=1.0 encoding=utf- 8?

   mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

   creationComplete= init()

   mx:Button id=test label=Test /

   mx:Canvas id=test2 label=testing /

   /mx:Application

 

   mx:Script

   ![CDATA[

   function init()

   {

   test();

   test2();

 

   function test2()

   {

   trace(this[' test2']);

   }

   }

 

   function test()

   {

   trace(this[' test2']) // return The object i want

   }

 

   ]]

   /mx:Script

 

 








  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{

Re: [flexcoders] Re: Flex Hierarchy

2007-11-21 Thread Sheriff
so let me see if i understand this
you have a form with lots of objects like text,labels,pictures etc.. and you 
are trying to pull out one of the objects which you know the name of/id but you 
dont know the name/id of the form itself?

- Original Message 
From: Rafael Faria [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 21, 2007 10:19:28 PM
Subject: [flexcoders] Re: Flex Hierarchy










  



That could work if we would talk about just the staging. Like i 
said i

just did it to ilustrate. 



In my example i create the hole form, a lot of objects inside hboxes

and vboxes so it's kind hard to tell which object i'm trying to get.



check the example below...



i know if i would do this['myCanvas' ].getChildByName ('myTextArea' )

would work but IF i didnt know what is the name o myCanvas how would

u do?!



we are getting close... thanks for all your help! :P



raf



?xml version=1.0 encoding=utf- 8?

mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

layout=absolute creationComplete= init()

mx:Script

![CDATA[

import mx.controls. TextInput;



function init():void

{

var ipt:TextInput = new TextInput();

ipt.name = test_input ;

ipt.id = test_input ;

ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
traceInput) ;

addChild(ipt) ;







}



function traceInput(evt: Event):void

{

trace(this.getChild ByName(myTextAr ea));

}

]]

/mx:Script

mx:Canvas id=myCanvas 

mx:TextArea id=myTextArea /

/mx:Canvas

/mx:Application



--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:



 why can't you just do

 this.getChildByName (test_input );

 

 - Original Message 

 From: Rafael Faria rafaelfaria. [EMAIL PROTECTED] .

 To: [EMAIL PROTECTED] ups.com

 Sent: Wednesday, November 21, 2007 9:59:41 PM

 Subject: [flexcoders] Re: Flex Hierarchy

 

 

 

 

 

 

 

 

 

 

   

 

 

 

 Peter,

 

 

 

 this is just to ilustrate... just did it here in the textarea... didnt

 

 even compiled.

 

 

 

 if you want a real example...

 

 

 

 ?xml version=1.0 encoding=utf- 8?

 

 mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

 

 layout=absolute creationComplete= init()

 

   mx:Script

 

   ![CDATA[

 

   import mx.controls. TextInput;

 

   

 

   function init():void

 

   {

 

   var ipt:TextInput = new TextInput();

 

   ipt.name = test_input ;

 

   ipt.id = test_input ;

 

   ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
 traceInput) ;

 

   addChild(ipt) ;

 

   

 

   

 

   

 

   }

 

   

 

   function traceInput(evt: Event):void

 

   {

 

   trace(this[' test_input' ]);

 

   }

 

   ]]

 

   /mx:Script

 

 /mx:Application

 

 

 

 tell me why this['test_input' ] doesnt work and HOW i'm suppose to

 

 make it work

 

 

 

 how i'm suppose to make reference to an object that i'm creating

 

 dynamically and adding to the stage... how do i access the staging.

 

 

 

 I hope it's clear now.

 

 

 

 thanks

 

 raf

 

 

 

 --- In [EMAIL PROTECTED] ups.com, Peter Hall peterjoel@ .. wrote:

 

 

 

  I'm surprised that even compiles...

 

  

 

  Peter

 

  

 

  

 

  On Nov 22, 2007 12:59 AM, Alex Harui aharui@ wrote:

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

   I would avoid name collisions between functions and ids.

 

  

 

  

 

  

 

 _ _ __

 

  

 

  

 

   From: [EMAIL PROTECTED] ups.com

 

 [mailto:flexcoders@ yahoogro ups.com] On

 

   Behalf Of Rafael Faria

 

Sent: Wednesday, November 21, 2007 4:57 PM

 

To: [EMAIL PROTECTED] ups.com

 

Subject: [flexcoders] Flex Hierarchy

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

   When i understand it my life will be so much easier...

 

  

 

Look the code above...

 

  

 

see that on the function test2 it doesnt return the proper

object

Re: [flexcoders] Re: Flex Hierarchy

2007-11-21 Thread Sheriff
so why can't you go the opposite way then?
this.sbtButton.parent.name will get u the name of the parent then u can do 
whatever u want

- Original Message 
From: Rafael Faria [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 21, 2007 10:43:11 PM
Subject: [flexcoders] Re: Flex Hierarchy










  



I don't know the name/id of the form itself, the hboxed and vboxes 
or

any container that it creates to layout exacly how i'd like to.



imagine you design a form on flex from the design view... with form,

hbox, canvas, panel, viewstacks and everything.



no imagine you doing this dynamically.



that's what my code does.



the problem is that i need to set some properties on the submit button

for example... i know that the submit button name/id is sbtButton



but i can't tell what is the name of his parents.



i know if it would be on stage just like when i first describe it

would be easy, just using this['sbtButton' ] or just sbtButton once the

button is there and i don't have to worry about the parents or

children where it is. But apparently when you create it dynamically

this rule doesnt apply. You can't just use this['sbtButton' ] and i

have no idea whatsoever how to deal with it.



getChildByName would help if i know it its parents... but i dont. So... 



--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:



 so let me see if i understand this

 you have a form with lots of objects like text,labels, pictures etc..

and you are trying to pull out one of the objects which you know the

name of/id but you dont know the name/id of the form itself?

 

 - Original Message 

 From: Rafael Faria rafaelfaria. [EMAIL PROTECTED] .

 To: [EMAIL PROTECTED] ups.com

 Sent: Wednesday, November 21, 2007 10:19:28 PM

 Subject: [flexcoders] Re: Flex Hierarchy

 

 

 

 

 

 

 

 

 

 

   

 

 

 

 That could work if we would talk about just the staging.

Like i said i

 

 just did it to ilustrate. 

 

 

 

 In my example i create the hole form, a lot of objects inside hboxes

 

 and vboxes so it's kind hard to tell which object i'm trying to get.

 

 

 

 check the example below...

 

 

 

 i know if i would do this['myCanvas' ].getChildByName ('myTextArea' )

 

 would work but IF i didnt know what is the name o myCanvas how would

 

 u do?!

 

 

 

 we are getting close... thanks for all your help! :P

 

 

 

 raf

 

 

 

 ?xml version=1.0 encoding=utf- 8?

 

 mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

 

 layout=absolute creationComplete= init()

 

   mx:Script

 

   ![CDATA[

 

   import mx.controls. TextInput;

 

   

 

   function init():void

 

   {

 

   var ipt:TextInput = new TextInput();

 

   ipt.name = test_input ;

 

   ipt.id = test_input ;

 

   ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
 traceInput) ;

 

   addChild(ipt) ;

 

   

 

   

 

   

 

   }

 

   

 

   function traceInput(evt: Event):void

 

   {

 

   trace(this.getChild ByName(myTextAr ea));

 

   }

 

   ]]

 

   /mx:Script

 

   mx:Canvas id=myCanvas 

 

   mx:TextArea id=myTextArea /

 

   /mx:Canvas

 

 /mx:Application

 

 

 

 --- In [EMAIL PROTECTED] ups.com, Sheriff sherif626@ .. wrote:

 

 

 

  why can't you just do

 

  this.getChildByName (test_input );

 

  

 

  - Original Message 

 

  From: Rafael Faria rafaelfaria. grupos@ .

 

  To: [EMAIL PROTECTED] ups.com

 

  Sent: Wednesday, November 21, 2007 9:59:41 PM

 

  Subject: [flexcoders] Re: Flex Hierarchy

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 



 

  

 

  

 

  

 

  Peter,

 

  

 

  

 

  

 

  this is just to ilustrate... just did it here in the textarea... didnt

 

  

 

  even compiled.

 

  

 

  

 

  

 

  if you want a real example...

 

  

 

  

 

  

 

  ?xml version=1.0 encoding=utf- 8?

 

  

 

  mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

 

  

 

  layout=absolute creationComplete= init()

 

  

 

  mx:Script

 

  

 

  ![CDATA[

 

  

 

  import mx.controls. TextInput;

 

  

 

  

 

  

 

  function init():void

 

  

 

  {

 

  

 

  var ipt:TextInput = new TextInput();

 

  

 

  ipt.name = test_input

Re: [flexcoders] Re: Flex Hierarchy

2007-11-21 Thread Sheriff
flex should create a name property even if u dont assign one and is being 
created dynammically, u can save that. I hope i am on the right track and 
understanding what u want

- Original Message 
From: Rafael Faria [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, November 21, 2007 10:43:11 PM
Subject: [flexcoders] Re: Flex Hierarchy










  



I don't know the name/id of the form itself, the hboxed and vboxes 
or

any container that it creates to layout exacly how i'd like to.



imagine you design a form on flex from the design view... with form,

hbox, canvas, panel, viewstacks and everything.



no imagine you doing this dynamically.



that's what my code does.



the problem is that i need to set some properties on the submit button

for example... i know that the submit button name/id is sbtButton



but i can't tell what is the name of his parents.



i know if it would be on stage just like when i first describe it

would be easy, just using this['sbtButton' ] or just sbtButton once the

button is there and i don't have to worry about the parents or

children where it is. But apparently when you create it dynamically

this rule doesnt apply. You can't just use this['sbtButton' ] and i

have no idea whatsoever how to deal with it.



getChildByName would help if i know it its parents... but i dont. So... 



--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:



 so let me see if i understand this

 you have a form with lots of objects like text,labels, pictures etc..

and you are trying to pull out one of the objects which you know the

name of/id but you dont know the name/id of the form itself?

 

 - Original Message 

 From: Rafael Faria rafaelfaria. [EMAIL PROTECTED] .

 To: [EMAIL PROTECTED] ups.com

 Sent: Wednesday, November 21, 2007 10:19:28 PM

 Subject: [flexcoders] Re: Flex Hierarchy

 

 

 

 

 

 

 

 

 

 

   

 

 

 

 That could work if we would talk about just the staging.

Like i said i

 

 just did it to ilustrate. 

 

 

 

 In my example i create the hole form, a lot of objects inside hboxes

 

 and vboxes so it's kind hard to tell which object i'm trying to get.

 

 

 

 check the example below...

 

 

 

 i know if i would do this['myCanvas' ].getChildByName ('myTextArea' )

 

 would work but IF i didnt know what is the name o myCanvas how would

 

 u do?!

 

 

 

 we are getting close... thanks for all your help! :P

 

 

 

 raf

 

 

 

 ?xml version=1.0 encoding=utf- 8?

 

 mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

 

 layout=absolute creationComplete= init()

 

   mx:Script

 

   ![CDATA[

 

   import mx.controls. TextInput;

 

   

 

   function init():void

 

   {

 

   var ipt:TextInput = new TextInput();

 

   ipt.name = test_input ;

 

   ipt.id = test_input ;

 

   ipt.addEventListene r(Event.ADDED_ TO_STAGE, 
 traceInput) ;

 

   addChild(ipt) ;

 

   

 

   

 

   

 

   }

 

   

 

   function traceInput(evt: Event):void

 

   {

 

   trace(this.getChild ByName(myTextAr ea));

 

   }

 

   ]]

 

   /mx:Script

 

   mx:Canvas id=myCanvas 

 

   mx:TextArea id=myTextArea /

 

   /mx:Canvas

 

 /mx:Application

 

 

 

 --- In [EMAIL PROTECTED] ups.com, Sheriff sherif626@ .. wrote:

 

 

 

  why can't you just do

 

  this.getChildByName (test_input );

 

  

 

  - Original Message 

 

  From: Rafael Faria rafaelfaria. grupos@ .

 

  To: [EMAIL PROTECTED] ups.com

 

  Sent: Wednesday, November 21, 2007 9:59:41 PM

 

  Subject: [flexcoders] Re: Flex Hierarchy

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 

  

 



 

  

 

  

 

  

 

  Peter,

 

  

 

  

 

  

 

  this is just to ilustrate... just did it here in the textarea... didnt

 

  

 

  even compiled.

 

  

 

  

 

  

 

  if you want a real example...

 

  

 

  

 

  

 

  ?xml version=1.0 encoding=utf- 8?

 

  

 

  mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

 

  

 

  layout=absolute creationComplete= init()

 

  

 

  mx:Script

 

  

 

  ![CDATA[

 

  

 

  import mx.controls. TextInput;

 

  

 

  

 

  

 

  function init():void

 

  

 

  {

 

  

 

  var ipt:TextInput = new TextInput();

 

  

 

  ipt.name

[flexcoders] setActualSize()

2007-11-19 Thread Sheriff
is there a difference when overriding the updateDisplayList() between doing

canvas.setActualSize(unscaledWidth,unscaledHeight) 

 and canvas.width = unscaledWidth, canvas.Height =unscaledHeight

I am looking at some code from the flexLib and some times they do the 
setActualSize() and some times they do the .width is it just a preference?




  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders] Internal build errors

2007-11-15 Thread Sheriff
usually it either means u have an empty switch statament or some invalid 
character on the side/ not acutally code

ex: a comma/period might be somewhere in the whitespace around the code

- Original Message 
From: duncan mcmillan [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, November 15, 2007 3:47:13 PM
Subject: [flexcoders] Internal build errors









  




Hi

 

I've suddenly been getting An internal build error has occurred please check 
the error log , has anyone got any refereces as to why these errors happen? 
also I've never used an error log  so could someone please tell how to set it 
up and refer to it.

 

Thanks again

 

Duncan



- Original Message 
From: Steve Hueners [EMAIL PROTECTED] ex.com
To: [EMAIL PROTECTED] ups.com
Sent: Thursday, 15 November, 2007 7:55:40 PM
Subject: Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?



Is there anyway to judge what level of user connections a given server can 
handle without requiring specialized loadsharing strategies? In a non-audio or 
video environment what's it take to stream an AS3 based swfs to 3-5 dozen 
connections? 





On 10/16/07, Anatole Tartakovsky anatole.tartakovsky @gmail.com wrote:







I would try to see if you can scale application in any other way - 4 core 
single CPU and removal all business functionality to different servers is 
always an option. You might get even better scalablity by going RTMP route or 
provide pseudo-connectivity wrapper using non-blocking IO  via client - proxy - 
LCDS - Messaging - LCDS - proxy -client pish. 

 

Regards,

Anatole


 

On 10/16/07, Bruce Hopkins [EMAIL PROTECTED] com  wrote: 





Yeah, I'm using HTTPService right now with E4X results. The for large data 
results, however, XML is not desirable.

I'd prefer to use some framework that uses AMF3 in order to get more compact 
results.

Bruce 




On 10/16/07, Jeff Schuenke [EMAIL PROTECTED] com  wrote: 





You can also just use HTTPService to do direct HTTP requests. I am 
using this for communications with a JAVA backend.

--- In [EMAIL PROTECTED] ups.com, Bruce Hopkins [EMAIL PROTECTED] 


wrote:

 Hi all,
 
 All I want to do is have my Flex client to communicate with my Java 
backend.
 Due to licensing restrictions, LCDS won't be an option for us. So 
far the
 biggest contenders are:
 
 1. Granite Data Services
 2. OpenAMF
 3. WebORB
 4. Red5
 
 Does anyone have any strong opinions, suggestions, or biases on 
either of
 these solutions?
 
 Thanks,
 
 Bruce













































   
For ideas on reducing your carbon footprint visit Yahoo! For Good this month.


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{

Re: [flexcoders] Is there some other solution?

2007-11-11 Thread Sheriff
you probably did not use the release version  Project--Export Release Version 
should take care of that message

- Original Message 
From: djhatrick [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, November 11, 2007 2:06:02 PM
Subject: [flexcoders] Is there some other solution?









  



Can I use flex 3 Beta 1 Flex 2.01 Compiler instead?  People are 
asking

me about the pop-up debug for our live site and I don't want to say,

Update your flash player.



Thanks,

Patrick






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--







__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [flexcoders] Re: Where to do heavy lifting in a Flex app? (no threading?)

2007-11-10 Thread Sheriff
how would you know if flash is written in Java unless you have the source code 
or is that a guess?

- Original Message 
From: Richard Rodseth [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, November 10, 2007 9:15:50 PM
Subject: Re: [flexcoders] Re: Where to do heavy lifting in a Flex app? (no 
threading?)









  



That's news to me.



On 11/10/07, John M. Resler johnmresler@ sbcglobal. net wrote:



  The Flash player is written in Java (big shock there) ...




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--







__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [flexcoders] F3B2 IDE frustration...

2007-10-19 Thread Sheriff
u need to import these classes in the main application or a file that uses the 
application. I can't explain it well so hopfully somone does a better job but 
basically if  say this is ur App and the class you are working on is named dyoo 
then is if it not within the main it wont get checked

main--SubComp ( so maybe here you use ur class)--SubSubComp
main--SubSubComp, this wont check ur dyoo class

- Original Message 
From: danny_yoo88 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, October 19, 2007 5:19:45 PM
Subject: [flexcoders] F3B2 IDE frustration...










  



Hi,



I'm working on a project with many many different source files.



For some bizarre reason, I have ONE ActionScript class that the

stand-alone F3B2 IDE refuses to check.



By check I mean it refuses to return any compiler errors regardless of

what I type into the file. I can type garbage characters, reference

invalid classes, etc and I get no problems when I build the project.



Any ideas? I've tried deleting and recreating the file but it still

doesn't seem to work...



Thanks,



Danny






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--







__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [flexcoders] Getting Mouse Coords

2007-10-16 Thread Sheriff
get it from the application this.mouseX, this.mouseY or parent or whatever

- Original Message 
From: essuark [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, October 16, 2007 12:19:19 PM
Subject: [flexcoders] Getting Mouse Coords










  



I need to the xy coords of the mouse during a Timer Event. Any way 
to 

do this?



thanks

Ralph






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Be a better Heartthrob. Get better relationship answers from someone who knows. 
Yahoo! Answers - Check it out. 
http://answers.yahoo.com/dir/?link=listsid=396545433

Re: [flexcoders] Can't figure out why this fails : creating a TabBar using AS

2007-10-16 Thread Sheriff
the tabBar holds buttons, tab itself is a button so we are u using a canvas?

- Original Message 
From: oneproofdk [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, October 16, 2007 2:39:43 PM
Subject: [flexcoders] Can't figure out why this fails : creating a TabBar using 
AS










  



Hi.

I'm trying to loop through a ArrayCollection and make a TabBar for

each item



This fails miserably - Cant convert Canvas to Button - I've been

staring at this all day today (it's almost 10pm here in Denmark now).

So I'd be very please if some of you guys could have a look - propably

some stupid mistake or misunderstanding. But it just dont work...



for (var i:int=0; idp.length; i++) {

// First we make a new tabbar for the 
tiles

var newTB:TabBar = new TabBar();

newTB.id = 'tabbar'+ dp[i].id;

newTB.percentWidth = 100;

// Then we make a canvas to hold the 
items

var newCV:Canvas = new Canvas();

newCV.id = 'canvas'+ dp[i].id;

newCV.percentWidth = 100;

newCV.label = dp[i].orgname;



// Then we make a new TileList

var newTL:TileList = new TileList();

newTL.id = 'tilelist'+ dp[i];

newTL.percentWidth = 100;

newTL.itemRenderer = projectTile as 
IFactory;

newTL.dataProvider = dp;



newCV.addChild( newTL );

newTB.addChild( newCV );

pageOverviewVBox. addChild( newTB ); // 
This is a VBox.

}



Also... when this finally works for me - how can I set what

itemrenderer the tilelist should use ?? Also failed :-|



Thanks for your time



Mark






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{

Re: [flexcoders] Custom Drag Cursors

2007-10-15 Thread Sheriff
Are you using the cursorManager or just when a drag happens? u cant just use 
cursorManager.setCursor(...whatever u want) on mouse move

- Original Message 
From: toofah_gm [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, October 15, 2007 5:35:07 PM
Subject: [flexcoders] Custom Drag Cursors










  



I am trying to use my own custom cursor for drag and drop

functionality and having a little trouble.  



I have added my own cursor to mouseOver on the object that is

draggable... this is to indicate that the object is draggable.



I have setup css style for all of the DragManager cursors like this:

DragManager

{

 copy-cursor: Embed(source= /assets/ images/copy. png);

 link-cursor: Embed(source= /assets/ images/link. png);

 move-cursor: Embed(source= /assets/ images/move. png);

 reject-cursor: Embed(source= /assets/ images/reject. png);

}



Now the trouble.

When I hover I see my custom cursor.

When I mouseDown I see the default cursor...this is the problem.

When I start dragging I see my custom cursors.



How do I see my custom cursor during the entire process?  



During mouseDown event I call DragManager. startDrag( ).  If I do not

clear my hover cursor, or if I set a different cursor, the custom drag

cursors never show up.  It seems that any set cursor overrides the

drag ones.



If I clear my hover cursor before I call startDrag(), the custom drag

cursors do not show up until the first mouseMove.  There is a window

between mouseDown and mouseMove where I have no custom cursor.



Any ideas?  Am I missing something here?  I guess that I can override

the mouseMove event if I need to and clear it there if I have to.



Thanks.






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 

Re: [flexcoders] what event is triggered every time a datagrid is shown on screen? (creationComplete is not ideal for this case)

2007-10-14 Thread Sheriff
why don't u used an XMLListCollection or ArrayCollection, i think that would 
solve the problem.

- Original Message 
From: George Georgiou [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, October 14, 2007 3:04:46 PM
Subject: [flexcoders] what event is triggered every time a datagrid is shown on 
screen? (creationComplete is not ideal for this case)










  




Hi there,

 

I have a CFC component that loads some records into a datagrid. I have placed 
this remoteobject and datagrid as a component on my own xml namespace. 

 

I have noticed that when I add new record into my SQL, the datagrid does not 
get refreshed - really creationComplete does not fire every time the viewstack 
that contains my component is called. 

 

What is the name of the event that is triggered so that I can reload my records 
every time this datagrid is displayed on screen?

 

thanks,

George

 



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/

Re: [flexcoders] Import Statement keeps disappearing

2007-10-13 Thread Sheriff
if you dont use a class when you compile flex gets rid of it, so save import 
mx.controls.label but u never use the label as in var l:Label = new Label(), 
then compile -- Import for label gone. so when you do mx_internal just make 
sure you state it somewhere so if ur using a function then do mx_internal 
public function etc..

- Original Message 
From: reflexactions [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, October 13, 2007 2:47:20 AM
Subject: [flexcoders] Import Statement keeps disappearing










  



FB3 Beta2.



I have a class where I need to use the mx_internal namespace.



So I import mx.core.mx_internal and declare use namespace mx_internal.



OK fine so far and it compiles and runs..



BUT about every 4 or 5 compiles I get an error telling me the 

namespace is unknown and lo and behold the import statement has gone. 

I put it back in and off I go until the next time it occurs. In 

between occurences the class files have never been closed, its just 

open in my editor and I am working on it and the import only vanishes 

during the compile process.



This only happens with mx_internal but it does happen with every 

class that uses mx_internal.



Has anyone seen this issue and if so what is the way to stop it 

happening.



Tks.






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

Re: [flexcoders] CFEclipse and Flex Builder

2007-10-05 Thread Sheriff
how are you installing it? i have both and they work fine

- Original Message 
From: Tim Ashworth [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, October 5, 2007 8:52:06 AM
Subject: [flexcoders] CFEclipse and Flex Builder









  







Hi 
all,

 

I've unsuccessfully 
tried to add CFEclipse to Flex Builder 2.  After several uninstall and 
reinstalls I've given up.  I want to develop in CF and Flex and would 
rather use one IDE.  Am I being thick, or am I just barking up the wrong 
tree?

 

Cheers

 

Tim



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Tonight's top picks. What will you watch tonight? Preview the hottest shows on 
Yahoo! TV.
http://tv.yahoo.com/ 


Re: [flexcoders] Panel Componenet Help

2007-10-05 Thread Sheriff
the file is attached. Thanks

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, October 5, 2007 5:21:40 PM
Subject: [flexcoders] Panel Componenet Help









  




I was wondering if anyone knows what i am doing wrong, basically drag the panel 
on the left(only works for the left side) and keep dragging until you can't 
anymore but keep moving the cursor until you reach the end of the window then 
release. Move back the cursor and The panel gets stuck, i tried every listener 
to listen for but none can work. So any advice?




  Pinpoint customers who are looking for what you sell. 



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

Re: [flexcoders] Panel Componenet Help

2007-10-05 Thread Sheriff
Thanks, ya its the same problem but i am using firefox and it does the same 
thing. 

- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, October 5, 2007 5:27:45 PM
Subject: RE: [flexcoders] Panel Componenet Help









  







Known bug in IE only.  I helped someone else on this 
in the last two weeks. Search the archives for MOUSE_LEAVE or 
mouseLeave




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Sheriff
Sent: 
Friday, October 05, 2007 3:23 PM
To: 
[EMAIL PROTECTED] ups.com
Subject: Re: [flexcoders] Panel Componenet 
Help









the 
file is attached. Thanks


- 
Original Message 
From: Sheriff [EMAIL PROTECTED] com
To: 
[EMAIL PROTECTED] ups.com
Sent: Friday, October 5, 2007 5:21:40 
PM
Subject: [flexcoders] Panel Componenet Help






I was 
wondering if anyone knows what i am doing wrong, basically drag the panel on 
the 
left(only works for the left side) and keep dragging until you can't anymore 
but 
keep moving the cursor until you reach the end of the window then release. Move 
back the cursor and The panel gets stuck, i tried every listener to listen for 
but none can work. So any advice?





Pinpoint customers who are looking for what you 
sell. 







Tonight's top picks. What will you watch tonight? Preview 
the hottest shows on Yahoo! TV. 





  







!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a {
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc {
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
--








   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC

Re: [flexcoders] Panel Componenet Help

2007-10-05 Thread Sheriff
So more info, the thing works only if the Browser is not in full screen mode 
and no matter how big it is. I expanded it manually so it covers the entire 
screen and that bug did not happen but once i hit the maximize button on 
firefox and retried i got the panel to get stuck again if i pull towards the 
corner.

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, October 5, 2007 5:44:23 PM
Subject: Re: [flexcoders] Panel Componenet Help









  




Thanks, ya its the same problem but i am using firefox and it does the same 
thing. 

- Original Message 
From: Alex Harui [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Friday, October 5, 2007 5:27:45 PM
Subject: RE: [flexcoders] Panel Componenet Help














Known bug in IE only.  I helped someone else on this 
in the last two weeks. Search the archives for MOUSE_LEAVE or 
mouseLeave




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Sheriff
Sent: 
Friday, October 05, 2007 3:23 PM
To: 
[EMAIL PROTECTED] ups.com
Subject: Re: [flexcoders] Panel Componenet 
Help









the 
file is attached. Thanks


- 
Original Message 
From: Sheriff [EMAIL PROTECTED] com
To: 
[EMAIL PROTECTED] ups.com
Sent: Friday, October 5, 2007 5:21:40 
PM
Subject: [flexcoders] Panel Componenet Help






I was 
wondering if anyone knows what i am doing wrong, basically drag the panel on 
the 
left(only works for the left side) and keep dragging until you can't anymore 
but 
keep moving the cursor until you reach the end of the window then release. Move 
back the cursor and The panel gets stuck, i tried every listener to listen for 
but none can work. So any advice?





Pinpoint customers who are looking for what you 
sell. 







Tonight's top picks. What will you watch tonight? Preview 
the hottest shows on Yahoo! TV. 





  









  Pinpoint customers who are looking for what you sell. 



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Yahoo! oneSearch: Finally, mobile search 
that gives answers

Re: [flexcoders] flex builder 3 beta 2 always launching my app with debug player.

2007-10-04 Thread Sheriff
cause to speed up the compiling it only does debug untill you want to export 
then click project then export release version. So use debug to run

- Original Message 
From: aaron smith [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, October 4, 2007 3:36:24 PM
Subject: [flexcoders] flex builder 3 beta 2 always launching my app with debug 
player.









  



Why is flex buildfe 3 beta 2 always launching my app with the debug 
player. I press the Run button, and I'm constantly prompted with the connect 
to debugger popup. Any ideas?




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Luggage? GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

[flexcoders] Flex 3 Beta 2 Performance

2007-10-03 Thread Sheriff

does it take anyone an usually long time before it import a class
for example var test:Button = new Button()  then the i get a 5-10 second pause 
before i can do anything 




   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC

Re: [flexcoders] Change style on each button on a ToggleButtonBar

2007-10-03 Thread Sheriff
no i dont think its possible since the toggleButtons are not really buttons 
they are objects but i'd wait till somone else chines in. If you check the 
dataprovider of the toggleButtonBar then it just says Object

   label=Button1 etc..

- Original Message 
From: Guillermo Villasana [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, October 3, 2007 4:15:57 PM
Subject: [flexcoders] Change style on each button on a ToggleButtonBar









  



Is it possible to change the sytle of each button in a toggle 
buttonbar?

I tried this... but it doesn't seem to work:



MyTBB.getChildAt( 0).setStyle( 'styleName' ,'button1' );

MyTBB.getChildAt( 1).setStyle( 'styleName' ,'button2' );

MyTBB.getChildAt( 2).setStyle( 'styleName' ,'button3' );

MyTBB.getChildAt( 3).setStyle( 'styleName' ,'button4' );



what is wrong?

Thanks




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC

Re: [flexcoders] Flex 3 Beta 2 Performance

2007-10-03 Thread Sheriff
stupid question, didnt feel like making  new topic but in Beta 2 their is a src 
folder created do we create everything in that folder or can we just create our 
projects like the old flex where everything is on the root.

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, October 3, 2007 3:49:37 PM
Subject: [flexcoders] Flex 3 Beta 2 Performance









  





does it take anyone an usually long time before it import a class
for example var test:Button = new Button()  then the i get a 5-10 second pause 
before i can do anything 




  Pinpoint customers who are looking for what you sell. 



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Shape Yahoo! in your own image.  Join our Network Research Panel today!   
http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 



Re: [flexcoders] How to get the Profiler to work in Beta 2?

2007-10-02 Thread Sheriff
anyone?

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, October 1, 2007 11:49:37 PM
Subject: Re: [flexcoders] How to get the Profiler to work in Beta 2?









  




i guess this might help to include
java.net.SocketExce ption: Socket closed
at java.net.PlainSocke tImpl.socketAcce pt(Native Method)
at java.net.PlainSocke tImpl.accept( Unknown Source)
at java.net.ServerSock et.implAccept( Unknown Source)
at java.net.ServerSock et.accept( Unknown Source)
at com.adobe.flash. profiler. internal. Client$2. run(Client. java:190)
at java.lang.Thread. run(Unknown Source)

Socket timeout.
Socket timeout.
java.net.SocketExce ption: Socket closed
at java.net.PlainSocke tImpl.socketAcce pt(Native Method)
at
 java.net.PlainSocke tImpl.accept( Unknown Source)
at java.net.ServerSock et.implAccept( Unknown Source)
at java.net.ServerSock et.accept( Unknown Source)
at com.adobe.flash. profiler. internal. Client$2. run(Client. java:190)
at java.lang.Thread. run(Unknown Source)

Socket timeout.
Socket timeout.


- Original Message 
From: Sheriff [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Monday, October 1, 2007 10:40:49 PM
Subject: [flexcoders] How to get the Profiler to work in Beta 2?












i keep getting socket time out even though my browser isnt tabbed and it opens 
a new one everytime? anyone had success with it?




  Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.

  









  Need a vacation? Get great deals 
to amazing places on Yahoo! Travel. 

  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Luggage? GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

[flexcoders] How to get the Profiler to work in Beta 2?

2007-10-01 Thread Sheriff

i keep getting socket time out even though my browser isnt tabbed and it opens 
a new one everytime? anyone had success with it?




  

Check out the hottest 2008 models today at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html

Re: [flexcoders] How to get the Profiler to work in Beta 2?

2007-10-01 Thread Sheriff
i guess this might help to include
java.net.SocketException: Socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
at com.adobe.flash.profiler.internal.Client$2.run(Client.java:190)
at java.lang.Thread.run(Unknown Source)

Socket timeout.
Socket timeout.
java.net.SocketException: Socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
at com.adobe.flash.profiler.internal.Client$2.run(Client.java:190)
at java.lang.Thread.run(Unknown Source)

Socket timeout.
Socket timeout.


- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, October 1, 2007 10:40:49 PM
Subject: [flexcoders] How to get the Profiler to work in Beta 2?









  





i keep getting socket time out even though my browser isnt tabbed and it opens 
a new one everytime? anyone had success with it?




  Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.

  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Check out the hottest 2008 models today at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html

Re: [flexcoders] Bind 'enabled' properties of ButtonBar to model

2007-09-30 Thread Sheriff
if u do this instead that works 
({label:button1, data:false} ,{label:button2, data:true} ) and then u can scan 
the data to see if u need to enable or not

- Original Message 
From: Kevin [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 30, 2007 11:15:41 AM
Subject: [flexcoders] Bind 'enabled' properties of ButtonBar to model









  



To expand on a previous post, I am trying to find a elegant way to 
do  

this: (I am thinking there must be a simple solution to this.)



I have a Button bar who's DataProvider is bound to an ArrayCollection  

of objects on the model:



({label:button1, enabled:false} ,{label:button2, enabled:true} )



Since the ButtonBar doesn't not read the 'enabled' property by  

default, I would like to bind the 'enabled' property of each button  

to this data provider as well so that making an update to the  

DataProvider will toggle the enabled/disabled of individual buttons  

based on the users interaction in the application.  Unfortunately, I  

can't seem to find a way get this binding to work so that all I need  

to do is update the enabled property in each object on the model.



Thanks for the help.



- Kevin




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Looking for a deal? Find great prices on flights and hotels with Yahoo! 
FareChase.
http://farechase.yahoo.com/

Re: [flexcoders] Bind 'enabled' properties of ButtonBar to model

2007-09-30 Thread Sheriff
all right, i am not an expert but i think you are going to need to extend the 
ButtonBar, override the createNav and create it so it looks for that variable 
and acts accordingly. the labels in the button bars are objects so u can 
disable them. sorry

- Original Message 
From: Kevin [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 30, 2007 11:50:08 AM
Subject: Re: [flexcoders] Bind 'enabled' properties of ButtonBar to model









  



I think I am missing something... not sure why this helps me to 
pass it as 'data' instead of 'enabled'. I still can't find a what to bind it 
automatically so that the change in the model with update the ButtonBar.


Here is a sample app.  Possibly you can show me what I am doing wrong.  Thanks! 
 - Kevin




?xml version=1.0 encoding=utf- 8?
mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml layout=vertical
mx:Script
![CDATA[
import mx.collections. ArrayCollection;


[Bindable]
public var navChoices:ArrayCol lection = new ArrayCollection( 
[{label:'Test1',data:true},

{label:'Test2',data:false},

{label:'Test3',data:false},

{label:'Test4',data:true}]);



]]
/mx:Script
mx:ButtonBar id=mainmenu dataProvider= {navChoices}/
/mx:Application





On Sep 30, 2007, at 12:23 PM, Sheriff wrote:



if u do this instead that works ({label:button1, data:false} ,{label:button2, 
data:true} ) and then u can scan the data to see if u need to enable or not

- Original Message 
From: Kevin [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 30, 2007 11:15:41 AM
Subject: [flexcoders] Bind 'enabled' properties of ButtonBar to model

To expand on a previous post, I am trying to find a elegant way to do
this: (I am thinking there must be a simple solution to this.)

I have a Button bar who's DataProvider is bound to an ArrayCollection 
of objects on the model:

({label:button1, enabled:false} ,{label:button2, enabled:true} )

Since the ButtonBar doesn't not read the 'enabled' property by 
default, I would like to bind the 'enabled' property of each button 
to this data provider as well so that making an update to the 
DataProvider will toggle the enabled/disabled of individual buttons 
based on the users interaction in the application. Unfortunately, I 
can't seem to find a way get this binding to work so that all I need 
to do is update the enabled property in each object on the model.

Thanks for the help.

- Kevin







Pinpoint customers who are looking for what you sell.












  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital

Re: [flexcoders] HTTPService Error event

2007-09-30 Thread Sheriff
why not just use a webService, and then only show an error if something is 
wrong.?

- Original Message 
From: George Georgiou [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 30, 2007 3:43:55 PM
Subject: Re: [flexcoders] HTTPService Error event









  




Hi Scott,

 

I have been through many Flex Tutorials but unfortunately our world lacks of 
tutorials for connectivity with ColdFusion. I am an experianced CF developer 
but unfortunately I cannot figure out how to proceed with data through Flex and 
CF.


 

Indeed - your way is much easier to write and better to understand than the one 
that I have posted. I will keep that one :-) Thanks!

 

But still... the 'fault' function in the HTTPService tag is always triggered! 
Even with your own way.

 

How can I handle this? All I want is to be able to 'alert' the users that there 
is some kind of error (I know how to get the exact error message through the 
event handler) but I have no clue how to trigger this function if and only if 
there is some kind of problem in my CFM file.


 

any ideas?

 

Thanks,

George



 

On 9/30/07, Scott - FastLane [EMAIL PROTECTED] com wrote:





George -

I have not seen this syntax for passing request params to an HTTPService.  Of 
course that doesn't mean it is wrong :)  But, here is how I would do it.

Change button definition to
mx:Button label=Add Employee click=callServer()/

  
then

public function callServer() :void
{
var params:Object = new Object();
params.firstName = firstName.text;
...
srv.send(params) ;
}

hth
Scott 



George Georgiou wrote: 


Hi,

 

I have this code. It works perfect but I would like to get alerted only when I 
have some kind of error in my test.cfm file. Instead, the 'errorAlert()' 
function always is triggered :(

 

Any idea's on how to make this work only when I have problems in my test.cfm 
file?

 

?xml version=1.0 encoding=utf-8?

mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml layout=absolute


mx:HTTPService 
  id=srv 
  url=http://myserver. flex/test. cfm

  fault=errorAlert() ;
  method=POST 

mx:request
firstName{firstName.text}/firstName
lastName{
lastName.text}/lastName
salary{salary.text}/salary 
startDate{startDate.text}/startDate
/mx:request
/mx:HTTPService



 mx:Script
  ![CDATA[
   import mx.controls. Alert;
   
   private function errorAlert() :void {
Alert.show('Error!');
   }
  ]]
 /mx:Script


mx:Form
mx:FormItem label=First Name
mx:TextInput id=firstName/
/mx:FormItem
mx:FormItem label=Last Name 

mx:TextInput id=lastName/
/mx:FormItem
mx:FormItem label=Salary
mx:TextInput id=salary/
/mx:FormItem 

mx:FormItem label=Start Date
mx:DateField id=startDate/
/mx:FormItem
mx:FormItem
mx:Button label=Add Employee click= 
srv.send()/
/mx:FormItem
/mx:Form

/mx:Application






 







  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}

[flexcoders] need ideas on what to do

2007-09-30 Thread Sheriff
so basically i want to learn more flex but there isnt any advanced stuff out 
there so i can understand more and i have no idea what type of projects to do, 
i read the flex manual and i get everything but i lack just knowing what is 
needed. For example, i am trying to duplicate the superTabNavigator but the 
only way i can do it is by lookin at doug's source. i want to be able to just 
duplicate it without looking. so how can i improve




   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

Re: [flexcoders] Freeze Flex Application

2007-09-30 Thread Sheriff
why dont u just add Listernes then for a popUpevent and just stop them or 
cancel them or u can just remove the listener

- Original Message 
From: Kevin [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 30, 2007 10:06:48 PM
Subject: Re: [flexcoders] Freeze Flex Application









  



the main problem I am having right now is that I have some popups 
that get created using the ObserveValue tags.  I would like to be able to 
prevent these popups, but the problem is that once the values come back from 
DataServices in the background, they are being called via the ObserveValue 
binding...


- kevin








On Sep 30, 2007, at 9:39 PM, Alex Harui wrote:



Therer is no one api.  What do you want to prevent?
 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Sent: Sunday, September 30, 2007 2:28 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Freeze Flex Application

 
Is there a way to freeze a flex application so that nothing can be 
executed both from a UI perspective and behind the scenes? I can 
create a modal Alert or PopUp to block user input, but I notice that 
code still get's executed behind the scenes and thus anything already 
initiated will get completed. I would like to be able halt all 
processes if possible.

- Kevin

















  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Catch up on fall's hot new shows on Yahoo! TV. Watch previews, get listings, 
and more!
http://tv.yahoo.com/collections/3658 

[flexcoders] Flex Beta2 is up

2007-09-30 Thread Sheriff
just incase no one visits adobe site




   

Got a little couch potato? 
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mailp=summer+activities+for+kidscs=bz
 

Re: [Flexcoders]: Flex site not loading in Internet Explorer 6 (IE6)

2007-09-28 Thread Sheriff

what u need to do is run IE as admin other wise it wont work and neither will 
flash. IE6 and forward
- Original Message 
From: EECOLOR [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, September 28, 2007 3:24:35 PM
Subject: Re: [Flexcoders]: Flex site not loading in Internet Explorer 6 (IE6)









  



We have had strange problems in IE 6 and  Flash players below 
9.0.28.


Greetz Erik




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Be a better Heartthrob. Get better relationship answers from someone who knows. 
Yahoo! Answers - Check it out. 
http://answers.yahoo.com/dir/?link=listsid=396545433

[flexcoders] Access a private method

2007-09-28 Thread Sheriff
i need to access this private method in the accordion but since its private i 
can't so i was wondering if i would be able to change it to protected so i can 
access it from their but how would i update the flex framwork.




   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

[flexcoders] change comments in mxml

2007-09-28 Thread Sheriff

i really hate having to do !, and its just unreadable and was wondering 
if there is a way i can just have it done like actionscript comments // /**/ 
etc..




  

Catch up on fall's hot new shows on Yahoo! TV. Watch previews, get listings, 
and more!
http://tv.yahoo.com/collections/3658 

[flexcoders] how to know if i am doing something right?

2007-09-27 Thread Sheriff
for example, i am still learning so i keep seeing so many things done in 
diffrent ways. One example are the rating components, like the star rating. 
Some samples have 500 lines of code to get it to work, some have 1000 and some 
have 200. Now for production is there a diff between a 1000 line code thing 
that does the same thing as a 500.?




   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 

Re: SPAM-LOW: [flexcoders] how to know if i am doing something right?

2007-09-27 Thread Sheriff
thanks and i keep noticing that comments have this @private or @public or 
@protected. does it serve a point?
/**
[EMAIL PROTECTED]
*Used to handle Events
*/
private ..

- Original Message 
From: Jeffry Houser [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 27, 2007 1:41:43 PM
Subject: Re: SPAM-LOW:  [flexcoders] how to know if i am doing something right?









  





  I'd check the size of the class as opposed to the number of lines.  If 

you give me a code segment, I'm sure I could condense or expand the line 

count without changing the code.



That said, if you evaluate two separate classes and come to the 

conclusion that they do the exact same thing, then I would use the 

smaller one.



Sheriff wrote:

 

 

 for example, i am still learning so i keep seeing so many things done in 

 diffrent ways. One example are the rating components, like the star 

 rating. Some samples have 500 lines of code to get it to work, some have 

 1000 and some have 200. Now for production is there a diff between a 

 1000 line code thing that does the same thing as a 500.?



-- 

Jeffry Houser, Technical Entrepreneur, Software Developer, Author, 

Recording Engineer

AIM: Reboog711  | Phone: 1-203-379-0773

--

My Company: http://www.dot- com-it.com

My Podcast: http://www.theflexs how.com

My Blog: http://www.jeffryho user.com






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Be a better Globetrotter. Get better travel answers from someone who knows. 
Yahoo! Answers - Check it out.
http://answers.yahoo.com/dir/?link=listsid=396545469

Re: SPAM-LOW: [flexcoders] how to know if i am doing something right?

2007-09-27 Thread Sheriff
ya i know that but why state @private when u can just read the code

- Original Message 
From: Jeffry Houser [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 27, 2007 2:01:30 PM
Subject: Re: SPAM-LOW:  [flexcoders] how to know if i am doing something right?









  





  Anything in comment has no affect on the code (so far as I know).



Sheriff wrote:

 

 

 thanks and i keep noticing that comments have this @private or @public 

 or @protected. does it serve a point?

 /**

 [EMAIL PROTECTED]

 *Used to handle Events

 */

 private  ..

 

 - Original Message 

 From: Jeffry Houser [EMAIL PROTECTED] com

 To: [EMAIL PROTECTED] ups.com

 Sent: Thursday, September 27, 2007 1:41:43 PM

 Subject: Re: SPAM-LOW: [flexcoders] how to know if i am doing something 

 right?

 

 

 I'd check the size of the class as opposed to the number of lines. If

 you give me a code segment, I'm sure I could condense or expand the line

 count without changing the code.

 

 That said, if you evaluate two separate classes and come to the

 conclusion that they do the exact same thing, then I would use the

 smaller one.

 

 Sheriff wrote:

  

  

   for example, i am still learning so i keep seeing so many things done in

   diffrent ways. One example are the rating components, like the star

   rating. Some samples have 500 lines of code to get it to work, some have

   1000 and some have 200. Now for production is there a diff between a

   1000 line code thing that does the same thing as a 500.?

 

 -- 

 Jeffry Houser, Technical Entrepreneur, Software Developer, Author,

 Recording Engineer

 AIM: Reboog711 | Phone: 1-203-379-0773

 --

 My Company: http://www.dot- com-it.com http://www.dot- com-it.com

 My Podcast: http://www.theflexs how.com http://www.theflexs how.com

 My Blog: http://www.jeffryho user.com http://www.jeffryho user.com



-- 

Jeffry Houser, Technical Entrepreneur, Software Developer, Author, 

Recording Engineer

AIM: Reboog711  | Phone: 1-203-379-0773

--

My Company: http://www.dot- com-it.com

My Podcast: http://www.theflexs how.com

My Blog: http://www.jeffryho user.com






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px

[flexcoders] Beta 2 this weekend?

2007-09-27 Thread Sheriff
anyone know if the beta 2 for flex is coming out this weekend or any rumors?




   

Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/

Re: [flexcoders] Re: What do you do when you're waiting for moxie to build?

2007-09-21 Thread Sheriff
ya just go to the Eclipse.ini or right click and click properties, then it says 
something along the line of mem and change that. The default is 256 make it 
like 512

- Original Message 
From: polestar11 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, September 21, 2007 10:20:41 AM
Subject: [flexcoders] Re: What do you do when you're waiting for moxie to build?









  



My Flexbuilder slowness has reached a new record high. 

After thinking that 3mins was completely unbearable, the new record is

approaching 8minutes.



This is with all possible attempts / options of setting FB up for

optimal build time. I am working with a library project which i build

then copy over to my main project which I then build manually, which

then takes its record breaking 8mins, even for a small line of code

change. Next I debug the project. And of course the whole process has

to start over if there was a compiler or runtime error. 



So, apart from complaining dismally about it, here are the various

attempts I have made to improve on build time 



1) Uncheck the following Flex Compiler options

- Copy non-embedded files to output directory

- Verify digests

- Enable integration with browser navigation (deeplinking)

2) Turn of 'Build Project Automatically'

3) Reference only SWC's of external library projects, not the projects

themselves

4) Make sure un-used projects are closed

5) Build main project manually before debugging it

6) Clear the .metadata folder - this occurs about 3x week, when FB

becomes confused  unusable

7) Restart FB, restart my computer, delete my files in my Temp folder

- this is more out of frustration, no difference has ever come out of

these.



Is there anything else can I do ... up the memory used by eclipse?

Recently my FB has started crashing, a symptom of insufficient memory.



I'm running a 2GHz 2GB RAM processor, my library project is 500k,

while my main project is 1.8k. Recently there are a lot of fonts being

embedded (660k) which brought on this record-breaking time. I have

tried using the StyleManager. loadStyleDeclara tions to try improve on

compilation time, but this brings it's own set of troubles, like my

app not loading properly.



So what do u do while waiting for moxie to build? Write a long-winded

complaintive post about its slowness.



I cant wait for the next release!!!



Tracy






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{

Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-21 Thread Sheriff
no objective yet, just something that i thought can help me in the future when 
needed. Since i am enterin pharmacy school i could like create some inventory 
thing for a hospital or oversee something in a pharmaceutical company.

- Original Message 
From: Yaagoub Al-Nujaidi [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 20, 2007 10:38:11 PM
Subject: RE: [flexcoders] Anyone have any good Flex Projects with sourceCode?









  



What is the objective of your Flex development, may I ask? Flex is 
powerful tool, but as any tool has its own limitations or weired way of doing 
stuff.

Brian Holmes Brian.Holmes@ woodward. com wrote:  
  Get involved with community projects. 
   
  http://code. google.com/ p/flexlib/
  http://code. google.com/ p/flexmdi/

  From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of Sheriff
Sent: Thursday, September 20, 2007 3:23 PM
To: [EMAIL PROTECTED] ups.com
Subject: Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?


  
ya
 but the problem is i dont know what to do, like i have no idea, i even did the 
projects provided by adobe but there is still alot more to learn

  - Original Message 
From: Paul Andrews [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Thursday, September 20, 2007 4:15:26 PM
Subject: Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?


  It seems to me that if you 'did' total training and lynda.com, then you 
shouldn't be practicing, you should be doing..
   
  Paul
- Original Message - 
  From: Sheriff 
  To: [EMAIL PROTECTED] ups.com 
  Sent: Thursday, September 20, 2007 10:07 PM
  Subject: [flexcoders] Anyone have any good Flex Projects with sourceCode?
  

i am like stuck in the intermidate learning curve and i am running out of 
material to practice on, so does anyone know where i can learn more about flex 
or what sites. i did totaltraining, and lynda so waht else is there



Yahoo! oneSearch: Finally, mobile search that gives answers, not web links. 





Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.   

***
The information in this e-mail is confidential and intended solely for the 
individual or entity to whom it is addressed. If you have received this e-mail 
in error please notify the sender by return e-mail delete this e-mail and 
refrain from any disclosure or action based on the information.
***   

  







  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding

Re: [flexcoders] Is there known memory leaks in flexbuilder Moxie?

2007-09-21 Thread Sheriff
i heard the popUpWindow/titleWindow/popUpManger Class

- Original Message 
From: Patrick Lemiuex [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, September 21, 2007 5:46:33 PM
Subject: [flexcoders] Is there known memory leaks in flexbuilder Moxie?









  



I am working on one file and flex is using 700 Megabytes of ram.



Thanks,

Patrick




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?

2007-09-20 Thread Sheriff
ya but the problem is i dont know what to do, like i have no idea, i even did 
the projects provided by adobe but there is still alot more to learn

- Original Message 
From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 20, 2007 4:15:26 PM
Subject: Re: [flexcoders] Anyone have any good Flex Projects with sourceCode?









  







It seems to me that if you 'did' total training and 
lynda.com, then you shouldn't be practicing, you should be doing..

 

Paul


  - Original Message - 

  From: 
  Sheriff 
  

  To: [EMAIL PROTECTED] ups.com 

  Sent: Thursday, September 20, 2007 10:07 
  PM

  Subject: [flexcoders] Anyone have any 
  good Flex Projects with sourceCode?

  


  
  i 
  am like stuck in the intermidate learning curve and i am running out of 
  material to practice on, so does anyone know where i can learn more about 
flex 
  or what sites. i did totaltraining, and lynda so waht else is 
  there




  
  Yahoo! oneSearch: Finally, mobile 
  search that gives answers, not web links.  


  







!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a {
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc {
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
--








   

Be a better Heartthrob. Get better relationship answers from someone who knows. 
Yahoo! Answers - Check it out. 
http://answers.yahoo.com/dir/?link=listsid=396545433

Re: [flexcoders] dynamic title of a panel

2007-09-18 Thread Sheriff
u should use a titleWindow instead and then just bind to the this.title

- Original Message 
From: Gustavo Duenas [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, September 18, 2007 2:03:41 PM
Subject: [flexcoders] dynamic title of a panel









  








Hi coders I have an app I've been doing and something is out of my league now, 
well I have a mx:model its id is portafolio and it load an external  xml 
file.well one of its part is client name of the client/client


and I'm using the pop up manager in order to create a pop up panel the code is.






mx:Script
![CDATA[
import mx.managers. PopUpManager;
 private var panel:Panel = new Panel();
 

private function openWindow(event: MouseEvent) :void{
PopUpManager. addPopUp( panel, this);
panel.title= portafolio. client;// this is the part of 
the problem I don't know how to bind the information of the xml client in the 
panel title//
panel.width= 500;
panel.height= 300;






}
]]
/mx:Script



The panel opens when the tile is clicked and everything is ok, but I need the 
name of the client in the title of each panel any ideas?




Regards




Gustavo Duenas





  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 

Re: [flexcoders] SalesBuilder in FLex(Source Code included)

2007-09-17 Thread Sheriff
so did anyone download it? any opinions at all if it emulates the real one

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, September 15, 2007 9:10:30 PM
Subject: [flexcoders] SalesBuilder in FLex(Source Code included)









  



Hey, i decided that i am going to release the source code for the 
SalesBuilder app done that was done in Air by 



Christophe Coenraets 

http://www.coenraet s.org/blog/



Its under the  MIT license so i have been told it is OK. 



I rewrote the entire thing to work in Flex, and added loads of comments so 
anyone can understand what i am doing. Keep in mind that this is my first 
programming language and i am only self taught. it's been only ~5 month that i 
got into programing. So tell me if there is something that i need to fix or if 
i am using wrong techniques. THis program is functional about 85%, i still 
havent done the whole send back to the database when somone clicks on save  and 
some minor stuff so it replicates it. I did the whole thing in one week before 
school started so i am busy now and prob wont finish it till end of month. Any 
how here is the link http://code. google.com/ p/salesbuilder/ downloads/ list 



--You need Coldfusion 8

--Microsoft sql 2005

--You must create a dataSource in the coldfusion admin called SalesBuilder

-Database in sql must also be called SalesBuilder

--I used 8500 for the port for coldfusion, 



 _ _ _ _ _ _

Got a little couch potato? 

Check out fun summer activities for kids.

http://search. yahoo.com/ search?fr= oni_on_mail p=summer+ activities+ 
for+kids cs=bz 




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/

[flexcoders] SalesBuilder in FLex(Source Code included)

2007-09-15 Thread Sheriff
Hey, i decided that i am going to release the source code for the SalesBuilder 
app done that was done in Air by 

   Christophe Coenraets 
http://www.coenraets.org/blog/

Its under the  MIT license so i have been told it is OK. 

I rewrote the entire thing to work in Flex, and added loads of comments so 
anyone can understand what i am doing. Keep in mind that this is my first 
programming language and i am only self taught. it's been only ~5 month that i 
got into programing. So tell me if there is something that i need to fix or if 
i am using wrong techniques. THis program is functional about 85%, i still 
havent done the whole send back to the database when somone clicks on save  and 
some minor stuff so it replicates it. I did the whole thing in one week before 
school started so i am busy now and prob wont finish it till end of month. Any 
how here is the link http://code.google.com/p/salesbuilder/downloads/list 


--You need Coldfusion 8
--Microsoft sql 2005
--You must create a dataSource in the coldfusion admin called SalesBuilder
-Database in sql must also be called SalesBuilder
--I used 8500 for the port for coldfusion, 










   

Got a little couch potato? 
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mailp=summer+activities+for+kidscs=bz
 


[flexcoders] How safe is the Restrict method on TextInput

2007-09-14 Thread Sheriff
i do not want any of these [EMAIL PROTECTED]*(*()_+ characters every in the 
username/password. if i use restrict is that enough or is there a loop hole 
that i need to watch out for.




  

Catch up on fall's hot new shows on Yahoo! TV. Watch previews, get listings, 
and more!
http://tv.yahoo.com/collections/3658 

Re: [flexcoders] Style in actionScript

2007-09-14 Thread Sheriff
ya i figured out later i couldnt do that so i had to use html Thanks

- Original Message 
From: Gordon Smith [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, September 14, 2007 5:01:05 PM
Subject: RE: [flexcoders] Style in actionScript









  







What do you mean by styling a String var? Components like 
Label have styles such as fontSize and color that they use for displaying 
their text. Strings do not have styles. Some components have an htmlText 
property which you can set to a String with a limited set of HTML 
markup.

 

- Gordon




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Sheriff
Sent: 
Thursday, September 13, 2007 8:54 PM
To: 
[EMAIL PROTECTED] ups.com
Subject: [flexcoders] Style in 
actionScript









i 
want to be able to style 
private var 
_promptStringtoShow :String

in CSS, would that be possible? the 
variable is under a class so how would i do this, i tried to do 
this.getStyle( promptStringSty le), then tried to 
do
.promptStringStyle in css but that didnt work





Fussy? Opinionated? Impossible to please? Perfect. Join 
Yahoo!'s user panel and lay it on us. 





  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/

[flexcoders] Focus In

2007-09-14 Thread Sheriff

I want to have the cursor into a textField once Flex Starts, i know that you 
have to do it with javascript so how would i be able to do that?
is there no way i can have flash player focus itself?




   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

Re: [flexcoders] Re: Expected FLEX 3 Release Date and Cost ?

2007-09-13 Thread Sheriff
From what i heard. Beta 2 will be released on Max which is sept 30th

- Original Message 
From: Nate Pearson [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 13, 2007 12:28:09 PM
Subject: [flexcoders] Re: Expected FLEX 3 Release Date and Cost ?









  



I only have 49 days left until my copy of Flex Builder 3 expires.  
I'm

guessing there will be a Beta 2 released before then?



--- In [EMAIL PROTECTED] ups.com, Jeffry Houser [EMAIL PROTECTED] wrote:



 At 360Flex Seattle, they said Early 08.  Early is open to

 interpretation.  I'm going to take it to mean first quarter

 

 Tom Chiverton wrote:

  On Thursday 13 Sep 2007, robert_thompson_ [EMAIL PROTECTED] wrote:

  I'm just wondering if Adobe has an estimated FLEX 3 release date

and the

  cost for upgrading from 2 to 3.

  

  Can't tell you the date, but the cost is zero (for the Flex 3 SDK).

  Or did you mean Flex Builder / charting ?

  

 

 -- 

 Jeffry Houser, Technical Entrepreneur, Software Developer, Author, 

 Recording Engineer

 AIM: Reboog711  | Phone: 1-203-379-0773

 --

 My Company: http://www.dot- com-it.com

 My Podcast: http://www.theflexs how.com

 My Blog: http://www.jeffryho user.com








  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Luggage? GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

Re: [flexcoders] Re: Expected FLEX 3 Release Date and Cost ?

2007-09-13 Thread Sheriff
Will there be Vids of it later or not?

- Original Message 
From: Ted Patrick [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 13, 2007 12:58:24 PM
Subject: RE: [flexcoders] Re: Expected FLEX 3 Release Date and Cost ?









  



October 1-3 we have an event in Chicago called Adobe MAX... (Read 17

Days Away)



http://www.adobemax 2007.com/ na/



I will be blunt, if you are doing Flex development, it would be a

mistake not to be at MAX this year. We have a ton to show, far more than

just Flex 3. 



I will step out on a limb here and put my reputation as a Flex

Evangelist on the line: Attend MAX, you will not be disappointed.



Cheers,



Ted :)






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Moody friends. Drama queens. Your life? Nope! - their life, your story. Play 
Sims Stories at Yahoo! Games.
http://sims.yahoo.com/  

Re: [flexcoders] Simple addEventListener Question!

2007-09-13 Thread Sheriff
i think u would need to call the invalideDisplayList() on panel_01 but i am not 
sure

- Original Message 
From: flexawesome [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 13, 2007 2:47:58 PM
Subject: [flexcoders] Simple addEventListener Question!









  





hey there,



I am working on the addEventListener and I would like to change the

title for panel_01 once panel_02 has moved, there is no error for

the code below, but won't work.



Do you have any suggestion? Thanks



 = = = = = =

?xml version=1.0 encoding=utf- 8?

mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml

layout=absolute  creationComplete= initApp( event)

mx:Script

![CDATA[



import flash.events. Event; 

import mx.core.*   



private function initApp(event: Event):void{

panel_02.addEventLi stener(Event. CHANGE, 
moveHandler) ;

}





private function moveHandler( event:Event) :void {

panel_01.title = Detected

trace(got) ;

}



private function movePanel(event: Event):void{

panel_02.move( 350,109);



}



]]

/mx:Script



mx:Panel id=panel_01 x=64 y=109 width=250 height=200

layout=absolute 

/mx:Panel



mx:Panel id=panel_02 x=432 y=109 width=250 height=200

layout=absolute 

/mx:Panel

mx:Button x=346 y=390 label=Button click=movePanel( event);/ 



/mx:Application

 = = = = = =






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








  

Luggage? GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

[flexcoders] Style in actionScript

2007-09-13 Thread Sheriff
i want to be able to style 
private var _promptStringtoShow:String

in CSS, would that be possible? the variable is under a class so how would i do 
this, i tried to do this.getStyle(promptStringStyle), then tried to do
.promptStringStyle in css but that didnt work




   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC

Re: [flexcoders] Style in actionScript

2007-09-13 Thread Sheriff
never mind, i guess i'll just use htmlFormat than bloat the code cause of one 
string that i may want to customize later

- Original Message 
From: Sheriff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 13, 2007 10:53:39 PM
Subject: [flexcoders] Style in actionScript









  




i want to be able to style 
private var _promptStringtoShow :String

in CSS, would that be possible? the variable is under a class so how would i do 
this, i tried to do this.getStyle( promptStringSty le), then tried to do
.promptStringStyle in css but that didnt work




  Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user 
panel and lay it on us.


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Moody friends. Drama queens. Your life? Nope! - their life, your story. Play 
Sims Stories at Yahoo! Games.
http://sims.yahoo.com/  

Re: [flexcoders] Rounded corners

2007-09-13 Thread Sheriff
you can create your own skin and apply it otherwise you can use the cornerRadius

- Original Message 
From: Roy Tang [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 13, 2007 11:33:23 PM
Subject: [flexcoders] Rounded corners









  



Hi,



Is there a way to control which corners are rounded for a button or a 

canvas or whatever? Something like what focusRoundedCorners does, except 

for the actual control, not for the focus rectangle.



Thanks,



Roy




  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

[flexcoders] Help with event.stopImmediatePropagation();

2007-09-11 Thread Sheriff
so i am having a problem understand what event.stopImmediatePropagation();, so 
i was wondering if there is a way that i could use the trace function to tell 
me what is happening. Reason is if i dont include the 
event.stopImmediatePropagation(); then i get a runtime error about how the 
Display object must be a child of the caller when i click. however, by 
including the stop then everything works. I would post the code but its just 
too big and hard to follow. 




  

Luggage? GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

Re: [flexcoders] Breakpoint jumps away

2007-09-11 Thread Sheriff

you have to set it on a Line of Code and not just an empty line or a line with 
comments, sometimes i do that and the same thing happens to me. 
- Original Message 
From: Steve Hueners [EMAIL PROTECTED]
To: flexcoders flexcoders@yahoogroups.com
Sent: Tuesday, September 11, 2007 1:19:14 PM
Subject: [flexcoders] Breakpoint jumps away









  



I've set a breakpoint at a specific line - a blue dot verifies the

accuracy of my double click...then when I click debug the dot jumps

all the way out of the function to a spot of zero interest to me.



whatzzthat?



thx

--steve...




  







!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a {
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc {
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
--








   

Moody friends. Drama queens. Your life? Nope! - their life, your story. Play 
Sims Stories at Yahoo! Games.
http://sims.yahoo.com/  

Re: [flexcoders] Re: Help with event.stopImmediatePropagation();

2007-09-11 Thread Sheriff
i see so is there anyway to find what listener is causing that problem, since i 
only have one in my code. this is just for understaning.

- Original Message 
From: ben.clinkinbeard [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, September 11, 2007 12:53:38 PM
Subject: [flexcoders] Re: Help with event.stopImmediatePropagation();









  



The addEventListener( ) method has a priority parameter (the fourth

one), which specifies the order in which your listener functions will

be called. The parameter defaults to 0, and when there are multiple

listeners with the same priority they are called in the order in which

they were added.



event.stopImmediate Propagation( ) stops all subsequent listeners from

being fired, so it sounds like one of your listeners down the line has

an error in it. I actually posted an example of using

stopImmediatePropag ation() last week:

http://www.returnun defined.com/ 2007/09/custom- flex-components- providing- 
default-yet- overridable- behavior/



HTH,

Ben



--- In [EMAIL PROTECTED] ups.com, Sheriff [EMAIL PROTECTED] .. wrote:



 so i am having a problem understand what

event.stopImmediate Propagation( );, so i was wondering if there is a

way that i could use the trace function to tell me what is happening.

Reason is if i dont include the event.stopImmediate Propagation( ); then

i get a runtime error about how the Display object must be a child of

the caller when i click. however, by including the stop then

everything works. I would post the code but its just too big and hard

to follow. 

 

 

 

 

  

 _ _ _ _ _ _

 Luggage? GPS? Comic books? 

 Check out fitting gifts for grads at Yahoo! Search

 http://search. yahoo.com/ search?fr= oni_on_mail p=graduation+ giftscs= bz








  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

Re: [flexcoders] How to dispatch event from ItemRenderer?

2007-09-11 Thread Sheriff
have the event bubble from the itemRenderer, and that is about it. And listen 
for it

- Original Message 
From: Troy Simpson [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, September 11, 2007 3:40:27 PM
Subject: [flexcoders] How to dispatch event from ItemRenderer?









  





I have created a List with a custom ItemRenderer.  The ItemRenderer creates a 
label and two Radio Buttons for each item in the list.  When one of the 
RadioButtons is selected, how would I notify other components that the a radio 
button was selected?  Would I capture the click event in the ItemRenderer and 
then dispatch it to the parent QuestionList Class or is there another way to do 
this?


 

Here is an example of what I am trying to acomplish.  Thanks.


Here is my QuestionList Class:
 --
package
{
 import mx.controls. List;
 import mx.collections. ArrayCollection;
 import mx.core.ClassFactor y;


 public class QuestionList extends List

 {
  private var qItems:ArrayCollect ion;
  public function QuestionList( )
  {
   //TODO: implement function
   super();
   this.qItems = new ArrayCollection( );
   this.itemRenderer = new ClassFactory( ListItemRenderer );

   addQItem(Are you tall?);
   addQItem(Are you smart?);
   addQItem(Are you quick?);
   addQItem(Are you slow?);
   this.dataProvider = this.qItems;
  }

  
  public function addQItem(s:String) :void
  {
   var o:Object = new Object();
   o.label = s;
   this.qItems. addItem(o) ;
  } 
 }
 
ListItemRenderer Class:

 --
package
{
 import mx.containers. Canvas;
 import mx.controls. RadioButton;
 import mx.controls. Label;
 import mx.controls. RadioButtonGroup ;

 public class ListItemRenderer extends Canvas

 {
  private var lbl:Label;
  private var rdoYes:RadioButton;
  private var rdoNo:RadioButton;
  private var rdoGrp:RadioButtonG roup;
  //
  public function ListItemRenderer( )
  {
   //TODO: implement function

   super();
   this.lbl = new Label();
   this.rdoNo = new RadioButton( );
   this.rdoNo.label = No;
   this.rdoNo.setStyle (right,10);
   this.rdoYes = new RadioButton( );
   this.rdoYes. label
 = Yes;
   this.rdoYes. setStyle(right,60);
   this.rdoGrp = new RadioButtonGroup( );
   this.rdoNo.group = this.rdoGrp;
   this.rdoYes. group = this.rdoGrp;
   this.addChild( this.lbl) ;

   this.addChild( this.rdoYes) ;
   this.addChild( this.rdoNo) ;
  }
  override public function set data(value:Object) :void
  {
   this.lbl.text = value.label;
  }
 }
}

 --

-- 
Troy Simpson 



  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}

Re: [flexcoders] How to dispatch event from ItemRenderer?

2007-09-11 Thread Sheriff
his is how i had it work, sorry no wear near the FlexIDE  till tommrrow so 
pardon my mistakes

Main Component

mx:Scrip
private function initApp():void{
//name of the component in the dataGrid
this.DataGrid.addEventListener(DataGrid.CUSTOM_EVENT_BUBBLING,doWahtever)
/mx:script

say u want a dataGrid

mx:dataGrid  id=DataGrid.. ItemRenderer = com.flexGroups.Item/
mx:vbox



This would be the com.FlexGroup.item
mx:metaData
[Event(name=CUSTOM_EVENT_BUBBLING)]


mx:scrip
private function dispatchCustom():void{
this.dispatchEvent(new Event(CUSTOM_EVENT_BUBBLING,true ---So u set this to 
true, under bubbling)
/mx:script

mx:label text={data.label} click=dispatchCustom()/
/mx:hbox


- Original Message 
From: Troy Simpson [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, September 11, 2007 6:39:22 PM
Subject: Re: [flexcoders] How to dispatch event from ItemRenderer?









  




 

Would you have an example of how to do this with the example code that I 
provided?

 

I was thinking that I could listen for the click event on the radio buttons, 
capture the event, and dispatch a new custom event.

 

Thanks,

 

On 9/11/07, Sheriff [EMAIL PROTECTED] com wrote:








have the event bubble from the itemRenderer, and that is about it. And listen 
for it 



- Original Message 
From: Troy Simpson [EMAIL PROTECTED] com

To: flexcoders@yahoogroups.com
Sent: Tuesday, September 11, 2007 3:40:27 PM
Subject: [flexcoders] How to dispatch event from ItemRenderer?







I have created a List with a custom ItemRenderer.  The ItemRenderer creates a 
label and two Radio Buttons for each item in the list.  When one of the 
RadioButtons is selected, how would I notify other components that the a radio 
button was selected?  Would I capture the click event in the ItemRenderer and 
then dispatch it to the parent QuestionList Class or is there another way to do 
this? 


 

Here is an example of what I am trying to acomplish.  Thanks.


Here is my QuestionList Class:
 --
package
{
 import mx.controls. List;
 import mx.collections. ArrayCollection;
 import mx.core.ClassFactor y;


 public class QuestionList extends List 

 {
  private var qItems:ArrayCollect ion;
  public function QuestionList( )
  {
   //TODO: implement function
   super();
   this.qItems = new ArrayCollection( );
   this.itemRenderer = new ClassFactory( ListItemRenderer ); 

   addQItem(Are you tall?);
   addQItem(Are you smart?);
   addQItem(Are you quick?);
   addQItem(Are you slow?);
   this.dataProvider = this.qItems;
  }

  
  public function addQItem(s:String) :void
  {
   var o:Object = new Object();
   o.label = s;
   this.qItems. addItem(o) ;
  } 
 }
 
ListItemRenderer Class:

 --
package
{
 import mx.containers. Canvas;
 import mx.controls. RadioButton;
 import mx.controls. Label;
 import mx.controls. RadioButtonGroup ;

 public class ListItemRenderer extends Canvas 

 {
  private var lbl:Label;
  private var rdoYes:RadioButton;
  private var rdoNo:RadioButton;
  private var rdoGrp:RadioButtonG roup;
  //
  public function ListItemRenderer( )
  {
   //TODO: implement function 

   super();
   this.lbl = new Label();
   this.rdoNo = new RadioButton( );
   this.rdoNo.label = No;
   this.rdoNo.setStyle (right,10);
   this.rdoYes = new RadioButton( );
   
this.rdoYes. label = Yes;
   this.rdoYes. setStyle(right,60);
   this.rdoGrp = new RadioButtonGroup( );
   this.rdoNo.group = this.rdoGrp;
   this.rdoYes. group = this.rdoGrp;
   this.addChild
( this.lbl) ; 
   this.addChild( this.rdoYes) ;
   this.addChild( this.rdoNo) ;
  }
  override public function set data(value:Object) :void
  {
   this.lbl.text = value.label;
  }
 }
}

 --

-- 
Troy Simpson 









Shape Yahoo! in your own image. Join our Network Research Panel today!
 


 






-- 
Troy Simpson 


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav

Re: [flexcoders] FlexBuilder 3 will expire?

2007-09-10 Thread Sheriff

Flex 3 Beta 1 expires, and rumors be told that Flex 3 Beta 2 will be released 
the same day that Max is beign held which is on sept30th
- Original Message 
From: Steve Kellogg [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, September 10, 2007 3:30:28 PM
Subject: [flexcoders] FlexBuilder 3 will expire?









  



Quick question...



When my copy of Flex Builder 3 is going to expire, is the app telling me

that THIS BETA is time bombed?  Or is it telling me that MY LICENSE is time

bombed?  I entered in my Flex Builder 2 license, and I was under the

impression that I would have unfettered access to FB3 until it was released.



Best Regards,



Steve






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

Re: [flexcoders] How to know what is in mx_internal

2007-09-09 Thread Sheriff
this is all i see
**
14
 *  This namespace is used for undocumented APIs -- usually implementation
15
 *  details -- which can't be private because they need to visible
16
 *  to other classes.
17
 *  APIs in this namespace are completely unsupported and are likely to
18
 *  change in future versions of Flex.
19
 */
20
public namespace mx_internal =
21
http://www.adobe.com/2006/flex/mx/internal;;
22
}

- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 9, 2007 1:25:19 AM
Subject: RE: [flexcoders] How to know what is in mx_internal









  












Read the source code and used the
debugger, probably.  Keep in mind that mx_internal is not officially supported
so its APIs can change or go away in future releases and break your code.
 

  
 










From: [EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com ] On Behalf 
Of Sheriff

Sent: Saturday, September 08, 2007
10:08 PM

To: [EMAIL PROTECTED] ups.com

Subject: [flexcoders] How to know
what is in mx_internal
 




  
 











I checked out the FlexLib on google, the superTabNavigator etc.. and
they used alot of mx_internal stuff, now i tried finding any documentation
about the stuff in there but couldnt find anything so i was wondering how did
they find out what do to use. 
 







  
 








Shape Yahoo! in your own image. Join
our Network Research Panel today! 
 















  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

Re: [flexcoders] Dragging and moving an image to a new location

2007-09-09 Thread Sheriff
DragManager.acceptDrop()

- Original Message 
From: alex_gky [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 9, 2007 9:28:35 AM
Subject: [flexcoders] Dragging and moving an image to a new location









  



Hi all,



How do I achieve dragging an image and upon releasing the mouse

button, the image moves to the new location? I have achieve till the

drag drop stage using action script. But when the dragDrop() event is

called, how do I use action script to update an image (say id=img1)

to the new mouse cursor location? 



Please help.



Cheers:)

Alex






  







!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a {
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc {
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
--








  

Shape Yahoo! in your own image.  Join our Network Research Panel today!   
http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 



[flexcoders] Rotating Thing, Example inside

2007-09-09 Thread Sheriff
was wondering if anyone knew how to do something like this
http://www.thereplicants.net/flex/test/InfobolsaDashboard.swf

hold SHIFT+ESC and use the cursor thats in the middle of the mouse to move it




   

Sick sense of humor? Visit Yahoo! TV's 
Comedy with an Edge to see what's on, when. 
http://tv.yahoo.com/collections/222

Re: [flexcoders] building up the url for httpservice

2007-09-09 Thread Sheriff

i think thats where the nameofthesevice.Send(...) comes in, so place the url 
inside the send, dont quote me on this though
- Original Message 
From: grimmwerks [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Sunday, September 9, 2007 10:21:36 PM
Subject: [flexcoders] building up the url for httpservice









  



Ok this is stupid.



Since we've got an app that might be moving around, I was going to either pass 
the rootURL in flash vars or strip it from the main application. url. 


Well did all that but how do I set it in the httpservice' s url with a variable 
AND a string: 


url={rootURL+\/signup/register\}




?
 


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Got a little couch potato? 
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mailp=summer+activities+for+kidscs=bz
 

Re: [flexcoders] stop a Title window from being dragged

2007-09-08 Thread Sheriff

i actually got it to work, just 
override public function startDragging(Whatever is in there):void{
//leave it empty
}

- Original Message 
From: li wenzhi [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, September 8, 2007 10:24:03 AM
Subject: Re: [flexcoders] stop a Title window from being dragged









  




do you means the isPopUp property of UIComponent?


- Original Message 
From: Alex Harui [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Friday, September 7, 2007 12:02:13 PM
Subject: RE: [flexcoders] stop a Title window from being dragged





popUp = false




From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Sheriff
Sent: Thursday, September 06, 2007 7:53 PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] stop a Title window from being dragged









i want the titleWindow to center first then to not move even if the user wants 
it to move, i tried to override the move method but i can't center it
 as a result. i tried preventing the mouse event.preventDefaul t, that doest 
work. What else can i do





Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, 
when. 









  Choose the right car based on your needs.  
Check out Yahoo! Autos new Car Finder tool.


  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
http://mobile.yahoo.com/go?refer=1GNXIC

Re: [flexcoders] Global variable - Best Practice

2007-09-08 Thread Sheriff
maybe have it as an event and just listen for it

- Original Message 
From: Gordon Smith [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, September 8, 2007 5:25:00 PM
Subject: RE: [flexcoders] Global variable - Best Practice









  







One way is

 


parentApplication. baseURL

 

- Gordon




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Ben 
Marchbanks
Sent: Saturday, September 08, 2007 3:02 PM
To: 
[EMAIL PROTECTED] ups.com
Subject: [flexcoders] Global variable - 
Best Practice






I have an application in which I current set a [Bindable] 
variable
baseURL to the application URL. I have been accessing this 
variable
from other components in the app using 
this.parentDocument .baseURL. 
This is a clunky solution since components 
may have their own children
so I windup with 
this.parentDocument .parentDocument. baseURL - What is
the best way 
to create and reference an application wide variable ?






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/

[flexcoders] private / getters and setters

2007-09-08 Thread Sheriff
what is the best practice for this, show i always have the private variables on 
top and then getters/setters later or just group both of them right after the 
other

private var _test:Number

//Constructor here
//events etcc
//getters and setters or

//construct
//vents
//private var_test:Number
getters/setters




   

Be a better Heartthrob. Get better relationship answers from someone who knows. 
Yahoo! Answers - Check it out. 
http://answers.yahoo.com/dir/?link=listsid=396545433

[flexcoders] How to know what is in mx_internal

2007-09-08 Thread Sheriff
I checked out the FlexLib on google, the superTabNavigator etc.. and they used 
alot of mx_internal stuff, now i tried finding any documentation about the 
stuff in there but couldnt find anything so i was wondering how did they find 
out what do to use. 




   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 

[flexcoders] Output an error in the log pane

2007-09-07 Thread Sheriff
i am using eclipse and im doing a custom component that requires a this 
[name]. it is used for formatting something, anyway i want to display an 
error message in the log pane if i forget the [name]. how would i register 
with the error framework of flex. Thanks




   

Yahoo! oneSearch: Finally, mobile search 
that gives answers, not web links. 
http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

Re: [flexcoders] Load MXML at run time?

2007-09-06 Thread Sheriff
i think livecycle does that, not sure if thats what u mean, it compiles the app 
on the server and sends it to the user

- Original Message 
From: M@ Sheppard [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 6, 2007 9:45:41 AM
Subject: [flexcoders] Load MXML at run time?









  



I'm designing what is in essence a custom registration form, so

clients of our flex app can design their own registration information.

 I'd like to try to store MXML somewhere on the server or perhaps the

database and render it at runtime based on what client is using the

application.



For example: Some clients want an installation where they collect a

zip code, while another may want to collect opt-in/out information. 

I'd like to store this in MXML and render it at run time inside my

registration form.



Anyone done anything like this or seen it done?



M@






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Building a website is a piece of cake. Yahoo! Small Business gives you all the 
tools to get online.
http://smallbusiness.yahoo.com/webhosting 

Re: [flexcoders] Flex Builder 2 plugin issue - no more red 'X'

2007-09-06 Thread Sheriff

try doing projects--Clean
- Original Message 
From: michael_corbridge [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, September 6, 2007 4:25:10 PM
Subject: [flexcoders] Flex Builder 2  plugin issue - no more red 'X'









  



Here's the issue:  You all know that Flex Builder does dynamic 
syntax

validation, and places a red 'X' in the left-hand gutter if there is

an obvious problem.  It is a handy feature, but mine has suddenly

stopped working.  I reinstalled eclipse / flex builder - and it still

will not display the 'X'.  btw ... Project  Build Automatically is

checked.  Other developers in the group have experienced the same

problem.  Any hints?






  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Be a better Globetrotter. Get better travel answers from someone who knows. 
Yahoo! Answers - Check it out.
http://answers.yahoo.com/dir/?link=listsid=396545469

[flexcoders] using Modules Problem

2007-09-05 Thread Sheriff

i tried searching but nothing came up, i am trying to use Modules. i know i 
need to compile them so what i do is right click and do run as first so a file 
gets created in the bin. My problem is when i go into my main application and 
do moduleLoader url etc.. it opens and i always get the screen that says Where 
is the Debugger or the Host application running message and then i get can not 
connect to flash debugger.




   

Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/

Re: [flexcoders] using Modules Problem

2007-09-05 Thread Sheriff
i dont event have the debug versions in the bin

- Original Message 
From: Alex Harui [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, September 5, 2007 9:18:59 PM
Subject: RE: [flexcoders] using Modules Problem









  







Make sure you're finding the release and not  debug 
versions of your modules.




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Sheriff
Sent: 
Wednesday, September 05, 2007 6:57 PM
To: 
[EMAIL PROTECTED] ups.com
Subject: [flexcoders] using Modules 
Problem










i 
tried searching but nothing came up, i am trying to use Modules. i know i need 
to compile them so what i do is right click and do run as first so a file gets 
created in the bin. My problem is when i go into my main application and do 
moduleLoader url etc.. it opens and i always get the screen that says Where is 
the Debugger or the Host application running message and then i get can not 
connect to flash debugger.





Choose the right car based on your needs. Check out Yahoo! 
Autos new Car Finder tool. 





  







!--

#ygrp-mkp{
border:1px solid #d8d8d8;font-family:Arial;margin:14px 0px;padding:0px 14px;}
#ygrp-mkp hr{
border:1px solid #d8d8d8;}
#ygrp-mkp #hd{
color:#628c2a;font-size:85%;font-weight:bold;line-height:122%;margin:10px 0px;}
#ygrp-mkp #ads{
margin-bottom:10px;}
#ygrp-mkp .ad{
padding:0 0;}
#ygrp-mkp .ad a{
color:#ff;text-decoration:none;}
--



!--

#ygrp-sponsor #ygrp-lc{
font-family:Arial;}
#ygrp-sponsor #ygrp-lc #hd{
margin:10px 0px;font-weight:bold;font-size:78%;line-height:122%;}
#ygrp-sponsor #ygrp-lc .ad{
margin-bottom:10px;padding:0 0;}
--



!--

#ygrp-mlmsg {font-size:13px;font-family:arial, helvetica, clean, sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial, helvetica, clean, 
sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;}
#ygrp-vitnav{
padding-top:10px;font-family:Verdana;font-size:77%;margin:0;}
#ygrp-vitnav a{
padding:0 1px;}
#ygrp-actbar{
clear:both;margin:25px 0;white-space:nowrap;color:#666;text-align:right;}
#ygrp-actbar .left{
float:left;white-space:nowrap;}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;font-size:77%;padding:15px 0;}
#ygrp-ft{
font-family:verdana;font-size:77%;border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;}

#ygrp-vital{
background-color:#e0ecee;margin-bottom:20px;padding:2px 0 8px 8px;}
#ygrp-vital #vithd{
font-size:77%;font-family:Verdana;font-weight:bold;color:#333;text-transform:uppercase;}
#ygrp-vital ul{
padding:0;margin:2px 0;}
#ygrp-vital ul li{
list-style-type:none;clear:both;border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;color:#ff7900;float:right;width:2em;text-align:right;padding-right:.5em;}
#ygrp-vital ul li .cat{
font-weight:bold;}
#ygrp-vital a{
text-decoration:none;}

#ygrp-vital a:hover{
text-decoration:underline;}

#ygrp-sponsor #hd{
color:#999;font-size:77%;}
#ygrp-sponsor #ov{
padding:6px 13px;background-color:#e0ecee;margin-bottom:20px;}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;margin:0;}
#ygrp-sponsor #ov li{
list-style-type:square;padding:6px 0;font-size:77%;}
#ygrp-sponsor #ov li a{
text-decoration:none;font-size:130%;}
#ygrp-sponsor #nc{
background-color:#eee;margin-bottom:20px;padding:0 8px;}
#ygrp-sponsor .ad{
padding:8px 0;}
#ygrp-sponsor .ad #hd1{
font-family:Arial;font-weight:bold;color:#628c2a;font-size:100%;line-height:122%;}
#ygrp-sponsor .ad a{
text-decoration:none;}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;}
#ygrp-sponsor .ad p{
margin:0;}
o{font-size:0;}
.MsoNormal{
margin:0 0 0 0;}
#ygrp-text tt{
font-size:120%;}
blockquote{margin:0 0 0 4px;}
.replbq{margin:4;}
--








   

Be a better Heartthrob. Get better relationship answers from someone who knows. 
Yahoo! Answers - Check it out. 
http://answers.yahoo.com/dir/?link=listsid=396545433