RE: [flexcoders] Re: Tween classes

2005-09-27 Thread Philippe Maegerman





It's not included in Flex
http://www.alex-uhlmann.de/flash/animationpackage/

Philippe 
Maegerman




From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Marcin 
GlowackiSent: lundi 26 septembre 2005 19:30To: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Tween 
classes
Where is that package and class?I was looking in Flex docs 
and i could not findThanks--- In flexcoders@yahoogroups.com, 
"Philippe Maegerman" [EMAIL PROTECTED] wrote: Sorry, I was looking at the 
wrong class, I found the onUpdate event ; AnimationPackage 
rocks !!  Philippe Maegerman 
  From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Philippe Maegerman Sent: lundi 26 septembre 2005 11:57 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classesThank you Alex, I was looking first 
for a standard (built-in) way. I looked into the Animation Class, I can 
see onStart and onEnd events but I don't see something similar to 
onTweenUpdate.   Philippe Maegerman  
-Original Message- From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Alex Uhlmann 
Sent: lundi 26 septembre 2005 11:51 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classes  Hey Philippe,  if that's not sufficient 
for what you want to achieve, maybe the Animator class in 
AnimationPackage works for you? It uses mx.effects.Tween by 
default.  Best, Alex  -- Alex 
Uhlmann Software Consultant iteration::two  
 -Original Message- From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] Behalf Of Philippe 
Maegerman Sent: 26 September 2005 09:59 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classes   Ok I found by digging the FlexForFlash 
package. Flex doesn't seem to include the mx.transitions.Tween class 
but mx.effects.Tween. This class is more basic but allows to 
input several values in the same Tween ;))  It still 
would have been nice to have the basic Tween class + easing 
equations  ?xml version="1.0" encoding="utf-8"? 
mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" 
creationComplete="doTween()" mx:Script ![CDATA[ import 
mx.effects.* function doTween(){ var a = {}; var anim = new 
Tween(a, [0,50], [100,100], 1000); a.> 
mx.controls.Alert.show(vals[0].toString() + '/' + 
vals[1].toString()); }; a.> 
mx.controls.Alert.show("End animation: " + endPos); }; } ]] 
/mx:Script /mx:Application
Philippe Maegerman From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Philippe Maegerman Sent: vendredi 23 septembre 2005 16:05 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classes   No idea why Tween classes are not 
working?  Philippe Maegerman   From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Philippe Maegerman Sent: mercredi 21 septembre 2005 14:26 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classes   Sorry for the delay, I have tried your 
suggestions and other things but can't make it happen. It seems 
ok to import the transitions package, no error pops up, I can't declare 
var new my_tween = new Tween() but it allows me to do var my_tween = new 
mx.transitions.Tween() which seems quite strange to me, because I import 
mx.transitions.* As it fails silently I have no clue on what's going on 
here :(  Here's my code with trace actions:  
?xml version="1.0" encoding="utf-8"? mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
creationComplete="myTween()" mx:Script ![CDATA[  
import mx.transitions.*; var dummy:Object = {val:''}; function 
myTween(){ //mx.core.Application.alert('starting'); dummy = 
{val:''}; var my_tween = new mx.transitions.Tween(dummy, 'val', null, 0, 
100, 10, true); my_tween.> 
mx.core.Application.alert('onMotionChanged'); } 
my_tween. { 
mx.core.Application.alert('onMotionFinished'); }; } 
]] /mx:Script /mx:Application 
 Philippe Maegerman PS: I have tested this in flashMX2004 
(except for the trace statements) and it works perfectly well 
From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin 
Sent: dimanche 11 septembre 2005 6:13 To: 
flexcoders@yahoogroups.com Subject: RE: [flexcoders] Tween 
classes   Try not using _level0, go through 
Application.application. And see if you should be using Delegates 
too J  Matt From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf 
Of Philippe Maegerman Sent: Friday, September 09, 2005 9:56 AM 
To: flexcoders@yahoogroups.com Subject: [flexcoders] Tween 
classes  I think the mx.transitions.Tween and 
mx.transitions.easing.* classes are not present in Flex, is there a way 
to use them? I tried the following that works in Flash but not 
Flex:  var dummy = {val:''}; var my_tween:Object = new 
mx.transitions.Tween(dummy, 'val', null, 0, 100, 1, true); 
my_tween.> 
_level0.infos_txt.text += dummy.val ; } 
my_tween. { 
_level0.infos_txt.text = 'finished'; };  Regards, 
 

[flexcoders] Questions about createChild() and destroyChildAt()

2005-09-27 Thread Prasad Dhananjaya
Hi all,

Need your help to solve 2 questions about createChild() and destroyChildAt().

My JobNetCanves have some images  lines.They all are created by using 
createChild().

1.How can I give mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp
events to createChild().(check ★).I want to give above affects to all 
created children which are on the JobNetCanves. 
(In below code all  mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp 
functions are working well)

2.Want to delete child at double click. What words I have to write in 
destroyChildAt(JobNetCanves.getChildAt(★★));

Please help..

thanks

-
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; pageTitle=Test 
Aplication

mx:Script
import mx.managers.DepthManager;
var isMouseDown:Boolean = false;
var lastClickTime:Number = 0;
var deleteflag=1;

![CDATA[
[Embed(job1.jpg)]
var job51:String;
[Embed(job4.jpg)]
var job54:String;

//double-click 
function doubleClickDestroyChild(event):Void{
isMouseDown = false;
setStyle(borderStyle, none);
var now:Number = new Date().getTime();
if (now - lastClickTime  300){
//alert(delete);
doDeleteChild();
}else{
lastClickTime = now;
}
}

//destroy child
function doDeleteChild() {
destroyChildAt(JobNetCanves.getChildAt(★★));
 }
 
//mouse over effect
function popToTop(target:mx.core.UIObject) {
var parent = target.parent; 
var topSibling = 
parent.getChildAt(parent.numChildren-1);
if (topSibling != target)
target.setDepthAbove(topSibling);
 }
  
//mouse out effect 
function restore(target:mx.core.UIObject) {
var parent = target.parent;
var childIndex = parent.getChildIndex(target);

if (childIndex  parent.numChildren - 1)

target.setDepthBelow(parent.getChildAt(childIndex+1));
}
  
//create child
function drawImagesAndArrows(target){
★   var img1=target.createChild(mx.controls.Image,, 
{source:job51, x:98, y:23,mouseOverEffect:myZoom,
 
mouseOver:popToTop(event.target),mouseOverEffect:myZoom,
 
mouseOut:restore(event.target),mouseOutEffect:cut, 
mouseUp:doubleClickDestroyChild(event)});
var img4=target.createChild(mx.controls.Image,, 
{source:job54, x:248, y:98});

var lines_comp 
=target.createChild(mx.containers.Canvas,,{width:1920,height:1920});
drawLines(lines_comp,140, 40, 235, 100, 8, 0.5)
}

//draw lines
function drawLines(lines,x1, y1, x2, y2, size, sharpness) {
lines.lineStyle(2,0x00,100);
lines.moveTo(x1,y1);
lines.lineTo(x2, y2);
}

]]
/mx:Script

   mx:Effect
  mx:Zoom name=myZoom zoomFrom=100 zoomTo=140 /
  mx:Zoom name=cut zoomTo=100 duration=1 /
   /mx:Effect

mx:Panel width=100% height=100% title=Mypanel
mx:Canvas width=100% height=100%
mx:Canvas id=JobNetCanves 
x=0 y=110  width=100% height=225 
initialize=drawImagesAndArrows(event.target) 
backgroundColor=#DEE0FE 
vScrollPolicy=auto 
backgroundAlpha=0
  /mx:Canvas
/mx:Canvas
  /mx:Panel
/mx:Application


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Flex and Ruby - Anyone tried it?

2005-09-27 Thread Mark Wales
Title: ClassUtil Question











Hello,



I was curious if anyone had tried to put
Flex and Ruby together in any interesting ways (as in accessing server-side
ruby objects via HTTP and CGI, building a custom remote object facility to a
Ruby-based server, etc).



Ruby has developed a serious following and
it seems like it may make a cooler, easier-to-use, and more capable server-side
companion to Flex than Java - if the connectivity
between the two was properly engineered. 



Id be curious to know what others
think  and what may already be in the works!



Thanks,



-Mark













--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Dynamically created children don't respect properties?

2005-09-27 Thread Noah Hoffman










Hello,



Ive got some code thats
creating a bunch of nested tags based on the results of a RemoteObject call. The
problem is, none of the width or height settings are working (or Im
missing something else). Does anyone have any ideas? When the code below gets
rendered, Id expect a bunch of repeating HBoxs to appear in the
VBox vbDynamicStudies . What I get instead is a huge blank panel
with hscroll and vscroll bars that are almost infinitely long. In order to
debug Ive tried setting explicit widths (like 100) and heights and have
proven that the nested tags are created properly, its just the layout
thats messed up. Any one have any ideas?



Thanks,

Noah





mx:Panel

 xmlns:mx=http://www.macromedia.com/2003/mxml

 xmlns:comp=components.*


 initialize=initComponent()

 marginTop=3

 marginLeft=5 

 marginRight=5
creationPolicy=all

 creationComplete=creationComplete()

 



 mx:Script

  ![CDATA[



 for(var n = 0; n
 iterations; n++)

 { 

 myHbox
= null;

 myHboxSub
= null;

 myVbox
= null;

 

 myHbox
= HBox(vbDynamicStudies.createChild(HBox, undefined, 

 {
marginTop:10,

 
marginBottom:10,

 
marginLeft:10,  


 
backgroundColor:#FF,

 
mouseOver:changeBgColor(event, rollOverColor),

 
mouseOut:changeBgColor(event, bgColor),

 
borderStyle:solid })); 



 myHboxSub
= HBox(myHbox.createChild(HBox, undefined, 

 
{ backgroundColor:#CC,

 width:160,

 height:75,

 borderStyle:solid,

 borderThickness:2,

 verticalAlign:middle,

 horizontalAlign:center
}));

 

 myHboxSub.createChild(Text,
undefined, 

  {
text:Image Placeholder,

   
textAlign:center,

   
width:100%,

  
height:160 });

 

 myVbox
= VBox(myHbox.createChild(VBox, undefined, { width:100% } ));

 

 myVbox.createChild(Text,
undefined, 

 {
text:arResults[n].title,

 
fontWeight:bold,

 
fontSize:12,

 
width:100% });

 

 myVbox.createChild(Text,
undefined, 

 {
text:arResults[n].description,

 
fontSize:10,

 
width:100% }); 

 


 } 

 

 ]]

 /mx:Script 





mx:VBox
id=vbDynamicStudies width=100% 

 /mx:VBox



/mx:Panel















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Flex compilation bug

2005-09-27 Thread superabe
Am facing a mystery bug that I can't seem to fathom. Hoping somebody on the 
list know's of a solution.
The flex server is set to debug mode and the app uses the Cairngorm 
Framework and the FAST toolkit.

Basically what seems to happen is every time I restart my flex server it 
fails to recognize updates to certain components/renderers.


For E.g.

I have a number of custom components extending of the TitleWindow, that are 
instantiated using the PopupManager.
These have certain components being used as renderers within a reeater

mx:Repeater id=categoriesList dataProvider={planDetail.categories}
   
repeatEnd=initOptions(ModelLocator.cart.isPlanInCart(planDetail.id))
  popupRenderer:OptionsRenderer id=optionsRenderer
categoryName={categoriesList.currentItem.categoryName} 
options={categoriesList.currentItem.options}
optionUpdate=updatePlanPrice()
  /popupRenderer:OptionsRenderer

The popupRenderer namespace is pointed to 
com.company.appName.view.productDisplay.renderers.*

When I restart my flex server, the repeater works fine and show n number 
of OptionsRenderers, but fails to display the values for categoryName and 
options.
Now if I open up the mxml file that contains the Repeater and add a dummy 
line of code, like (Echo.debug()), save it and refresh the browser, the 
values show up and everything is fine.
If I restart my flex server the same problem happens again.

I initially thought this might be happening only for Popups or  Repeaters, 
but I have seen this also in cases where I have components that are not 
being used in popups and are not in Repeaters

Anybody have any ideas / suggestions?
Any help is appreciated as this seems to be a flex bug and am not sure how 
to tackle this.

Thanks,

- superabe



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] test message

2005-09-27 Thread nostra72



This is just a message to see if I can get through I have had problems posting





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Calling CFCs multiples times

2005-09-27 Thread kg4awg
I sent this once to the list, but it didn't show up and my email
program went fruity so I will repost.

We have a Flex application.  When I use it localy it calls the CFCs
fine.  But when someone uses it from the outside they say that the
second time it makes a CFC call it just locks up with the clock face
spinning around.  

I am using the demo/dev version while we evaluate it, not sure if this
is a problem or if its something else.

Boss says it reminds him of when Oracle runs out of available connections.




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] flex and third party search engines

2005-09-27 Thread John Dowdell
Nithya R wrote:
 i would like to know if flex supports any third party search engines like 
 mondosearch etc... .net supports mondosearch , likewise what are the search 
 engines that flex supports...

When you say support, what do you mean?

I think Matt may have read this as is static text in a Flex SWF read by 
search engines, and results are mixed here... some engines definitely 
read it, as you can prove at Google by searching on checkout 
filetype:swf or similar terms.

But if you're looking to offer local search within your own work, then a 
lot depends on whether your text is stored in the SWF or in a database 
or web service, what type of interface you'd like to display results in, 
etc.

Or if you're looking to issue a standard web search from within a Flex 
presentation, then that can be as easy as constructing an URL.

When you say support, what do you mean? If you'd like to offer a 
search form within your presentation, then what would you like it to 
search...?

jd





-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.


 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Can someone read this please

2005-09-27 Thread nostra72



I am not able to post to the list for some reason





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] pricing

2005-09-27 Thread Tomek Klas
hello,

can anyone tell me how much it cost to deploy? I can't find any  
pricing information on macromedia website, and I really need to know  
the figures.


thanx


Tomek

Tomek Klas

Phone: 
Fax: +44 (0)20 7025 5401
Website: www.WooGo.com
 
This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not flexcoders@yahoogroups.com you should not 
disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
immediately by e-mail if you have received this e-mail by mistake and delete 
this e-mail from your system. E-mail transmission cannot be guaranteed to be 
secure or error-free as information could be intercepted, corrupted, lost, 
destroyed, arrive late or incomplete, or contain viruses. The sender therefore 
does not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version. Any views or opinions presented 
are solely those of the author and do not necessarily represent those of the 
company.

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] own Accordion Classes needs dynamic header image

2005-09-27 Thread indradapps
Hi i want ot change de accordion's header image so as it represent the 
status of the accrodion whether it is closed or opened. 
But through de action script. Cant we use jpg or gif file for dis to 
acheive it thru de action script file.
please reply me its urgent..

_Dapps.




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Confusing error message

2005-09-27 Thread nostra72




I would post the code on this but as the code is too large I will just post the error. First I want to say I have never seen this error before I mean at least not in this format. Lets say I have a project and I name it play ok and an error message comes up that looks like this
Error /flexstore/play-generated.as:4641 
Branch between 40937 and 73707 around line 0 exceeds 32K span. If possible, please refactor this component.Error 
Branch between 40937 and 73707 around line 0 exceeds 32K span.What the difference is basicly is I never see the -generated after the project name when I go over 32k? I am wondering if I ran in to something else. I have seen the error just not the -generated after the project name





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] How to show selected file in text box when selected from browse window

2005-09-27 Thread sandip_patil01
Hi All,

I have done browse window functionality.
i.e.
When I click on Browse button ,attachment window is coming.
But when I select any file from that window it is not displaying in 
that text box.
Can anybody help me.

Here is my code.

mx:Button label=Browse click=myLoader.content.browse('myFile') 
id=browseButton /
mx:Loader source=fileIO.swf height=10 width=10 id=myLoader / 

where fileIO.swf file I copied from  some other files I copied from 
url http://www.macromedia.com/devnet/flex/articles/fp8_features.html;

but How to show selected file in  text box.
Can anybody help me.
Thx in advance.
Sandip Patil.




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Tree Problem

2005-09-27 Thread noussrinivassm
Hi All,

I have problem in Tree. I have used Renderer for renderering the nodes
in my way.The Problem what i am facing is if nodes are opened normally
no problems appears but if i open all nodes, i get a vertical scroll,
if i move to the last and then close the last root node then the icons
and text alignment vanishes and another node is appended at the end
which is not at all there..even after removing the renderer also it's
creating the same problem...is this the problem with the MX Tree
Components itself or is there any thing regarding the resize
event..please do let me know what could be wrong.

Thanks In advance...
Srinivas





 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] FlashPaper generation

2005-09-27 Thread David Solis
Is this (flash paper generation) a feature planned for Flex 2.0?

Regards

On 9/26/05, David Mendels [EMAIL PROTECTED] wrote:
 Not at present.

 -David



 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] When to use constructor vs init?

2005-09-27 Thread Rick Schmitty



Thank you for the explanation, that does help

-RickOn 9/26/05, JesterXL [EMAIL PROTECTED] wrote:









Depends on what you extend, and what you are 
creating.

Extending nothing (implicit inheritance from 
Object), no need to have default properties?

Then nothing.

Extending nothing, but need to have customizable 
properties?

Pass them into the constructor. Some would 
argue you should utilize an init instead since it's easy to re-initialize a 
class instance with new data vs. recreating the whole thing. 
Example:

a = new Cow();
a.init(name, dateOfBirth);
a.init(anotherName, anotherDate);

vs bad way:

a = new Cow(name, dateOfBirth);
a = new Cow(anotherName, anotherDate):

Most Model classes have public properties so you 
don't even need a constructor or init function since you can just set the 
properties. Others have public methods accomplishing the same 
thing.

The third facet is if you are extening something 
that automatically calls your constructor or some other sub 
function.

For example, extending mx.core.UIObject, 
UIComponent, or View have a bunch of built-in functions that run 
automatically. You don't need to even define a constructor, although it's 
nice as a best practice. For example, if you extend UIObject, you're init 
function is called for you automatically, and at that point, if you passed in an 
initialization object, those properties are already set.

So bottom line, I rarely use constructors. 
Most of the teaching programming books I've seen show those as examples, but I 
don't ever use them in the real-world, and if I do, it's only for intrinsic 
model classes (Array, Date, etc.). None of my View classes ever take 
parameters because currently, Flash Player requires factory methods to create 
things vs. a = new MovieClip().

Hope that helps.


- Original Message - 
From: 
Rick Schmitty 

To: flexcoders@yahoogroups.com 
Sent: Monday, September 26, 2005 1:34 PM
Subject: [flexcoders] When to use constructor vs init?
When making a custom class, should you ever put anything in the 
constructor? class foo {function foo(){ // do 
stuff here like add event listeners?}function 
init(){ super.init() // do stuff here like add 
event listeners?}}Also should super.init() be first or 
last inside of init()?I've seen examples using either, and sometimes 
bothThanks!





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.
  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Questions about createChild() and destroyChildAt()

2005-09-27 Thread Tracy Spratt
#2: How about:
var iChildIndex as Number = JobNetCanves.getChildIndex(event.target);
destroyChildAt(iChildIndex);


Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Prasad 
Dhananjaya
Sent: Tuesday, September 27, 2005 5:15 AM
To: FlexML
Subject: [flexcoders] Questions about createChild() and destroyChildAt()

Hi all,

Need your help to solve 2 questions about createChild() and destroyChildAt().

My JobNetCanves have some images  lines.They all are created by using 
createChild().

1.How can I give mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp
events to createChild().(check ★).I want to give above affects to all 
created children which are on the JobNetCanves. 
(In below code all  mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp 
functions are working well)

2.Want to delete child at double click. What words I have to write in 
destroyChildAt(JobNetCanves.getChildAt(★★));

Please help..

thanks

-
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; pageTitle=Test 
Aplication

mx:Script
import mx.managers.DepthManager;
var isMouseDown:Boolean = false;
var lastClickTime:Number = 0;
var deleteflag=1;

![CDATA[
[Embed(job1.jpg)]
var job51:String;
[Embed(job4.jpg)]
var job54:String;

//double-click 
function doubleClickDestroyChild(event):Void{
isMouseDown = false;
setStyle(borderStyle, none);
var now:Number = new Date().getTime();
if (now - lastClickTime  300){
//alert(delete);
doDeleteChild();
}else{
lastClickTime = now;
}
}

//destroy child
function doDeleteChild() {
destroyChildAt(JobNetCanves.getChildAt(★★));
 }
 
//mouse over effect
function popToTop(target:mx.core.UIObject) {
var parent = target.parent; 
var topSibling = 
parent.getChildAt(parent.numChildren-1);
if (topSibling != target)
target.setDepthAbove(topSibling);
 }
  
//mouse out effect 
function restore(target:mx.core.UIObject) {
var parent = target.parent;
var childIndex = parent.getChildIndex(target);

if (childIndex  parent.numChildren - 1)

target.setDepthBelow(parent.getChildAt(childIndex+1));
}
  
//create child
function drawImagesAndArrows(target){
★   var img1=target.createChild(mx.controls.Image,, 
{source:job51, x:98, y:23,mouseOverEffect:myZoom,
 
mouseOver:popToTop(event.target),mouseOverEffect:myZoom,
 
mouseOut:restore(event.target),mouseOutEffect:cut, 
mouseUp:doubleClickDestroyChild(event)});
var img4=target.createChild(mx.controls.Image,, 
{source:job54, x:248, y:98});

var lines_comp 
=target.createChild(mx.containers.Canvas,,{width:1920,height:1920});
drawLines(lines_comp,140, 40, 235, 100, 8, 0.5)
}

//draw lines
function drawLines(lines,x1, y1, x2, y2, size, sharpness) {
lines.lineStyle(2,0x00,100);
lines.moveTo(x1,y1);
lines.lineTo(x2, y2);
}

]]
/mx:Script

   mx:Effect
  mx:Zoom name=myZoom zoomFrom=100 zoomTo=140 /
  mx:Zoom name=cut zoomTo=100 duration=1 /
   /mx:Effect

mx:Panel width=100% height=100% title=Mypanel
mx:Canvas width=100% height=100%
mx:Canvas id=JobNetCanves 
x=0 y=110  width=100% height=225 
initialize=drawImagesAndArrows(event.target) 
backgroundColor=#DEE0FE 
vScrollPolicy=auto 
backgroundAlpha=0
  /mx:Canvas
/mx:Canvas
  /mx:Panel
/mx:Application



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 






 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM

RE: [flexcoders] Confusing error message

2005-09-27 Thread Matt Chotin










This question is covered in the FAQ on www.cflex.net.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, September 27, 2005
9:09 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Confusing
error message







I would post the code on this but as the code is too large I
will just post the error. First I want to say I have never seen this error
before I mean at least not in this format. Lets say I have a project and I name
it play ok and an error message comes up that looks like this





Error /flexstore/play-generated.as:4641 



Branch between 40937 and 73707
around line 0 exceeds 32K span. If possible, please refactor this component.




Error 



Branch between 40937 and 73707
around line 0 exceeds 32K span.




What the difference is basicly is I never see the -generated after the project
name when I go over 32k? I am wondering if I ran in to something else. I have
seen the error just not the
-generated after the project name











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] flex has watch?

2005-09-27 Thread andrehfraga
hello,

flex has watch? I need make a app with wacth. If yes, send me a 
example?

bye.




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] need to invoke J class from mxml and get de value returned

2005-09-27 Thread indradapps
I neeed to invoke a java class method from a flex mxml file. for 
example the Java class has a method process(value) which return the 
same 'value'. 

By how i could invoke de method via flex and get the value whcih 
returned from the method. anybody have idea about dat please help me..

-Dapps





 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Need to invike java class method from mxml

2005-09-27 Thread indradapps
Hi everybody

I need to invoke de j class method from another mxml file.
For ex. A java class has a method called process (value) and it return 
de same value. I have to invoke dis process method from my mxml and 
get de value returned by dat method. could anybody has de answer for 
dis please help me..

Any idea or suggestion will be great.

_Dapps







 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] KeyDown event in mx:Application tag

2005-09-27 Thread Shanmuga Raja



Hi,

Any idea why the KeyDown event in the mx:Application Level is not trapped properly.
Here is the code snippet. Please find a detailed explanation of the problem in this chain of mails.

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml keyDown=keyEvt(event)

mx:Script
![CDATA[
 function keyEvt(event) {
 alert('Key Event Trapped');
 if( Key.isDown(112) ) {
  alert('F1 pressed');
 }
}
]]
/mx:Script
mx:Canvas width=550 height=200 backgroundColor=#0099FF
 mx:TextInput id=tBox x=177 y=44/
 mx:Button label=Hullo id=but x=227 y=86 /
/mx:Canvas
/mx:Application

Thanks  Warn Regards,
RajaOn 9/26/05, Abdul Qabiz [EMAIL PROTECTED] wrote:







You can not trap all function keys if your flex application 
is running in browser. There are various _javascript_ hacks, which cantrap 
keyboard shortcuts reserved by various browsers. But it is not pretty straight 
forward.

-abdul


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Shanmuga 
RajaSent: Monday, September 26, 2005 6:41 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] KeyDown event in 
mx:Application tag
Hi,I am trying to use KeyDown event in mx:Application level 
to trap Function Keys (F1,F2,etc.).I have the following 2 
problems:1. The KeyDown event does not get triggered the first time page 
is loaded, but after I click on the button the key events are triggered. I 
have attached event.mxml which has this problem. The same code works properly if 
I use mouseDown instead. The mouse events are triggered and trapped properly. 
Please help me out if I had done something wrong in this!2. I want to 
trap all the Function keys and override the default actions of the Browser. For 
example I want to Set focus to a textinput on click of F1 key. I am able to get 
handle to the function key event in the actionscript but the Windows Help page 
also loads in IE. Is there any way using Actionscripts to override this 
behaviour?Thanks  Warm Regards,Raja





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.
  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] remoteobjects

2005-09-27 Thread Husain Kitabi



Hi
What is the best way to create a remote object in an application. My application has viewstacks/accordions. And how to call that remoteobject in my delegate actionscript.

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





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] flex has watch?

2005-09-27 Thread Gordon Smith
no

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of andrehfraga
Sent: Monday, September 26, 2005 8:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex has watch?

hello,

flex has watch? I need make a app with wacth. If yes, send me a 
example?

bye.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] TextArea hit-testing

2005-09-27 Thread pkleppner
Is there any mechanism for converting between a TextArea character 
position and a pixel coordinate? That is, given character position n 
in a TextArea, how can I determine the pixel coordinates of that 
character? Or vice versa, given a pixel coordinate in a TextArea, is 
there any way to do a hit-test to determine which character it is over?

(If there's any information on doing this with a TextField object, 
that's equally helpful.)






 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Can someone read this please

2005-09-27 Thread Gordon Smith










Since I'm reading it, this is an example
of a message which proves its own falsity.



- Gordon











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, September 27, 2005
1:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Can someone
read this please





I am not able to post to the list
for some reason 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] flex has watch?

2005-09-27 Thread Gordon Smith
Flex has DateChooser and DateField controls for choosing a date, but it
doesn't have time controls, if that is what you need.

- Gordon


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Tuesday, September 27, 2005 3:16 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] flex has watch?

no

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of andrehfraga
Sent: Monday, September 26, 2005 8:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex has watch?

hello,

flex has watch? I need make a app with wacth. If yes, send me a 
example?

bye.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] flex has watch?

2005-09-27 Thread jeff tapper
Do you mean watch as in some form of time control, or watch, as in 
Object.watch() an actionScript method?  If the former, its not available, 
if the latter, sure, that should work

At 06:39 PM 9/27/2005, you wrote:
Flex has DateChooser and DateField controls for choosing a date, but it
doesn't have time controls, if that is what you need.

- Gordon


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Gordon Smith
Sent: Tuesday, September 27, 2005 3:16 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] flex has watch?

no

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of andrehfraga
Sent: Monday, September 26, 2005 8:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex has watch?

hello,

flex has watch? I need make a app with wacth. If yes, send me a
example?

bye.





--
Flexcoders Mailing List
FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txthttp://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comhttp://www.mail-archive.com/flexcoders%40yahoogroups.com
 

Yahoo! Groups Links










--
Flexcoders Mailing List
FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txthttp://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.comhttp://www.mail-archive.com/flexcoders%40yahoogroups.com
 

Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txthttp://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comhttp://www.mail-archive.com/flexcoders%40yahoogroups.com
 




SPONSORED LINKS
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQWeb
 
site design development 
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHwComputer
 
software development 
http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQSoftware
 
design and development
http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjwMacromedia
 
flex 
http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIwSoftware
 
development best practice


--
YAHOO! GROUPS LINKS

*  Visit your group 
 http://groups.yahoo.com/group/flexcodersflexcoders on the web.
*
*  To unsubscribe from this group, send an email to:
* 
 mailto:[EMAIL PROTECTED][EMAIL PROTECTED] 

*
*  Your use of Yahoo! Groups is subject to the 
 http://docs.yahoo.com/info/terms/Yahoo! Terms of Service.


--



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] pricing

2005-09-27 Thread Tracy Spratt
The last I heard, it was 30k for a four cpu license.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tomek Klas
Sent: Tuesday, September 27, 2005 7:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] pricing

hello,

can anyone tell me how much it cost to deploy? I can't find any  
pricing information on macromedia website, and I really need to know  
the figures.


thanx


Tomek

Tomek Klas

Phone: 
Fax: +44 (0)20 7025 5401
Website: www.WooGo.com
 
This message contains confidential information and is intended only for
[EMAIL PROTECTED] If you are not flexcoders@yahoogroups.com
you should not disseminate, distribute or copy this e-mail. Please
notify [EMAIL PROTECTED] immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive
late or incomplete, or contain viruses. The sender therefore does not
accept liability for any errors or omissions in the contents of this
message, which arise as a result of e-mail transmission. If verification
is required please request a hard-copy version. Any views or opinions
presented are solely those of the author and do not necessarily
represent those of the company.

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 







 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] pricing

2005-09-27 Thread Carson Hager
The 30K price is for North American customers.  I'm not certain but
given that you're in the UK, you could reasonably expect a 20-25%
increase due to VAT, etc.


Carson



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY ext. 89
Mobile: 1.703.489.6466
 
Take PowerBuilder to the Web with EAF 4.0
http://www.cynergysystems.com/public/products/eaf
 
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Tuesday, September 27, 2005 5:03 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] pricing

The last I heard, it was 30k for a four cpu license.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tomek Klas
Sent: Tuesday, September 27, 2005 7:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] pricing

hello,

can anyone tell me how much it cost to deploy? I can't find any pricing
information on macromedia website, and I really need to know the
figures.


thanx


Tomek

Tomek Klas

Phone: 
Fax: +44 (0)20 7025 5401
Website: www.WooGo.com
 
This message contains confidential information and is intended only for
[EMAIL PROTECTED] If you are not flexcoders@yahoogroups.com
you should not disseminate, distribute or copy this e-mail. Please
notify [EMAIL PROTECTED] immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive
late or incomplete, or contain viruses. The sender therefore does not
accept liability for any errors or omissions in the contents of this
message, which arise as a result of e-mail transmission. If verification
is required please request a hard-copy version. Any views or opinions
presented are solely those of the author and do not necessarily
represent those of the company.

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Need to invike java class method from mxml

2005-09-27 Thread Tracy Spratt
You will want to look into mx:RemoteObject.

Study up, and come back with any specific questions or issues.

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of indradapps
Sent: Tuesday, September 27, 2005 3:52 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Need to invike java class method from mxml

Hi everybody

I need to invoke de j class method from another mxml file.
For ex. A java class has a method called process (value) and it return 
de same value. I have to invoke dis process method from my mxml and 
get de value returned by dat method. could anybody has de answer for 
dis please help me..

Any idea or suggestion will be great.

_Dapps








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 







 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] remoteobjects

2005-09-27 Thread Tracy Spratt










Perhaps this example, based on the examples
in Flex Explorer, will help.

http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=18



Tracy











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Husain Kitabi
Sent: Tuesday, September 27, 2005
7:15 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
remoteobjects







Hi





What is the best way to create a remote object in an application. My
application has viewstacks/accordions. And how to call that remoteobject in my
delegate actionscript.











Regards





Husain 



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







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] flex has watch?

2005-09-27 Thread Tracy Spratt
If you mean an analog clock, check this out:
http://www.macromedia.com/devnet/flex/articles/creating_comp.html

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of andrehfraga
Sent: Monday, September 26, 2005 11:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex has watch?

hello,

flex has watch? I need make a app with wacth. If yes, send me a 
example?

bye.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 







 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] File upload: 'Browse' only working on localhost?

2005-09-27 Thread Carson Hager





What browser?

Can you post the code you're using to open the 
window?


Carson
  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com 
 Email: [EMAIL PROTECTED]Office: 866-CYNERGY ext. 
89Mobile: 1.703.489.6466  Take PowerBuilder to the Web with EAF 4.0http://www.cynergysystems.com/public/products/eaf 
  



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Stacy 
YoungSent: Tuesday, September 27, 2005 11:13 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] File upload: 'Browse' 
only working on localhost?



Strange problemwonder 
if theres some security limitation at play herewhen deploying my application 
locally I can browse and select a file to upload to me local server. When this 
application is deployed on a remote server and accessed from a remote clientI 
can no longer get flash player to pop the file browser window. Very 
odd

Any ideas 
appreciated!
Stace





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] TextArea hit-testing

2005-09-27 Thread Tracy Spratt
Perhaps this link might help:
http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI
D=251

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of pkleppner
Sent: Tuesday, September 27, 2005 9:14 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] TextArea hit-testing

Is there any mechanism for converting between a TextArea character 
position and a pixel coordinate? That is, given character position n 
in a TextArea, how can I determine the pixel coordinates of that 
character? Or vice versa, given a pixel coordinate in a TextArea, is 
there any way to do a hit-test to determine which character it is over?

(If there's any information on doing this with a TextField object, 
that's equally helpful.)







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 






 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Flex compilation bug

2005-09-27 Thread Eric Raymond
It is likely you are experiencing the dreaded NoChange Flex compiler
bug.  It is largely silent and affected by incremental compilation.

It is usually the result of some cyclic dependency between various
source files ... and the reference is via actionscript (embedded in
mxml or in a source .as file).

If you configure Flex to leave the generated actionscript files, you
can search for a listener with NoChange (I think?) in the .as files.

If you are using incremental compilation, the order in which you
change files can make this go away (and come back).  (So one ugly work
around is to delete and touch files in a certain order each time the
problem occurs).  The command line compiler always breaks (IMHO this
is better)  ... albeit silently.

The best way to fix this is to use mxmlc to compile the files and make
changes to your source until it is gone.  COmment out code until the
error disappears.

This has been acknowledged by Macromedia and it has been suggested
that it will be gone in 2.0 (translation: You are going to have to
deal with this yourself.).  And because this is really a problem at
the application level, it's not easy to send support a stripped down
test case (and once you gotten to that point, you've basically have
your solution).

Good luck.  This is not fun.


P.S.  Joe Berkovitz gave me the following excellent advice (this
thread is in the archive):

In short, turn on the keep-generated option in flex-config.xml, look in
the classname-generated.as files for the string NoChange.  If you
find it in the generated code for watcher setup, this is most likely
the compiler bug.  You could verify that it's the bug by touching the
affected files and doing an incremental recompile by re-requesting the
app, then comparing with the updated -generated.as files; they should
be different.

I worked around the problem by having the AS class which instantiates
the MXML component X also reference an MXML component (call it
XWrapper) which *includes* the component X by tag reference, binding
the broken properties to any value at all.

So, in your .as file (which presumably does createChild(X, ...) at some
point) you'd do this:

  static var XWrapperRef = XWrapper; //

and in XWrapper.mxml, the root components would be:

  X property1={undefined} property2={undefined}/

where X.mxml is the file in which bindings to property1, etc. are
broken.

Note that XWRapper is only referenced as a class, it is never
instantiated!  That's enough to change the compiler behavior.




--- In flexcoders@yahoogroups.com, superabe [EMAIL PROTECTED] wrote:
 Am facing a mystery bug that I can't seem to fathom. Hoping somebody
on the 
 list know's of a solution.
 The flex server is set to debug mode and the app uses the Cairngorm 
 Framework and the FAST toolkit.
 
 Basically what seems to happen is every time I restart my flex
server it 
 fails to recognize updates to certain components/renderers.
 
 
 For E.g.
 
 I have a number of custom components extending of the TitleWindow,
that are 
 instantiated using the PopupManager.
 These have certain components being used as renderers within a reeater
 
 mx:Repeater id=categoriesList dataProvider={planDetail.categories}
   
repeatEnd=initOptions(ModelLocator.cart.isPlanInCart(planDetail.id))
   popupRenderer:OptionsRenderer id=optionsRenderer
 categoryName={categoriesList.currentItem.categoryName} 
 options={categoriesList.currentItem.options}
 optionUpdate=updatePlanPrice()
   /popupRenderer:OptionsRenderer
 
 The popupRenderer namespace is pointed to 
 com.company.appName.view.productDisplay.renderers.*
 
 When I restart my flex server, the repeater works fine and show n
number 
 of OptionsRenderers, but fails to display the values for
categoryName and 
 options.
 Now if I open up the mxml file that contains the Repeater and add a
dummy 
 line of code, like (Echo.debug()), save it and refresh the browser, the 
 values show up and everything is fine.
 If I restart my flex server the same problem happens again.
 
 I initially thought this might be happening only for Popups or 
Repeaters, 
 but I have seen this also in cases where I have components that are not 
 being used in popups and are not in Repeaters
 
 Anybody have any ideas / suggestions?
 Any help is appreciated as this seems to be a flex bug and am not
sure how 
 to tackle this.
 
 Thanks,
 
 - superabe




 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe 

[flexcoders] setting effects to createChild()

2005-09-27 Thread Prasad Dhananjaya
Hi All,

Can someone tell me how to set 
effects(mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUpevents) to 
createChild().Below line is not working(and giving no compile errors). Checked 
several docs. But found nothing helpful.

var img=target.createChild(mx.controls.Image,, 
  {source:img23, x:9, y:2,
  mouseOverEffect:myZoom,
  mouseOver:popToTop(event.target), 
  mouseOverEffect:myZoom,
  mouseOut:restore(event.target),  
  mouseOutEffect:cut, 
  mouseUp:doubleClickDestroyChild(event)});


P.S.
What I want to do is to set effects to all createChild components
which are on the canvas.Is there any way to do this easily.

Thanks,
Prasad







 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/