[flexcoders] Opening popups while in full-sceen mode would crash the browser

2009-07-14 Thread Robert Csiki
Hello, I created a bunch of MXML components and the application them as popups PopUpManager.createPopup(), but when executing that while the application is in full-screen mode, the browser crashes. Reproducible with Windows/Firefox and IE, and Flash Player 9. Any idea why? Has anyone seen

[flexcoders] Making the Slider Track behaving like a ProgressBar

2009-01-13 Thread Robert Csiki
Hello, Is there an easy way to achieve this? I am working on a video player and I want to visualize the content buffering the same way say YouTube's one (and most other video players I've seen) does. Thanks Robert

[flexcoders] Flex3 WebService problem?

2008-07-08 Thread Robert Csiki
Hello, I found the Flex3 WebService does ignore the namespaces defined and used by the xsi:type constructs when the SOAP message gets built. Example: mx:WebService id=contextRegistryService showBusyCursor=true

[flexcoders] Setting HTTP headers on mx.controls.Image?

2008-07-07 Thread Robert Csiki
Is it possible to set HTTP headers (e.g. a cookie) when requesting a JPG from the network with an mx.controls.Image? Thanks, Robert

[flexcoders] Re: List item selection on mouse right click?

2008-06-11 Thread Robert Csiki
Bump.. anyone?? --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: Is that possible in Flex 3? If so, how? I want to select an item in a list grid with the right mouse click the same way it is done when using the mouse's left button (e.g. Windows Explorer native

[flexcoders] List item selection on mouse right click?

2008-06-10 Thread Robert Csiki
Is that possible in Flex 3? If so, how? I want to select an item in a list grid with the right mouse click the same way it is done when using the mouse's left button (e.g. Windows Explorer native behavior). Thanks, Robert

[flexcoders] Flash Player 9 build 124 (current) - Security Sandbox Violation

2008-05-28 Thread Robert Csiki
Hello, After upgrading the Flash 9 to build 124 (from 115), I can no longer access my web services, which are on a different host, due to a Security Sandbox Violation error. Hapens on both Windows IE and Firefox (did not try Macintosh yet). Before initializing the mx:WebService tags, we're

[flexcoders] Re: Flash Player 9 build 124 (current) - Security Sandbox Violation

2008-05-28 Thread Robert Csiki
@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think there are some new rules for crossdomain.xml files. Check the Flash Player security info on the adobe sites. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
FlexBuilder3 generates ActionScript code for you for both service and data model. The service class has a header with comments on how to utilize it. Good luck! I've found this generated code as being pretty buggy for complex web services, but if you're using simple ones, you might be luckier than

[flexcoders] How to avoid Image refresh?

2008-05-21 Thread Robert Csiki
I have a datagrid with objects. The item renderer contains an Image object that grabs the content via URL from a remote server. Whenever I scroll up and down, there are server calls to get the image content again. It slows down the application. How can I control the Image object to avoid this

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
, flexawesome [EMAIL PROTECTED] wrote: Thanks for sharing the information. What about creating webservice by using own as code or mx:WebService. code in mxml file? any tutorials? Cheers --- In flexcoders@yahoogroups.com, Robert Csiki emc_rcsiki@ wrote: FlexBuilder3 generates

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
to a base file, you can tie it into a Cairngorm delgate class and bamm. DK On Wed, May 21, 2008 at 10:10 AM, Robert Csiki [EMAIL PROTECTED] wrote: FlexBuilder3 generates ActionScript code for you for both service and data model. The service class has a header with comments on how to utilize

[flexcoders] Re: How to avoid Image refresh?

2008-05-21 Thread Robert Csiki
class? Robert --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 7:46 PM, Robert Csiki [EMAIL PROTECTED] wrote: I have a datagrid with objects. The item renderer contains an Image object that grabs the content via URL from a remote server

[flexcoders] Re: Is the context-root value burnt into SWF?

2008-05-20 Thread Robert Csiki
to? Your code could check for this value and do your own string replace of any {context.root} tokens in your channel uris with this value before connecting (be careful when handling empty context root values). Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki

[flexcoders] LCDS and channel usage

2008-05-16 Thread Robert Csiki
Hi there, What channels are compatible with what service objects? For instance, I noticed the AMF family is not good for DataService. If you know of a ling that contains this service/channel matrix, I'd appreciate if you'll point it to me. Also: for each of the available services (DataService,

[flexcoders] Re: RTMP port 2038

2008-05-16 Thread Robert Csiki
on different ports? Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Thursday, May 15, 2008 3:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] RTMP port 2038 Is it possible to change this port value in LCDS without the need to rebuild

[flexcoders] mx.utils.URLUtil.replacePort() does not work?

2008-05-16 Thread Robert Csiki
Working in FB3: var newUri:String = URLUtil.replacePort(http://localhost: http://localhost: , ); The result is newUri = http://localhost:http://localhost: http://localhost:http://localhost: Should I log a bug?? Thanks.

[flexcoders] Re: RTMP port 2038

2008-05-16 Thread Robert Csiki
you need to define a unique port for each RTMP endpoint, and you'd need to build your client for each web app to use the proper corresponding port. Hope that helps, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 8:25 AM

[flexcoders] Re: LCDS and channel usage

2008-05-16 Thread Robert Csiki
server-side RTMP endpoint's URL, and if that fails (say the client has a firewall blocking that port), it will fall back to a connect attempt over your AMFChannel (which has polling enabled). Hope that helps, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki

[flexcoders] Is the context-root value burnt into SWF?

2008-05-16 Thread Robert Csiki
Hi there, Say I'm using a context root value MyApp when compiling my LCDS-based Flex application. I package everything into an archive called MyApp.war, depoly it on my Tomcat, startup tomcat, access the application using http://localhost:8080/MyApp http://localhost:8080/MyApp , everything works

[flexcoders] Re: mx.utils.URLUtil.replacePort() does not work?

2008-05-16 Thread Robert Csiki
Bug logged: https://bugs.adobe.com/jira/browse/SDK-15585 https://bugs.adobe.com/jira/browse/SDK-15585 --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: Working in FB3: var newUri:String = URLUtil.replacePort(http://localhost: http://localhost: ,

[flexcoders] Re: LCDS and channel usage

2008-05-16 Thread Robert Csiki
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 1:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: LCDS and channel usage Thanks Seth, this really helps and your comments are very detailed and useful. I really appreciate

[flexcoders] Re: LCDS and channel usage

2008-05-16 Thread Robert Csiki
PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 1:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: LCDS and channel usage Thanks Seth, this really helps and your comments are very detailed and useful. I really appreciate these comprehensive comments of yours! I

[flexcoders] Re: Is the context-root value burnt into SWF?

2008-05-16 Thread Robert Csiki
in the browser Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 1:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is the context-root value burnt into SWF? Hi there, Say I'm using a context root value MyApp when compiling my

[flexcoders] Re: Is the context-root value burnt into SWF?

2008-05-16 Thread Robert Csiki
values). Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 2:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Is the context-root value burnt into SWF? Thanks Seth, I understand it's different in Flex world

[flexcoders] Re: Problem with RTMP

2008-05-15 Thread Robert Csiki
Whenever you change that port, you need to rebuild the Flex app, as this port value is burnt into the SWF. Someone please correct me if I'm wrong. --- In flexcoders@yahoogroups.com, Madhu Bhat P [EMAIL PROTECTED] wrote: Hi, I have been working on the LCDS from past 4 months. I have an issue

[flexcoders] RTMP port 2038

2008-05-15 Thread Robert Csiki
Is it possible to change this port value in LCDS without the need to rebuild the SWF? Thanks.

[flexcoders] Re: RPC Fault, Error #1088 when receiving SOAP response with MTOM enabled

2008-05-15 Thread Robert Csiki
specifications are currently supported; if an enhancement request hasn't been logged, go ahead and log one. Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Monday, May 12, 2008 3:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RPC

[flexcoders] Re: RPC Fault, Error #1088 when receiving SOAP response with MTOM enabled

2008-05-12 Thread Robert Csiki
Hi there, Is MTOM still unsupported, in Flex3? I'm still getting the same type of error, looks like Flex can't decode SOAP responses encoded MTOM. Robert --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: There are no plans right now, but it's worth logging an

[flexcoders] FlexBuilder3 and Web Service proxy generation tool

2008-04-30 Thread Robert Csiki
This tool generates Actionscript code that is not usable at all. I created a very simple Web Service, deployed it and then I used this tool from FlexBuilder3 to get the AS code in order to consume the service. This generated proxy code is buggy and therefore is not working, even for very, very

[flexcoders] Web Services not working when invoked from within Modules?

2008-04-21 Thread Robert Csiki
Hello, My webservice, implemented using the mxml tag, does not work (it does not send the SOAP operation request on the wire), if invoked from within a Module. The same service does work when invoking from within an Application. Any ideas why it's not working with Modules? I'm using Flex3.

[flexcoders] Flex3 backward compatibility issue (Button's selected property)

2008-04-15 Thread Robert Csiki
Programatically changing the selected attribute of a Button control no longer generates a Change event with Flex3. It used to do in Flex2. Why that? It's a backwards compatibility issue to me. We cannot port our Flex2 app to using Flex3 without making code changes to accomodate this new

[flexcoders] Differences between SDK 2.0.1 and SDK 3

2008-04-15 Thread Robert Csiki
Where can I get a full list of all the differences between SDK 2.0.1 and SDK 3? The change list offered here: http://livedocs.adobe.com/flex/3/html/help.html?content=versioning_4.htm\ l http://livedocs.adobe.com/flex/3/html/help.html?content=versioning_4.ht\ ml is incomplete. For instance, the

[flexcoders] Re: Differences between SDK 2.0.1 and SDK 3

2008-04-15 Thread Robert Csiki
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Tuesday, April 15, 2008 8:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Differences between SDK 2.0.1 and SDK 3 Where can I get a full list of all the differences

[flexcoders] # sign in URL - how do I get rid of it?

2008-04-04 Thread Robert Csiki
After we switched to using Flex3, there's a # sign that occasionally appears in browser, on the URL that accesses the Flex app, right after the context root; how can I get rid of it? Sometimes there is other stuff coming after that # sign, which hampers our product usability. We're not using

[flexcoders] # sign in URL - how do I get rid of it?

2008-04-04 Thread Robert Csiki
After we switched to using Flex3, there's a # sign that occasionally appears in browser, on the URL that accesses the Flex app, right after the context root; how can I get rid of it? Sometimes there is other stuff coming after that # sign, which hampers our product usability. We're not using

[flexcoders] Item renderer behavior change in Flex3 ??

2008-04-02 Thread Robert Csiki
Hello Code that used to work with Flex2 does not work right with Flex3. I have a TileList with a custom item renderer. The renderer has view states, it also has handler for creationComplete. With Flex2, the creationComplete handler was always executed in renderer when the TileList data provider

[flexcoders] mx:SetProperty no longer works right in Flex3

2008-03-26 Thread Robert Csiki
The following code used to work in Flex2 and no longer works in Flex3 (i.e. the property does not gets set). Any ideas? Thank you mx:states mx:State name=displayState mx:SetProperty target={objectNameLabel} name=visible value={myValue}/

[flexcoders] compc error (Flex3 only, works in Flex2)

2008-03-26 Thread Robert Csiki
I'm trying to compile my project using the exact script that used to work on the Flex2 environment, with the exceptions I switched to using the Flex3 SDK and used the new Flex3 flexTasks.jar library. However, the compilation failes with this message: [compc] Error: could not find source for

[flexcoders] When is Flex going to support real Web Services?

2008-03-14 Thread Robert Csiki
Hello there, I find the XML Schema limitations described by the Adobe Flex3 docs ( here http://livedocs.adobe.com/labs/flex3/html/help.html?content=data_access\ _\3.html ) outrageous. When is Flex going to support real Web Services? Thanks, Robert

[flexcoders] When is Flex going to really support Web Services?

2008-03-14 Thread Robert Csiki
Hello there, I find the XML Schema limitations described by the Adobe Flex3 docs ( here http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_3.h\ tml , in section XML Schema element support ) outrageous. Why these limitations and when is Flex going to support real Web Services?

[flexcoders] WebServices (FB3) - SOAPEncoder does not understand WSDL subtypes???

2008-03-13 Thread Robert Csiki
In WSDL I have a complex type that contains an element type of an abstract type T1. Then I have the concrete complex type T2 that extends from T1. My WebService request contains an instance of T2 (which is also type of T1 as it extends from it). However, the SOAPEncoder ignores all its content

[flexcoders] Re: WebServices (FB3) - SOAPEncoder does not understand WSDL subtypes???

2008-03-13 Thread Robert Csiki
3: complexType final=... block=... mixed=... abstract=.../ Looks like abstract isn't supported. --- In flexcoders@yahoogroups.com, Robert Csiki emc_rcsiki@ wrote: In WSDL I have a complex type that contains an element type of an abstract type T1. Then I have

[flexcoders] TextInput.setFocus() problem ?

2008-02-27 Thread Robert Csiki
Hello: Calling setFocus() on TextInput controls does not bring the blinking cursor inside the text box. It just draws the blue border around the text field, that's all. Why that? Is it a bug? I need the cursor there. I'm using Flex 2.0.1. Windows IE 6 and Firefox 2.0 Thanks, Robert

[flexcoders] Menu labels do not display (Full screen mode, Windows Firefox 2.0)

2008-02-22 Thread Robert Csiki
Hello, Just wondering if this is a known Firefox plugin issue or I'm doing something wrong. When running this with firefox in full screen mode, the second menuitem does not display the label when the menu pops up; sometimes even the first one behaves the same. On Firefox but normal mode,

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Robert Csiki
not work? Not yet. I re-sent the internal query. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Tuesday, February 12, 2008 7:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Robert Csiki
PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 1:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does not work? I tried the same simple test and I'm still getting nothing... are we using different settings maybe? I'm

[flexcoders] SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
Hello, I'm using an mx:Image control and trying to load using an URL that for some reason points to a resource that cannot be reached (e.g. the server is down). How will I capture this condition, as I noticed none of the following events get ever dispatched: SecurityErrorEvent.SECURITY_ERROR,

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
. If you don't see that, something else is going on. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 8:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] SWFLoader.load() error

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 12:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does not work? It's an internal server that's supposed to serve me images. The url is something classy, http://%3chost%3e

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
the brokenImage icon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 1:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does not work? Ok Alex, I

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
: I used this: mx:Image source=http://www.tsnn.ca; ioError=trace('got error') / And got the trace after a few seconds and the Image tag showed the brokenImage icon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 11:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does not work? Thanks Alex, but when I copy this well-formed URL

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-08 Thread Robert Csiki
to see if it is a known issue. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, February 08, 2008 1:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does not work

[flexcoders] How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Robert Csiki
Wonder if you have a sample Ant script to share, which compiles a bunch of .AS classes into a library (.SWC) Thanks!

[flexcoders] Re: How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Robert Csiki
Thank you, how will I use a library as RSL when building (using Ant task mxmlc), what's the syntax here? --- In flexcoders@yahoogroups.com, Gaurav Jain [EMAIL PROTECTED] wrote: You can use the flexTasks that ship with the Flex SDK to achieve this. The flexTasks.jar is sdk home/ant/lib

[flexcoders] Re: How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Robert Csiki
Thanks, it will really help, one more question, hopefully the last one: is there anything specific to set in compc to indicate the SWC that's being built is a RSL? I have fear this is a dumb question. Can't I rather use compc to generate a RSL directly (SWF file) to be used by the main

[flexcoders] CSS syntax for specifing custom ActionScript skin class?

2008-01-16 Thread Robert Csiki
How do I specify my custom skin class in a CSS file? Basically I want to customize the horizontal scroolbar. The MXML control: mx:HBox horizontalScrollBarStyleName=myCustomHorizontalScrollBar/ The style is defined as follows: .myCustomHorizontalScrollBar{ trackSkin:

[flexcoders] Re: CSS syntax for specifing custom ActionScript skin class?

2008-01-16 Thread Robert Csiki
Nevermind, got it... the function is called ClassReference --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: How do I specify my custom skin class in a CSS file? Basically I want to customize the horizontal scroolbar. The MXML control: mx:HBox

[flexcoders] Warning message on entering Full Screen

2008-01-14 Thread Robert Csiki
How to add a message the same way it was added here: http://www.picnik.com http://www.picnik.com (the 2nd one, regarding the Keyboard being disabled, when clicking on Full Screen button)? The message does not seem to come from the SWF wrapper, via Javascript. Thank you so much in advance!

[flexcoders] Flash Player 9 - debug version

2008-01-08 Thread Robert Csiki
Can anyone tell me please what's the latest version of Flash Player 9 (Windows) - debug version and if it's available on the Internet? I'm currently having 9,0,28,0, installed by Flex Builder 2, but it started to behave strangely in the last couple of weeks. I don't have nor use Flex Builder 3

[flexcoders] Simulating Flex Client requests using Java?

2008-01-04 Thread Robert Csiki
Hello, For server-side testing purposes (e.g. testing custom LCDS Assemblers, remote service destinations etc) using the JUnit testing framework, I need to somehow simulate Flex Client requests to LCDS, programatically, through Java code (the test cases). Is that possible, if so, how please?

[flexcoders] Re: Simulating Flex Client requests using Java?

2008-01-04 Thread Robert Csiki
/ ) for these type of things? Robert Csiki wrote: Hello, For server-side testing purposes (e.g. testing custom LCDS Assemblers, remote service destinations etc) using the JUnit testing framework, I need to somehow simulate Flex Client requests to LCDS, programatically, through Java code

[flexcoders] Re: Simulating Flex Client requests using Java?

2008-01-04 Thread Robert Csiki
assumed using FlexUnit ). In theory, you use JUnit to test your Java Objects, but can use FlexUnit to test hit the service layer. Am I greatly oversimplifying things? Or just completely wrong? Robert Csiki wrote: Thanks for your reply Jeffry, yes, we're using FlexUnit too, for testing

[flexcoders] Re: ExternalInterface.call() returns null

2007-12-04 Thread Robert Csiki
Any thoughts, anyone? How can I pass a binary file (as byte array) from Java (applet) to Flex, without the need to do the Base64 transcoding (which introduces unacceptable delays - especially the decoding part)? Thank you. --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote

[flexcoders] ExternalInterface.call() returns null

2007-12-03 Thread Robert Csiki
Hello: I try calling a Java applet method (applet is loaded by the SWF's HTML wrapper) using ExternalInterface.call(). The applet return type is byte[], however on the Flex side, ExternalInterface.call() return null. Any ideas how can I get my byte array in Flex? I observed the call returns ok

[flexcoders] Confirm dialog in Flex?

2007-11-26 Thread Robert Csiki
How would I implement a Confirm-like dialog in Flex? Basically, a confirmation popup (modal) window so the application will wait (freeze) for the user's input and then will use it to continue its execution? Another case would be a session timeout handling. I want to alert the user about it in an

[flexcoders] Re: Confirm dialog in Flex?

2007-11-26 Thread Robert Csiki
until you get the event back from the Alert. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Monday, November 26, 2007 12:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Confirm dialog in Flex? How

[flexcoders] Why do I need to register aliases for some Messaging classes in Module?

2007-11-09 Thread Robert Csiki
If I use a Module to connect to LCDS, some aliases do not get automatically registered, and I have to find them and register them programatically. Why that? The following messaging aliasses needed to be registered so far (the list may not be complete), otherwise the Cannot convert an Object into

[flexcoders] Unhandled failure on the server (LC Data Services)

2007-11-09 Thread Robert Csiki
Got this error when the DataService updates a collection with LCDS. Any ideas? I'm using LCDS 2.5.1 and FlexBuilder 2.0.1 with hotfix 2 Thanks. errorReply: Flex Message (flex.messaging.messages.ErrorMessage) clientId = 11D8F786-5719-0DA9-EF74-78B603160B85 correlationId =

[flexcoders] Re: Unhandled failure on the server (LC Data Services)

2007-11-09 Thread Robert Csiki
[mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, November 09, 2007 10:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Unhandled failure on the server (LC Data Services) Got this error when the DataService updates a collection with LCDS. Any ideas? I'm using LCDS

[flexcoders] Re: RemoteObject call does not get through if called by a Module

2007-11-08 Thread Robert Csiki
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Wednesday, November 07, 2007 12:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RemoteObject call does not get through if called by a Module I have

[flexcoders] RemoteObject error when calling from within a Module

2007-11-07 Thread Robert Csiki
Trying to invoke a RemoteObject method from within a module that's loaded by the main application results in a Flash Actionscript error: TypeError: Error #1034: Type Coercion failed: cannot convert [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] to mx.messaging.messages.IMessage. Here's the error

[flexcoders] RemoteObject call does not get through if called by a Module

2007-11-07 Thread Robert Csiki
Hi there, I have an app that loads a module. The module then instantiates a RemoteObject with a valid LCDS destination, and then invokes one of its methods. The method does not get invoked on LCDS side and an error is displayed on thwe client TypeError: Error #1034: Type Coercion failed: cannot

[flexcoders] Re: RemoteObject call does not get through if called by a Module

2007-11-07 Thread Robert Csiki
in there and so that is why it works. If you put some references to those classes in the main swf, it may also just then work in the module as well? Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Wednesday

[flexcoders] Flex's Component definition?

2007-10-23 Thread Robert Csiki
Struggling to find a definition for Component in the docs ...what code is a Component in Flex's world and what code is not a Component? Cheers..

[flexcoders] Re: Flex's Component definition?

2007-10-23 Thread Robert Csiki
.* or mx.containers.* is a component. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Tuesday, October 23, 2007 12:03 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] Configuration Customization approaches?

2007-10-23 Thread Robert Csiki
Any advices for building Flex apps that are fully configurable (at application level, not via user preferences) and customizable? By the latter one I mean having customers/consulting building on top of an existing flex (generic) application, creating a so-called custom layer that sits on top etc.

[flexcoders] Re: Event bubbling question

2007-10-23 Thread Robert Csiki
Hello Dave, HttpService object is not a UI component, hence the concept of parent does not apply for it, no matter where in your code you define it. That's why your event fired by it only uses the targeting phase, I guess...makes sense? Robert --- In flexcoders@yahoogroups.com, dave_defusion

[flexcoders] All valid metadata tags?

2007-10-22 Thread Robert Csiki
Hello, If you look at this http://livedocs.adobe.com/flex/201/html/metadata_141_04.html documentation page, there are lots of valid metadata tags missing (just a couple of examples: Exclude, Managed). Why that? Where can I find the full list of documented metadata tags that are permitted in

[flexcoders] Re: All valid metadata tags?

2007-10-22 Thread Robert Csiki
Thank you, Dan. Cheers!! Robert --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: http://nondocs.blogspot.com/2007/04/metadata.html - Dan Freiman On 10/22/07, Robert Csiki [EMAIL PROTECTED] wrote: Hello, If you look at thishttp://livedocs.adobe.com

[flexcoders] Re: html-wrapper Flex Ant Task

2007-10-17 Thread Robert Csiki
I'm having the same issue ... anyone having a solution for this, please? Thanks Robert --- In flexcoders@yahoogroups.com, chuyler1 [EMAIL PROTECTED] wrote: I've got two questions about using Ant to generate the html for our project. 1) Why isn't there a way to specify an external template

[flexcoders] Label alignment?

2007-10-16 Thread Robert Csiki
How to vertically align the text of a Label? The only related property I found there is textAlign, but it does the horizontal alignment. Thanks.

[flexcoders] How to fully configure an AbstractService just using ActionScript?

2007-10-15 Thread Robert Csiki
I want to have an ActionScript file defining all my RPC services, and this will be included by everybody would need to perform RPC calls.. How can I fully define an AbstractService just using ActionScript? For example, say for RemoteObject, I want to define its methods and their own result/fault

[flexcoders] Filtering out list items?

2007-10-05 Thread Robert Csiki
Hello, I have a List using a custom component as item renderer. I want some items not to be displayed, based on a criteria that's contained by the cell item itself. mx:List dataProvider={folderViewData} itemRenderer=views.FolderCellRenderer / Playing with the visible attribute of the custom

[flexcoders] Re: Selecting multiple gridItems in a Grid?

2007-10-05 Thread Robert Csiki
In what sense, please? Also, does TileList support such of a multiple selection, using just the mouse? I'm talking about the same use case you select multiple items from your desktop, exclusively using the mouse (defining a rectangle by dragging it while holding the left button down, and have

[flexcoders] Re: Gaps between list items?

2007-10-04 Thread Robert Csiki
Thanks Alex, already tried it, but it does not work. Any other suggestions, anyone? -Robert --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: paddingTop/paddingBottom/verticalAlign

[flexcoders] Re: LCDS: Reordering managed collections?

2007-10-03 Thread Robert Csiki
Thanks Jeff, but who will give me the information regarding the positions in the list to delete from and to add into, based on what the client has done? So far, I could only see this type of info contained by the update collection message the server receives (UpdateCollectionMessage obj), but I

[flexcoders] Re: LCDS: Reordering managed collections?

2007-10-03 Thread Robert Csiki
Thanks Jeff, I tried using this approach, and the result is the item I moved via DnD gets removed from the list. The methods addItemToFill and removeItemFromFill are both called, however the server overrides the client update, keeps the item deletion but does not insert the it at the new position

[flexcoders] Re: LCDS: Reordering managed collections?

2007-10-03 Thread Robert Csiki
Hi Jeff, Thank you. I've anticipated your suggestion, and already done it, turned off the auto refresh, but the end result is exactly the same (the DnD-ed item gets removed from the list). No additional log info was registered. And the refreshFill method is not called anymore (as expected).

[flexcoders] Re: Gaps between list items?

2007-10-03 Thread Robert Csiki
Hello, marginTop and marginBottom are not properties of the List. I'm having the same issue, anyone found a solution yet? How to put some vertical gap between the list items? Thanks, Robert --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Actually verticalGap is not a

[flexcoders] UpdateCollectionMessage.SERVER_OVERRIDE

2007-10-02 Thread Robert Csiki
Hello, According to the documentation, this constant Indicates this update collection message was client generated and the remote destination determined that it should be reverted on that client. A subsequent update collection message will follow containing the correct values to apply getting

[flexcoders] LCDS: Reordering managed collections?

2007-10-02 Thread Robert Csiki
Hello, Suppose I have a managed collection and I want to reorder its items (say via Drag and Drop, on a TileList). I want the FDS to save this new item order to the persistance layer (database). On the LCDS side how to get the changes done as a result of rearranging the items done by the user?

[flexcoders] Problem with the Drag 'n' Drop and the FDS..

2007-10-01 Thread Robert Csiki
Helo, here's my little story: I have a TileList that's powered by an ArrayCollection with data obtained from a DataService (via it's fill method). For the DS I set autoCommit=false. I enabled the DnD for my TileList (it has built-in DnD support) and I also set it to allow item move, not copy.