[flexcoders] Re: remove border in a list ---make the border of the list invisible

2010-07-12 Thread sminrana
borderAlpha=0 --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote: Hello I wouldn't like to display the border of a list mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=false editable=false/ What attribut can i add it to do this

[flexcoders] Re: remove border in a list ---make the border of the list invisible

2010-07-12 Thread sminrana
borderAlpha = 0 --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote: Hello I wouldn't like to display the border of a list mx:List id=listFileUpload rowCount=1 height=45 x=10 y=72 width=289 visible=false editable=false/ What attribut can i add it to do

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-20 Thread sminrana
return the xml as a string from PHP file and cast that return string in flex like this var xml:XML = XML(data.result); then do whatever it needs like XMLList and XMLListCollection; then is the resultEvent you can check like this if (data.result != ) { xml:XML = XML(data.result); } else {

[flexcoders] Re: What is the best Way - Multiple DataProvider's or one?

2010-04-20 Thread sminrana
Can you show your code? --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: As usual, it depends. If your data is small enough and static enough, get it all at once and avoid the inherent latency of remote data retrieval entirely. But rarely is data retrieval or

[flexcoders] Re: Draw three rectangles inside a canvas -----URGENT PLEASE

2010-04-20 Thread sminrana
If you dont have any options except Canvas and Panel (you can do it easily with Group spark component) then you can override createChildren() method in Canvas or Panel and as many rect you need with adding a new sprite in createChildren and update graphics it in updateDisplayList() mx:Canvas

[flexcoders] Re: TitleWindow.title won't update from a setter

2010-04-20 Thread sminrana
Hi If i understood when you close the popup it destroy all it's properties, that's why its not happening as you wanted. i dont think in this case you can't do with setter. --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi, I've got a small MXML Component based on

[flexcoders] Re: Swap Data Provider with a combo

2009-05-24 Thread sminrana
here tileListDataProvider is a tilelist which gets data from MySql and categoryCombo is combobox which also gets data from MySql look filter image function where it is return new xmlList ..and item.(category == categoryCombo.selectedLabel) put your login in the bracket i used mine when combo

[flexcoders] Re: Swap Data Provider with a combo

2009-05-24 Thread sminrana
here tileListDataProvider is a tilelist which gets data from MySql and categoryCombo is combobox which also gets data from MySql look filter image function where it is return new xmlList ..and item.(category == categoryCombo.selectedLabel) put your login in the bracket i used mine when combo

[flexcoders] ItemRenderer Help

2009-05-18 Thread sminrana
How can i get TileList itemRenderer properties i use image Now i want to increase/decrease image width/height for zooming capability on selectedItem .. Have any idea Smin Rana

[flexcoders] Re: Question on Mx:HTTP Service

2009-05-18 Thread sminrana
also you can have those flashvars in your Flex application like var str : String = Application.application.parameters.flashvars(name); /***/ AC_FL_RunContent( src, playerProductInstall, FlashVars, PUT YOUR VAR

[flexcoders] Re: How to find all Installed browsers information in Windows?

2009-05-18 Thread sminrana
Try with Flex External interface, call JavaScript function from inside Flex

[flexcoders] Re: Form validation before submitting...

2009-05-18 Thread sminrana
first you trying to use numChildren as a method but it is not it is a property which return int value and it is read-only so remove the () in the loop second what is errorString ???

[flexcoders] Re: Flex to excel sheet report

2009-05-18 Thread sminrana
the current flash player version will not allow you write data into client application so if you want to write something in client application you must have server side script...

[flexcoders] Re: Question on Mx:HTTP Service

2009-05-17 Thread sminrana
--- In flexcoders@yahoogroups.com, myworld100us myworld10...@... wrote: I am using an app Server{Jboss] to host Flex files . I want to call mx:HTTPService id=reportProfile resultFormat=e4x useProxy=false result=showReports(event)

[flexcoders] Clickable Rating image in Flex Builder 3

2009-05-15 Thread sminrana
Hello few days ago i had to make a components , therefore user can rate a service on guitar learning application , i am attaching the source code hope you will get help with your purposeĀ…it is a HBox Components used in main application i am not providing the main application source file :( ,