[flexcoders] getURL blocked by IE7. --------- Please help!

2008-05-13 Thread gevgelija50
I'm using a Flex 1.5 app via Internet Explorer 7 and I am having the following issue: I have a button in my Flex page that calls the getURL method to open an .axd page and download a file from an image server. getURL('http://www.thedomain.com/ResourceDownloader/getOriginal.axd? id=' +

[flexcoders] Effect Listener

2006-02-17 Thread gevgelija50
I have declared an effect actionscript: var e = new mx.effects.Resize(ReportContainer); e.addEventListener(resizeEndEffect,Delegate.create(eend)) e.widthFrom = 0; e.widthTo = 800; e.duration=500; e.playEffect(); I want to be able to set

[flexcoders] Re: Effect Listener

2006-02-17 Thread gevgelija50
onEffectEnd(event: Object) : Void { mx.controls.Alert.show(Effect ended); } Doug --- In flexcoders@yahoogroups.com, gevgelija50 gevgelija50@ wrote: I have declared an effect actionscript: var e = new mx.effects.Resize(ReportContainer); e.addEventListener

[flexcoders] Re: Effect Listener

2006-02-17 Thread gevgelija50
Doug, Can I point the listener to a custom function instead? e.listener = myFunction; --- In flexcoders@yahoogroups.com, gevgelija50 [EMAIL PROTECTED] wrote: Doug, yes, this is in Flex 1.5. I used your example and it worked great! Thanks! --- In flexcoders@yahoogroups.com, Doug

[flexcoders] Extending the COMBOBOX

2005-06-21 Thread gevgelija50
Does anyone has examples on extending a Combobox control? For example, I want to create two-line rows which would contain the name of the combobox item in the first line and description on the next. Thanks, Alex Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] Re: Extending the COMBOBOX

2005-06-21 Thread gevgelija50
] On Behalf Of gevgelija50 Sent: Tuesday, June 21, 2005 8:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Extending the COMBOBOX Does anyone has examples on extending a Combobox control? For example, I want to create two-line rows which would contain the name of the combobox item

[flexcoders] DATE Function in Flex

2005-04-21 Thread gevgelija50
.NET has a nice set of date functions that will allow you to add or subtract days from a selected date. For Example: my date is 12/31/2004 myDate.AddDays(1) would set the myDate equal to 01/01/2005 From reading the documentation, I don't see such capabilities in the Flex Date class. Is

[flexcoders] Re: DATE Function in Flex

2005-04-21 Thread gevgelija50
Thanks. That worked great! Alex --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi Alex Date Object in Flex(ActionScript) is quite powerful and allows you do things more easily... var _date = new Date(2004, 11, 31); //11 means december, months are 0 based...

[flexcoders] Re: Events and Components

2005-04-04 Thread gevgelija50
}/ Or, if you need to invoke a method with the results mx:ComboBox dataProvider={myFunction (this.parent.Webservice1.GetResults.result)}/ define your operation like: mx:operation name=GetResults/ -ashley gevgelija50 wrote: I have a component that contains a combobox. The component

[flexcoders] Datagrid - Select ALL Items

2005-03-23 Thread gevgelija50
Does anyone know of an easy way of selecting all items in a datagrid with a click of a button? By the same token, how do you de-select? Thanks, Alex Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this

Flex Bug or Not?

2005-03-07 Thread gevgelija50
While attempting to run in Debug mode, I received the following message: 2 Errors found. Error generated version of _watcherSetup:260 Branch between 42711 and 75485 around line 1157 exceeds 32K span. If possible, please refactor this component. Error Branch between 42711 and 75485

Window Close

2005-03-06 Thread gevgelija50
Is there a possibility to create a listener in Flex that will capture the event of a user closing a web browser? In other words, if the user bypasses the logout button, I want to execute the logout process before browser is closed. Thanks, Alex

DATAPROVIDER LENGTH - PLEASE HELP

2005-03-02 Thread gevgelija50
I am not sure if this is a Flex bug or just the wrong approach. I have two datagrids that have drag-drop enabled. I followed the drag and drop example from Macromedia (Flex Explorer) When I hit the doDragDrop function, instead of simply adding the items to the grid, I also want to add them to

DATAPROVIDER LENGTH

2005-03-01 Thread gevgelija50
I have two grids(source and destination) and I am using drag-and- drop to populate the destination grid. I have this working and items are moved (sort-of) over to the grid. During debugging, I browsed to see the items available in the dataProvider for the grid. Items are there but the length