[flexcoders] Upload image to an image gallery

2009-03-08 Thread christophe_jacquelin
Hello, I want to upload image, and then to put this image in a galley. Do you have any ideas or examples ? Thank you, Christophe,

[flexcoders] move component over text

2009-03-08 Thread stinasius
hi guys how do i move a box component over a text when i rollover the text?

[flexcoders] possibility of opening a web page in a flex application

2009-03-08 Thread stinasius
is it possible to open web page for example(http://www.mtv.com/news/articles/1606473/20090306/rihanna.jhtml) in a flex application let's say inside a flex canvas component?

Re: [flexcoders] possibility of opening a web page in a flex application

2009-03-08 Thread Brendan Meutzner
Do some searches in the list here for iFrame use within Flex... it's possible via ExternalInterface javascript by telling the browser to place an iFrame instance at the same coordinates as the canvas position. It's not pretty, but it works (mostly...) :-) Brendan On Sun, Mar 8, 2009 at 5:30

Re: [flexcoders] move component over text

2009-03-08 Thread Brendan Meutzner
toolTip=blah On Sun, Mar 8, 2009 at 3:44 AM, stinasius stinas...@yahoo.com wrote: hi guys how do i move a box component over a text when i rollover the text? -- Brendan Meutzner http://www.meutzner.com/blog/ http://www.riajobs.com

Re: [flexcoders] Upload image to an image gallery

2009-03-08 Thread Brendan Meutzner
Didn't this question just get posted a few days ago? On Sun, Mar 8, 2009 at 3:02 AM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, I want to upload image, and then to put this image in a galley. Do you have any ideas or examples ? Thank you, Christophe, --

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-08 Thread Amy
--- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Thanks Amy for your help, I'm going your way:), only one question if i may, Is it possible to activate ItemRenderer on my columns after fetching childrens from my RemoteObject? How do I do that based on your example? I

[flexcoders] Datagrid : mouse over item

2009-03-08 Thread secrit.service
Hi everyone, I have a datagrid. If I mouseclick on a row, I can retrieve this record by using selectedItem. However, when I move my mouse over the datagrid (without clicking) the rows also change color. Is there any way to retrieve the record where my mouse is pointing at. Meaning is to show a

[flexcoders] importing and dynamically creating objects

2009-03-08 Thread Wally Kolcz
I am trying to create a quizzer when the questions are in components. I want to import the component and add it to the stage based on the question that next and the quiz they are taking. If they load test 1 i need it to: import com.ipexpert.test.1.question1; var currentQuestion:question1 = new

[flexcoders] Debugging Event Bubbling

2009-03-08 Thread valkyrie77
Hi Folks, I'm currently working on a twitter AIR client using the twitterscript AS3 library and having some issues with bubbling custom events that are created by nested classses back to the main application. I've architected so that the main application (A) spawns a new timeline window (B)

RE: [flexcoders] Debugging Event Bubbling

2009-03-08 Thread Tracy Spratt
Bubbling works generally. Simplify until it does, then re-add your complexity til it breaks. _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valkyrie77 Sent: Sunday, March 08, 2009 1:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] importing and dynamically creating objects

2009-03-08 Thread Tracy Spratt
Do I understand that you have a different class for every question? That sounds like a bad idea. I am sure import is a compile time only action, and you can't do it at run-time, so you need to find a different approach. Tracy _ From: flexcoders@yahoogroups.com

[flexcoders] Re: Lazy loading in AdvancedDataGrid using RemoteObject

2009-03-08 Thread yossi.baram
Thanks Amy :)) --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, yossi.baram yossi.baram@ wrote: Thanks Amy for your help, I'm going your way:), only one question if i may, Is it possible to activate ItemRenderer on my columns after

[flexcoders] Re: Is there a way to detect mouse button state without tracking events?

2009-03-08 Thread sunild999999
Hi, You can use Event.MOUSE_LEAVE to detect when mouse has left the stage. You can listen for MouseEvent.MOUSE_MOVE if you need to know when the mouse is back. Can you listen for MOUSE_LEAVE and dispatch your own MOUSE_UP event to stop the list from scrolling? Sunil --- In

[flexcoders] Re: dataGrid not receiving user input (intermitently) in bottom right - itemRenderer problem..

2009-03-08 Thread tom s
Problem solved. But is was bizarre, so I'll explain. Also, I still have one or two questions, but mainly for education now... First, I set the visible property of the dataGrid to false. I then check the redraw region and never saw the area that was causing trouble before. So I figured it was

RE: [flexcoders] Debugging Event Bubbling

2009-03-08 Thread Jim Hayes
Your TweetCommEvent's clone method returns a PreferencePaneEvent rather than the TweetCommEvent I'd expect, at least in the code you wrote below. It's not that, is it? public class TweetCommEvent extends Event { override public function clone():Event {

[flexcoders] Bindable Singleton is not propogating the changes of its proprties.

2009-03-08 Thread alex
I have a Bindable Singleton class were I access from diffrent components. The class has several properties ArrayCollection,Boolean... etc . I assumed that any change in then properties will propogate to all the components that use the Singleton class , but from what I see it is not the case.

[flexcoders] ASDoc and .as includes?

2009-03-08 Thread aaron smith
Hey all, How can I get asdoc to play nice with includes? By includes, I don't mean the asdoc -includes command flag. that's for including swcs. I mean the preprocessor includes like: include some_as_file.as I have some classes that use the same logic, so I've put it in includes. But it breaks

[flexcoders] Re: how to call dynamic servlet

2009-03-08 Thread anitha2324
Hi Thanks alot for your reply, I have removed the binding variables, replaced xml by e4x , and setted the url before the service.send but am still unable to get the successful result here is my modified code ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] DropDown selectedIndex problem

2009-03-08 Thread moevydot...@ymail.com
Hello @ all, I want to select a specific part with selectedIndex. But it dont works :( It selects all the time the first one in the list. Can someone give me a help? There its the code... Thanks Michael Code: mx:Script ![CDATA[ import mx.controls.Alert; import

[flexcoders] Re: Datagrid : mouse over item

2009-03-08 Thread bartman279
Dispatch the DataGrid's itemRollOver event. That event contains a rowIndex of the rolled over item. Your listener could then be something like: private function PreviewRow( e: ListEvent ) : void { var evt:ListEvent = e as ListEvent; preview.text =

[flexcoders] Grails Flex Scaffold()

2009-03-08 Thread gonzalo clavell
If you are interested in a Grails Plugin for scaffolding your groovy domain ... try this http://cubikalabs.wordpress.com/ Try it, we need your comment to improve it. -- Gonzalo Clavell

[flexcoders] Re: mxmlc rsl

2009-03-08 Thread djd2tq
I installed Flex Builder 3 and tried creating both a Flex and Actionscript project. I looks like RSLs are only supported in Flex projects. I guess that makes sense since the functionally could be simulated in an AS project with Loaders and External swc linkage. I wish that was made more

[flexcoders] Flex Interview Questions

2009-03-08 Thread Shyam Prasad
Hi, Can anyone provide any website for the Interview Questions for Flex ? Thanks Prasad

RE: [flexcoders] Re: dataGrid not receiving user input (intermitently) in bottom right

2009-03-08 Thread Alex Harui
In times like this, I set a breakpoint on SystemManager.as:mouseDownHandler, click someplace and introspect the event.target and its properties. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] mxmlc rsl

2009-03-08 Thread Alex Harui
Rsl loading is built into mx:Application/SystemManager. A simple AS test will not load rsls and probably give you that error. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Re: dataGrid not receiving user input (intermitently) in bottom right

2009-03-08 Thread Tim Hoff
Nice, thanks for the tip Alex. -TH --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: In times like this, I set a breakpoint on SystemManager.as:mouseDownHandler, click someplace and introspect the event.target and its properties. Alex Harui Flex SDK Developer Adobe Systems