[flexcoders] Anyone using the VSS plug-in - I have an important question for you

2007-05-19 Thread Mike Anderson
Hello there, I am desperately trying to find out who on this list is using the org.vss plug-in - which allows you to hook your Flex Source Code into Microsoft's Visual Source Safe database. After installing the Flex Component for Flash CS3, the plug-in no longer wants to load. I tried looking

[flexcoders] Re: WebService sending dynamic XML - problem

2007-05-19 Thread discipl4
Nate, Thanks again for the reply. I was AFK a few days myself, I see you are afk too, hopefully doing something cool! Its not so much that I want to pass N number of people.. I actually only want to pass 1 person at a time with each call. Its actually that a person might have N number of tags

[flexcoders] Re: WebService in AS

2007-05-19 Thread hugocorept
Hey thanks for the Help, that really light me! So, i write something like this.. [Bindable] public var webService:WebService; public function wsHelloWorld():void{

[flexcoders] External xml help

2007-05-19 Thread fxe162
I have an external xml named scratch.xspf : ?xml version=1.0 encoding=UTF-8? playlist trackList track location/songs/Led Zeppelin II/The Lemon Song.mp3/location creatorLed Zeppelin/creator albumLed Zeppelin II/album titleThe Lemon Song/title image/covers/Led

RE: [flexcoders] TileList itemRenderer resize

2007-05-19 Thread Alex Harui
Is it possible you set explicit rowHeight and columnWidth? commitProperties() should get called followed by makeRowsAndColumn. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Grace Sent: Friday, May 18, 2007 2:22 PM To:

RE: [flexcoders] Re: e4x problem

2007-05-19 Thread Tracy Spratt
Search the docs for XML Namespace, or see this page: http://livedocs.adobe.com/flex/201/html/13_Working_with_XML_169_09.html Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of quinrou Sent: Thursday, May 17, 2007 6:10 PM To:

[flexcoders] external xml help

2007-05-19 Thread fxe162
I have an external xml named scratch.xspf : ?xml version=1.0 encoding=UTF-8? playlist trackList track location/songs/Led Zeppelin II/The Lemon Song.mp3/location creatorLed Zeppelin/creator albumLed Zeppelin II/album titleThe Lemon Song/title image/covers/Led

[flexcoders] Re: Printing from Flex

2007-05-19 Thread jjkruse
Easiest way is to create a custom component representing the page you want to print. Example code, using component called ChartsPrint: public function print2():void{ var printJob:FlexPrintJob=new FlexPrintJob(); if(printJob.start()){

Re: [flexcoders] Flex cookbook article: Flex2 XML Reader Can Create UIComponents

2007-05-19 Thread Igor Costa
Run time XML to define new MXML and complied SWF? No way man, I simplify agree with Ely, what´s the real impact of such request for the customers, Remeber that Flex is for Best User Experience. Wanna some dynamic content to be loaded or created into other componentes or application, Use for

[flexcoders] accordion initialization

2007-05-19 Thread li.wen
Hello all, For accordion component, its views do not need to initialize when they are switched to. However, what can I do if I want to initial those views which are not switched to? Regards, Joe

Re: [flexcoders] Having really tough time with Data Services [EMAIL PROTECTED]!!

2007-05-19 Thread Robert Cadena
Hi Anthony, Binding works one way. You need to explicitly set the value of the item to the textInput field's value. here's some pseudocode: public var item:Item; mx:TextInput id=ti text={item.name} / ... var item:Item = ds.getItem(); ...[later] private function handleSubmitClick():void {

[flexcoders] Re: accordion initialization

2007-05-19 Thread Oliver Merk
Hi Joe, Set creationPolicy=all on the Accordian. Good luck, Oliver --- In flexcoders@yahoogroups.com, li.wen [EMAIL PROTECTED] wrote: Hello all, For accordion component, its views do not need to initialize when they are switched to. However, what can I do if I want to initial those views

Re: [flexcoders] Re: DataGrid dynamic toolTips or dataTips

2007-05-19 Thread Robert Cadena
Hi James, if you wait for a result in a while loop and the server takes a long time to return the value then your interface will lock up. you can do something like the following instead: public function myDataTipFunction(e:HitData):String { // listen for result of tooltip data call

Re: [flexcoders] external xml help

2007-05-19 Thread Robert Cadena
Hi fxeOneSixTwo, in your code below you do not wait for the URLLoader to load the data. You have to add an Event.COMPLETE listener and then handle the xml data. I took your code and reworked it a bit. here's what i came up with: import mx.rpc.soap.LoadEvent; public

[flexcoders] Component popup

2007-05-19 Thread Manolet Gmail
Hi! im just starting to learn flex! i was looking for solve this on google since yesterday but just cant found anything... i made a custom component (mxml file) with a login and password text field and a send button. now i want to do a function to show components like that on a popup and call

[flexcoders] How do I add dynamic content to an ApplicationControlBar ?

2007-05-19 Thread Michel Scoz
Hi all... I have the following code in my application... mx:ApplicationControlBar width=98% height=35 fillColors=[#f3f3f3, #ff] fillAlphas=[1.0, 1.0] id=ac_history mx:Label text=history:/ mx:LinkButton id=home label=HOME/ /mx:ApplicationControlBar I was wondering if it is possible

[flexcoders] Re: accordion initialization

2007-05-19 Thread asherritt9
--- In flexcoders@yahoogroups.com, li.wen [EMAIL PROTECTED] wrote: Hello all, For accordion component, its views do not need to initialize when they are switched to. However, what can I do if I want to initial those views which are not switched to? Regards, Joe You need to change the

[flexcoders] Re: external xml help

2007-05-19 Thread fxe162
Thanks Robert ! Works great. Tom

[flexcoders] flexunit and mxml components

2007-05-19 Thread Jedi_92
I'm attempting to write Flexunit test cases to test some mxml components I've written. I've gotten addAsync to work for testing that creationCompoete happens but further events simply aren't being fired on the component no matter what I do. Are there any howtos or best practices out there for how

[flexcoders] Re: tightening between multiple lines in a mx:text object *SOLVED*

2007-05-19 Thread jpc14_99
You're probably looking for the leading style which in Flash/Flex is defined as Additional vertical space between lines of text. Perfect! I had to drop it all the way down to -15: myText.setStyle('leading',-15); to get it really tightened, but it works. Thanks so much!

[flexcoders] Re: Skinning...

2007-05-19 Thread herklano
hi, i think these 2 sites that can give you some help on skining flex: http://www.scalenine.com/ http://onreflexion.blogspot.com/2007/01/napkin-skins-in-flex_24.html the second one is a really great example. hope it helps, Herculano Campos --- In flexcoders@yahoogroups.com, Scott Barnes

RE: [flexcoders] Component popup

2007-05-19 Thread Alex Harui
WHATGOESHERE == IFlexDisplayObject You probably need to import mx.core.IFlexDisplayObject too From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manolet Gmail Sent: Saturday, May 19, 2007 11:50 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-19 Thread Alex Harui
Should be fixed in the latest hotfix. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy A. Binford Sent: Friday, May 18, 2007 10:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Vertial Scroll Issue with Using Date Field

[flexcoders] how to add different skins to each button in a Buttonbar?

2007-05-19 Thread arpan srivastava
Hi All, I have two buttons in a buttonbar, and in one button I have to make a triangle in upward direction and in other a triangle in downward direction to show up and down direction. var a:Array = new Array(); var temp:Object = new Object();