[flexcoders] Flicker with showEffect and hideEffect

2006-10-29 Thread dorkie dork from dorktown
I don't think this is a bug. I think I'm doing something wrong. But in this example you can see a flicker when you use the showEffect and the hideEffect.When you go from one tab to the other the controls are shown briefly and then the showEffect starts. ?xml version=1.0

Re: [flexcoders] Re: Hi there

2006-10-29 Thread Jaga
Hi Tim,Thanx for ur reply, I tried that and i coudnt control the size of the menu bar, i tried placing the menu bar, a input text and then a button. the button is going beyond the control bar. is there any way to control the size of the application control bar so that it fits all the three?thanx

Re: [flexcoders] Hi there

2006-10-29 Thread Jaga
thanx for your reply...and then i want to know how to use the htmlText property inside the mx:Text tag...i would be grateful if you could send me some examples. i tried searching in the url which you sent me, but i couldnt find any i just want to know how to place the components inside the

[flexcoders] Re: how do i access properties of a component inside a repeater?

2006-10-29 Thread shemeshkale
so, if i want to change all items size inside a repeater i would go: private function changeSize():void{ for(var i:Number = 0;ibtn1.length;i++){ btn1[i].height = slider1.value; btn1[i].width = slider1.value; } } ??? i thought there is an easier way. something like :

[flexcoders] Re: Flex Tab order

2006-10-29 Thread gur_sukh
when we tab in a flex application after the last component the flex goes to InternetExplorer and not on the first item in the application. i.e it leaves the flex application and goes to IE status bar, address bar and then comes to the first component. I don't want the tab to leave the flex

[flexcoders] Re: Flex Tab order

2006-10-29 Thread gur_sukh
when we tab in a flex application after the last component the flex goes to InternetExplorer and not on the first item in the application. i.e it leaves the flex application and goes to IE status bar, address bar and then comes to the first component. I don't want the tab to leave the flex

[flexcoders] Cairngorm 2.1 problem

2006-10-29 Thread Paolo Bernardini
after copying the 2.1 version of cairngorm.swc on my project the application stoped working, basically it dosen't call any services, I then try to change all the deprecated classes and methods to the new raccomanded standards, I don't get any errors but still no service has been called. I

Re: [flexcoders] Re: Flex Tab order

2006-10-29 Thread Muzak
http://www.adobe.com/cfusion/search/index.cfm?loc=en_usterm=seamless+tabbing http://www.google.com/search?hl=enq=flash+seamless+tabbing+meta= param name=SeamlessTabbing value=false/ regards, Muzak - Original Message - From: gur_sukh [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

RE: [flexcoders] Configure what is copied to bin?

2006-10-29 Thread Sönke Rohde
Hi Igor, I already saw the "Copy non-embedded files to output directory"-flag but that's not exact what I was looking for. I need the feature that resources are copied to bin but I would like to configure which of them. Often I have documentation andlayoutin my project which sould not be

[flexcoders] Flex Developer seeked for expert help

2006-10-29 Thread Pascal Schrafl
Hi all, I'm seeking for a Flex 2 Developer, who could assist me in developing a small application (video player for youtube with some zinc functions, I just need to get that video displayed at the moment). I assume, that I would need about 2 hours of dedicated time. I seeking for an expert to

[flexcoders] Data in ViewStack Component

2006-10-29 Thread pioplacz
I have a question about how to bind data in a viewstack component. How can i make my ArrayCollection to work in the viewstack component? Here is my code... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute horizontalAlign=center

[flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-29 Thread cdhbookingedge
Yeah it's surely not the prettiest thing, kinda klugey. LOL If it was in C# or C++ I'd break out Spy++ and see what WM_XXX messages were being passed about but LOL I'm not in that land any more. It sucks that they don't pass thru the mouseup when it's a context menu. I'm not even sure they

[flexcoders] creating charts with AS

2006-10-29 Thread arnold_charming
Hi! I'm trying to create a chart with AS. Because data is supplied from database, the number of LineSeries is not known every time. Becuase of that, I have to make variables dynamic. Look below: var b:Array = new Array(Epsenses,Amount,Profit);

[flexcoders] Re: Data in ViewStack Component

2006-10-29 Thread Michael Labriola
Can you explain more about what you are trying to do? I see that you have 3 arrayCollections. Only 1 of them seems to be used in the code, and, in that one, you are only using the length property. Please provide details about what you are trying to accomplish. Thanks, --Mike --- In

[flexcoders] How do i unload a swf after selecting a next one?

2006-10-29 Thread tonyx_788
what i'm trying to do is to have a code to unload the swf automatically after i select another on. this swf's are load via xml when i select another one it just loads the new one and keeps playing the other one until it finishes. i can make a code to stop via a button but what if the users

[flexcoders] Re: Data in ViewStack Component

2006-10-29 Thread pioplacz
If you look at my ViewStack code i have a component name TvView. That is a MXML file with a horizontalList and for that list i wan the epCollection to be a dataprovider. With simpel words what i'm trying to do is to make epCollection result to work in a diffrent MXML file. Is is a better

[flexcoders] Unzip On The Fly With AS3

2006-10-29 Thread John Kirby
Title: quote I came across this very cool Unzip framework for ActionScript 3 http://codeazur.com.br/lab/fzip .j -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Data in ViewStack Component

2006-10-29 Thread Michael Labriola
Okay, So, a few things: #1) your TvView component must have either a property or a getter/setter method to hold the data from the collection. So, for example, you might have a bindable public property inside of TvView called [Bindable] var myDataProvider:ArrayCollection; Then inside of the

[flexcoders] Explination Wanted - History Management code

2006-10-29 Thread dorkie dork from dorktown
I have read the documentation on the HistoryManager and it seems overkill. What I want is very simple. When I click a button to go to the next screen I want to save the current state. Then if I hit the back button I will go back to the previous screen. mx:Button label=Change to State Two

Re: [flexcoders] Convert Object to a Value Object

2006-10-29 Thread Darron J. Schall
Originally it was written so that JSON behaved more like RemoteObject (returning class instances from the server instead of just plain objects), but the method is generic enough to be useful in a lot of situations. Hope that helps... -d mvbaffa wrote: - Type Coercion failed:

Re: [flexcoders] Convert Object to a Value Object

2006-10-29 Thread Darron J. Schall
Interesting, Yahoo garbled most of the content of that message. Here's what I actually sent: For those having trouble converting generic objects into class instances (Value Objects), I've created an ObjectTranslator.objectToInstance method to take care of the problem:

[flexcoders] Changing mx:Application's width during runtime

2006-10-29 Thread pilby1
When I run my application where mx:Application's width is 640x480, by default, it shows a gradient blue square depicting those screen dimensions. I then try to dynamically change the width to 1024 in actionscript when a button is clicked. I had trace'd the application width after changing it,

Re: [flexcoders] Changing mx:Application's width during runtime

2006-10-29 Thread Brian Dunphy
Not sure if you are using the standalone player or a browser, but if the application is within an HTML page (i.e. an object tag is loading the SWF in), then that HTML page would have control over the width of that element. You may need to use _javascript_ and ExternalInterface to change the

[flexcoders] The Flexifier is live

2006-10-29 Thread David Mendels
Hello all, One less barrier to everyone trying out Flex: http://www.onflex.org/ted/2006/10/flexifier-is-live.php No need now to even download the SDK or Flex Builder to start writing code and seeing how it workspass it around: http://try.flex.org/ -David Adobe -- Flexcoders Mailing List

[flexcoders] Re: Convert Object to a Value Object

2006-10-29 Thread Michael Labriola
nicely done --- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: Interesting, Yahoo garbled most of the content of that message. Here's what I actually sent: For those having trouble converting generic objects into class instances (Value Objects), I've created

[flexcoders] Re: Changing mx:Application's width during runtime

2006-10-29 Thread Michael Labriola
I know this is not actually the answer to the question, however, is it necessary to specifically set the width and height to literals, or could they just be set to 100%? --Mike --- In flexcoders@yahoogroups.com, pilby1 [EMAIL PROTECTED] wrote: When I run my application where mx:Application's

[flexcoders] Re: Data in ViewStack Component

2006-10-29 Thread pioplacz
Yes, that makes sense! Really Thanks for the help! --- In flexcoders@yahoogroups.com, Michael Labriola [EMAIL PROTECTED] wrote: Okay, So, a few things: #1) your TvView component must have either a property or a getter/setter method to hold the data from the collection. So, for

[flexcoders] Re: Flex Tab order

2006-10-29 Thread e_baggg
In the last text box, add a function for the focusOut handler that manually sets the focus back to the first box (or button). --- In flexcoders@yahoogroups.com, gur_sukh [EMAIL PROTECTED] wrote: Hi, In flex i have vbox with 4 TextInputs. when we tab through them after the last input the

[flexcoders] Need some help making RichTextEditor a dropTarget...

2006-10-29 Thread iko_knyphausen
I am trying to make the TextArea of the RTF control a dropTarget for list items dragged from a list. Now for the source it seems easy enough (dragEnabled = true). Of course the RTF Control does not have a dropEnabled property like list based controls. I implemented a handler for the dragEnter

[flexcoders] a ghost function

2006-10-29 Thread Luis Eduardo
while i was looking on documentations i found a strange thing. on validator class ( http://livedocs.macromedia.com/flex/2/langref/mx/validators/Validator.html ) it clearly show us a function called validateAll. when u go inside the Validator class, on the Validator.as file, u really

[flexcoders] The Flexifier is live

2006-10-29 Thread Bjorn Schultheiss
Very cool, Have you guys seen FLEXible yet? http://www.osflash.org/flexible From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels Sent: Monday, 30 October 2006 11:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] The Flexifier is

[flexcoders] Cairngorm 2.1 problem

2006-10-29 Thread Bjorn Schultheiss
Have you implemented the new DestinationLocator? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paolo Bernardini Sent: Sunday, 29 October 2006 8:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm 2.1 problem after copying the

[flexcoders] Re: Flex 2 limitations vs. raw Flash 8 Prof? - STAY AWAY FROM F9 Preview

2006-10-29 Thread fuad_kamal
OK, anything nice I said in the past about the Flash 9 Preview - I take it back. We can't even generate basic components like a TextArea in the Preview. I would have thought that with the availability of the Flex SDK you could tap into the flex components...but no go on that, either. Quite

Re: [flexcoders] The Flexifier is live

2006-10-29 Thread Igor Costa
Yep,But John still working on it to be fitted.On 10/30/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Very cool, Have you guys seen FLEXible yet? http://www.osflash.org/flexible From: [EMAIL PROTECTED] ups.com

Re: [flexcoders] Changing mx:Application's width during runtime

2006-10-29 Thread Igor Costa
PilThe problem it's that Flex changed your Application width size at run time, but also, when you tested in the browser it's still at same time due to the HTML it's still with Application width fixed.So, How to change that? Open your html-template base and change the _javascript_ in there, to