[flexcoders] Sample of carousel menu navigation with button.

2009-06-15 Thread Krunal Panchal
Hi All, Following is my carousel menu. Menu Bar   Prev_btn       Btn_Home    Btn_Process    Btn_Advance    Next_btn ---

[flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread gwangdesign
> Please feel free to file bugs for either/both issues at > http://bugs.adobe.com/flex/. Hi Peter, I filed a bug on spark textinput. Someone else has filed one on mx:TextInput (https://bugs.adobe.com/jira/browse/SDK-21617) and provided a workaround which is similar to the "callLater" one you

[flexcoders] Re: how can I get a popupButton's popUp to resize while popped up?

2009-06-15 Thread Tim Hoff
Hi Jason, Put this at the end of addCategory(): myPopupButton.popUp.scrollRect = new Rectangle(0, 0, myPopupButton.popUp.width, myPopupButton.popUp.height + 30); Add an id: This will trick the popup into redrawing. -TH --- In flexcoders@yahoogroups.com, Pan Troglodytes wrote: > > Okay, so

[flexcoders] Keydown and IE

2009-06-15 Thread flexaustin
Does anyone happen to know how to shut off keydown events in Javascript if my swf has focus? FF works fine, but I can't seem to shut onkeypress or onkeydown events off? Ideally I would like the onkeydown events to not be heard by window or document if the swf has focus be hear them if the swf d

[flexcoders] Modules - Just can't get it right when it comes to width and height

2009-06-15 Thread djhatrick
I have non-modal module in a layout container... in a canvas, my app is big, it expands vertically, unfortunately, there's this cut off - of invisibility where the module is hidden... and I can't figure out for the life of me make this module box be as big as the stage... Believe me, I've tried

Re: [flexcoders] Tooltip anchoring in Flex

2009-06-15 Thread Aaron Hardy
I think I understand what you're asking, but I might miss. Have you tried making your lnotification component and then just popping it up using PopUpManager? As far as I'm aware, anything that's popped up with PopUpManager shouldn't move when the user scrolls, resizes the browser, etc. You c

[flexcoders] Dynamic linkbutton icon and embed?

2009-06-15 Thread flexaustin
Wondering if anyone has ever done an a dynamic @Embed for the icon of Linkbutton used as an itemrenderer in a DataGrid (DatagridColumn)?

RE: [flexcoders] Re: Datagrid non-editable but want to tab between columns

2009-06-15 Thread Alex Harui
That would be highly difficult. Requires overriding keyFocusChange event and doing a bunch of work. ADG does have per-cell selection I think. Did you try that? Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogr

Re: [flexcoders] AVI video viewer

2009-06-15 Thread Mondain
You could always use Xuggle and Red5to transcode your files on-the-fly to flv or h.264/aac. Paul On Mon, Jun 15, 2009 at 6:59 AM, christophe_jacquelin < christophe_jacque...@yahoo.fr> wrote: > > > Hello, > > I am searching an AVI video file

[flexcoders] how can I get a popupButton's popUp to resize while popped up?

2009-06-15 Thread Pan Troglodytes
Okay, so given the following application: http://www.adobe.com/2006/mxml"; >

RE: [flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread Peter DeHaan
This seems to work for the Spark TextInput control (although, you're right, I do see that it is removing the blinking text insertion cursor - but the TextInput control still has focus and allows me to type): http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spa

Re: [flexcoders] Re: Generate sample request from WSDL

2009-06-15 Thread Everson Alves
Thanks Steve, But it's not that easy, in php I used built-in soap extension, loaded the wsdl file, used reflection to build the request parameters since I had the source classes of the parameters, changed the endpoint to something that doesn't exist so I could make a call, catch the exception and g

[flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread gwangdesign
--- In flexcoders@yahoogroups.com, "valdhor" wrote: > > This works for me (I am using Flex 3.3 with Flash Player 9.0.159) > > If this is not a player or Gumbo issue, I would look at other things > happening after the enter event. > > What happens with a small test case? Steve, Thanks for the l

[flexcoders] Re: Generate sample request from WSDL

2009-06-15 Thread valdhor
I don't know of anything. I would be inclined to read in the WSDL as a text string and then parse that rather than use the built in web service functions. If you have already done it in PHP, then it should be relatively easy. Steve --- In flexcoders@yahoogroups.com, Everson Alves wrote: > >

[flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread valdhor
This works for me (I am using Flex 3.3 with Flash Player 9.0.159) If this is not a player or Gumbo issue, I would look at other things happening after the enter event. What happens with a small test case? --- In flexcoders@yahoogroups.com, "gwangdesign" wrote: > > > Try... > > > > (event.tar

Re: [flexcoders] How to check the itemRender change?

2009-06-15 Thread Jeffry Houser
It depends how you define "Change". A lot of things can cause change. If you want to know the data changes, look at the dataChange event. markflex2007 wrote: > Hi, > > I have a checkbox itemRender in datagrid. I want to know if the itemRender > changed.which event I can use to do that. > >

[flexcoders] styles for different versions of the same component?

2009-06-15 Thread Nate Pearson
I'm dynamically adding components to an app but I want different styles on each component. What's the best way to do this besides manually setting the styleName property on each element that I want styled? I know flex 4 allows for decendents like .componentOne Button and .componentTwo Button b

[flexcoders] checkBox event

2009-06-15 Thread markflex2007
Hi, I use the follow, I can get the data before it changed this.addEventListener(MouseEvent.CLICK , onChnage); which event the checkbox will send out after it changed so I can get the updated value. Thanks

[flexcoders] Re: Datagrid non-editable but want to tab between columns

2009-06-15 Thread flexcoder2008
bump --- In flexcoders@yahoogroups.com, "flexcoder2008" wrote: > > I have a datagrid that has some columns formatted using item renderers. I > want to enable keyboard navigation so the user can tab across the columns. I > know that this behaviour is built in to the datagrid if the editable pr

[flexcoders] Pb with swfLoader

2009-06-15 Thread christophe_jacquelin
Hello, I use swfLoader with a Tree to view a serie of videos. For viewing the first videos it is OK, but after some videos, the video (frame rate) speed is going too fast. Thank you, Christophe,

[flexcoders] How to check the itemRender change?

2009-06-15 Thread markflex2007
Hi, I have a checkbox itemRender in datagrid. I want to know if the itemRender changed.which event I can use to do that. I use "change" but it doesn't work.Please help me Thanks Mark

[flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread gwangdesign
> Try... > > (event.target as TextInput).text = ""; > > (event.target as TextInput).setFocus(); > Steve, Thanks for the lead. Unfortunately, it doesn't work, either for the Gumbo or Halo component. For mx:TextInput: The text never gets cleared out after user presses the enter key; For s:Tex

[flexcoders] Tooltip anchoring in Flex

2009-06-15 Thread creativepragmatic
Hello Everyone, I want to create a notification icon like the the red one in the bottom right-hand corner of Facebook. I tried using a ToolTipManager to create a tooltip but since Tooltips appear in their own layer in Flex and, as far as I am able to figure, cannot be anchored to any part of t

Re: [flexcoders] Re: Drag Drop - maually show red cross or green plus icon

2009-06-15 Thread joss
If you look at the last example in the drag and drop examples and muck about with that you can edit the conditions on teh event handler and if you wish edit when the event is called and you should be able to get something working with the cursor. I just had a quick mess about with it and can

[flexcoders] Re: Drag Drop - maually show red cross or green plus icon

2009-06-15 Thread bhaq1972
Its actually for the cursor feedback ...and i'm not getting much lick with the showfeedback method. thanks anyway bod --- In flexcoders@yahoogroups.com, "jossminker" wrote: > > From your message i take it you mean you want to change the drag proxy image > (for something you are already draggin

Re: [flexcoders] AVI video viewer

2009-06-15 Thread Cole Joplin
Christophe, At my work, we have an issue of a minority of customers wanting to keep their "legacy" video formats going, namely, MPEG2. For this, we have an older solution for them. While AVI (VC-1) is technically Microsoft's preferred format, MPG4 (h.264) is the current industry standard. Even

[flexcoders] Re: Executing Eventgenerator Multipule times

2009-06-15 Thread jerry_gagliano
Does anyone know this solution? --- In flexcoders@yahoogroups.com, "jerry_gagliano" wrote: > > Hi, > > I am having a problem with executing the event generator multiple times using > the UM Caringrom Ext. What I do first execute the eventgenerator then once > all the events are execute I load t

[flexcoders] Re: Drag Drop - maually show red cross or green plus icon

2009-06-15 Thread jossminker
>From your message i take it you mean you want to change the drag proxy image >(for something you are already dragging) and not the cursor? in this case you need to look at DragSource. something like this: var dragInitiator:Image=Image(event.currentTarget); var ds:DragSource = new

[flexcoders] Re: Generate sample request from WSDL

2009-06-15 Thread Everson Alves
There's a tool written in Java called soapUI that does exactly what I'm trying to do. I don't want to generate lots of classes that abstracts the web service from wsdl, I want the generation of raw xml request. I tried google, reading the documentation, testing as3 webservices api with no luck. Any

[flexcoders] AVI video viewer

2009-06-15 Thread christophe_jacquelin
Hello, I am searching an AVI video file viewer in Flex (not Flv or Swf videos). Thank you, Christophe

[flexcoders] Re: Clear user text after "enter" on TextInput (gumbo and/or moxie)

2009-06-15 Thread valdhor
Try... (event.target as TextInput).text = ""; (event.target as TextInput).setFocus(); HTH Steve --- In flexcoders@yahoogroups.com, "gwangdesign" wrote: > > Hello, > > I have a TextInput, say, for user to type in to search something. After the > user presses enter Key, I want the TextInp

[flexcoders] Re: amfphp and https

2009-06-15 Thread valdhor
Christophe All I can recommend is changing over to WebORB for PHP. WebORB is known to work with SSL. HTH Steve --- In flexcoders@yahoogroups.com, "christophe_jacquelin" wrote: > > Hello, > > Amfphp does not work when I use https. > > I have set SecureAMFChannel. > > I have tested on p

[flexcoders] map function on image/loader?

2009-06-15 Thread grimmwerks
I could be nuts but I'm trying to track down if there's a map function in BitmapAsset or Loader; I'm trying to code a pan/zoom component with a small display of where the large visual of the image is showing (ie google maps and the like) -- and I could've sworn there was an automatic map fu

[flexcoders] Re: loosing hierarchy when activating a renderer

2009-06-15 Thread garfild190
To be more specific, In the hierarchy column, the arrows for opening and closing parents disappeard, and the parents and children are one under each other. thanks --- In flexcoders@yahoogroups.com, "garfild190" wrote: > > Hi, > I have a tree table using AdvancedDataGrid. > If I use a renderer f

[flexcoders] loosing hierarchy when activating a renderer

2009-06-15 Thread garfild190
Hi, I have a tree table using AdvancedDataGrid. If I use a renderer for my hierarchical column using override set data override get data I loose the hierarchy and get a flat data :( How can I use a renderer for that column without loosing the hierarchy? What function should I override in order to

[flexcoders] FXG: Rect radiusX, radiusY

2009-06-15 Thread florian.salihovic
I'm currently making my first steps with FXG. I really like the idea of using Illustrator for doing the graphical stuff and using the FXG markup in Flex. What i stumbled across was the generation of rects with rounded rounded corners. Why is Illustrator exporting a complex path? It's pretty hard