Re: [flexcoders] HSLIDER

2009-08-02 Thread claudiu ursica
I thing Doug Mc Cune did something like that, a similar component. Google for it on its blog. C From: ram ramesh ram_y...@yahoo.co.in To: flexcoders@yahoogroups.com Sent: Sunday, August 2, 2009 1:18:12 AM Subject: [flexcoders] HSLIDER Hi I have one

Re: [flexcoders] cairngorm convention: vo or model?

2009-08-06 Thread claudiu ursica
Ultimately the data should be in the model, and the view binds to the model. However depending on your needs you could notify the view from the command using responders. Check the UM Cairngorm extensions for this. HTH, Claudiu From: Jorge Maiquez

Re: [flexcoders] cairngorm convention: vo or model?

2009-08-06 Thread claudiu ursica
to it? Symantics, I know, but I’m trying to figure out whether I’m the only one who thinks it’s weird :-) From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of claudiu ursica Sent: 06 August 2009 14:23 To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders

Re: [flexcoders] cairngorm convention: vo or model?

2009-08-06 Thread claudiu ursica
in the model directory, which feels kinda weird to me. I know I’m being very fussy over something very trivial :-) From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of claudiu ursica Sent: 06 August 2009 16:01 To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders

Re: [flexcoders] Event Best Practices

2009-08-15 Thread claudiu ursica
As long as the component are oon the display list and the event bubbles property is set to true you can listen for the event in the main app. However you can catch the event in every component nested in the main app which parents the component that dispatched the event... THT, C

Re: [flexcoders] Flex and REST

2009-09-02 Thread claudiu ursica
TO go RESTfull you'll have to use all teh methods like GET, POST, PUT, DELETE, which is kind of hard to do. You probably end up using lots of post from flex, even instead of get... You still can build the REST api and use it like that only with GET and POST... not 100% rest but will work... C

Re: [flexcoders] Flex and REST

2009-09-02 Thread claudiu ursica
, as support for other HTTP verbs can be patchy. On 02/09/2009, at 10:10 PM, claudiu ursica wrote: TO go RESTfull you'll have to use all teh methods like GET, POST, PUT, DELETE, which is kind of hard to do. You probably end up using lots of post from flex, even instead of get... You

Re: [flexcoders] Flex and REST

2009-09-03 Thread claudiu ursica
If your Rest API is exposing XML you won't be needing any additional libs... the HTTPService class will do just fine ... C From: Haykel BEN JEMIA hayke...@gmail.com To: flexcoders@yahoogroups.com Sent: Thursday, September 3, 2009 1:45:11 PM Subject: Re:

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread claudiu ursica
do implements implements=lib.ISurfaceObject, lib.ISurfaceObject2 TH, C From: Michael Ridland rid...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, September 8, 2009 1:08:50 PM Subject: Re: [flexcoders] Implement Multiple Interfaces in a MXML component

Re: [flexcoders] About Flex 4 release time

2009-09-08 Thread claudiu ursica
Release date is early 2010, that is probably in the first quarter C From: ivan.wang2010 ivan.wang2...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, September 8, 2009 2:36:53 PM Subject: [flexcoders] About Flex 4 release time Hi, all I'm

Re: [flexcoders] child component listens for event on parent

2009-09-16 Thread claudiu ursica
You'd be better listening to some property in your model and update that property when tabs are changing. Your approach doesn't convince me. But then, maybe I didn't get it right... C From: edencane lukevanderfl...@gmail.com To: flexcoders@yahoogroups.com

Re: [flexcoders] JQuery questions

2009-09-17 Thread claudiu ursica
I have no doubt that he can port the app, still up for debate how quickly and easy. However make him run it in IE6. Case closed :) C From: adamsch1 adams...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, September 17, 2009 3:26:58 AM Subject:

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
You can attach an IResponder (with the result and fault functions) from your view as payload to your event. Inside your command you'll get the response/faul from the server and call the appropriate function on the IResponder reference. Check for UniversalMind cairngorm extension they explain

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
To: flexcoders@yahoogroups.com Sent: Tue, November 3, 2009 10:29:34 AM Subject: Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page? I can not add any 3rd party tools to the app. can you think of any another way? On Tue, Nov 3, 2009 at 8:23 AM, claudiu ursica

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
? a addEventListner would be the best but not sure how to add it to the result of the cmd file and have it kick off a function in the view page On Tue, Nov 3, 2009 at 8:35 AM, claudiu ursica the_braniak@ yahoo.com wrote: I have no idea what your architecture is, but if you use

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
a function on the calling page? so it would be like this : model.varName. addEventListner( change, function); Sorry I have not use that yet, thanks On Tue, Nov 3, 2009 at 9:07 AM, claudiu ursica the_braniak@ yahoo.com wrote: You have a model right ? you can aceess the model inside

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
] can you get a command result in Cairngorm call a function on the calling page? so it would be like this : model.varName. addEventListner( change, function); Sorry I have not use that yet, thanks On Tue, Nov 3, 2009 at 9:07 AM, claudiu ursica the_braniak@ yahoo.com wrote

Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page?

2009-11-03 Thread claudiu ursica
!=areaID){ areaID = val; dispatchEvent(change); } } on the view page, in the init function I added model.areaID. addEventListner(change, setList); Thanks for all of your help Darrin On Tue, Nov 3, 2009 at 9:40 AM, claudiu ursica the_braniak@ yahoo.com wrote

Re: [flexcoders] quick XML question

2009-11-17 Thread claudiu ursica
I think the - dls-configuration is the issue. There is a solution for this but i cannot remember where i read about it. Do some google-ing... C From: Pruitt, Byron S steve.pru...@hp.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Tue,

Re: [flexcoders] quick XML question

2009-11-17 Thread claudiu ursica
] as XML; and n1 is null. Still confused. -S From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of claudiu ursica Sent: Tuesday, November 17, 2009 2:09 PM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] quick XML question I think the -dls

Re: [flexcoders] Beginner Event Question

2009-12-12 Thread claudiu ursica
I don't see any public static constCONFIG_FILE_ EVENT:AString = somtething in your custom event class... C From: Raymond Brown silenttr...@yahoo.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Sat, December 12, 2009 4:40:37 PM Subject:

Re: [flexcoders] IE Div Tags somehow blocked on html page

2009-12-12 Thread claudiu ursica
I believe you are looking at margin: 0px auto; instead of margin:auto; margin-left: auto ; margin-right: auto ; C. From: Dan Pride danielpr...@yahoo.com To: Flex Coders flexcoders@yahoogroups.com Sent: Sat, December 12, 2009 4:49:13 PM Subject:

Re: [flexcoders] var token:AsyncToken = service.[str](); how to get this working?

2009-12-15 Thread claudiu ursica
It is service.send() at least if your service is a HTTPService instance. C From: MicC chigwel...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, December 15, 2009 1:08:22 PM Subject: [flexcoders] var token:AsyncToken = service.[str](); how to get this

Re: [flexcoders] Custom List

2009-12-23 Thread claudiu ursica
You probably need to set it manually. In the list listen for the keyFocusChange event and see which item has the focus and move it forward or backwards ... C From: djhatrick djhatr...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wed, December 23, 2009 6:33:04

Re: [flexcoders] how to get the name of a video file after upload

2010-01-04 Thread claudiu ursica
I never worked with cold fusion ... however your code on the server writes somewhere the file on the disk and names it somehow. The method that does that could return the file name in case of a successful save and you can get it back into flex on the complete event. HTH, Claudiu

Re: [flexcoders] Re: how to get the name of a video file after upload

2010-01-04 Thread claudiu ursica
in flex you register an event for DataEvent.UPLOAD_COMPLETE_DATA ... fileReference.addEventListener(DataEvent.UPLOAD_COMPLETE_DATA, responseHandler); private function responseHandler( event:DataEvent ) :void { here you should have in the event.data whatever you want to send back from cold

Re: [flexcoders] Problem Casting an Object to a known type

2010-01-06 Thread claudiu ursica
You should have parser/unmarshaller for the e4x/xml returned by the service and handle this situation in there. On the other hand what you are trying to achieive doesn't work like that out of the box I mean the conversion. Google for the ObjectTranslator utility for flex/as3 and use that to

Re: [Spam] Re: [flexcoders] Problem Casting an Object to a known type

2010-01-07 Thread claudiu ursica
to that) if the data levels are 4 or more. It's coming back as untyped Objects. Normally we would call the HTTP Service asking for e4x, get the data back in the response and pass the XML through a parser so it returns a type Object. Cheers, Nick 2010/1/6 claudiu ursica the_braniak@ yahoo.com

Re: [Spam] Re: [Spam] Re: [flexcoders] Problem Casting an Object to a known type

2010-01-07 Thread claudiu ursica
with 3 levels of nested data but not 4 or 5... Thanks, Nick 2010/1/7 claudiu ursica the_braniak@ yahoo.com Still you can try the utility I mentioned (http://www.darronsc hall.com/ weblog/2006/ 10/convert- generic-objects- into-class- instances. cfm) or fix

Re: [flexcoders] NumericStepper override class

2010-01-08 Thread claudiu ursica
Do you need to disable it for the whole range of numbers or just for some of them ? C From: Eric Dunn ed...@adpt-tech.com To: flexcoders flexcoders@yahoogroups.com Sent: Thu, January 7, 2010 11:43:03 PM Subject: [flexcoders] NumericStepper override class

Re: [flexcoders] NumericStepper override class

2010-01-09 Thread claudiu ursica
: claudiu ursica the_braniak@ yahoo.com To: flexcod...@yahoogro ups.com Sent: Friday, January 8, 2010 3:33:53 AM Subject: Re: [flexcoders] NumericStepper override class Do you need to disable it for the whole range of numbers or just for some of them ? C From

Re: [flexcoders] spark list

2010-01-09 Thread claudiu ursica
The selectable is gone. Depending on what you are trying to achieve you can do it from skinning the spark list. Use a skin class for the list and inside there probably a datagroup to which you attach an intemrenderer. Inside the renderer you put the skin for the list item. If you don't want it

Re: [flexcoders] Web development with Flex

2010-01-31 Thread claudiu ursica
Yes From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Sun, January 31, 2010 11:46:09 AM Subject: [flexcoders] Web development with Flex Hello, Is it possible to developp Html/php classical websites with Flex animations

Re: [flexcoders] Using a VBox container inside a ListItemRenderer

2010-02-01 Thread claudiu ursica
I had the list index issue myself back in the days but under flex 3. I manage to fix it by implementing the IDropInListItemRenderer myself in my custom renderer. You should be able to do this with the spark component. HTH, Claudiu From: Cory

Re: [flexcoders] WSDL objects - Flex value objects

2010-02-02 Thread claudiu ursica
Google for Object Translator custom class. C From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Tue, February 2, 2010 5:27:34 PM Subject: [flexcoders] WSDL objects - Flex value objects Hello, Does anyone know of a way to

Re: [flexcoders] WSDL objects - Flex value objects

2010-02-03 Thread claudiu ursica
n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Wed, February 3, 2010 12:46:21 PM Subject: Re: [flexcoders] WSDL objects - Flex value objects Hey, thanks for the reply... I'm not sure how that helps though? Thanks On 2 February 2010 16:56, claudiu ursica the_braniak@ yahoo.com

Re: [flexcoders] WSDL objects - Flex value objects

2010-02-04 Thread claudiu ursica
As Peeyush Tuli menstioned, you can go with the automatic conversion also. I just don't like the bunch of generated classes it is one abstract and one implementation for almost everything in there. However there's no room for error in there. It is a matter of choice in the end :). C

Re: [flexcoders] how to show a preloader (loading spinner) when loading images in a flex app.

2010-02-04 Thread claudiu ursica
Use an itemrenderer with 2 states one is the loading spinner the other is the loaded image. C From: ZIONIST stinas...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thu, February 4, 2010 10:43:22 AM Subject: [flexcoders] how to show a preloader (loading

Re: [flexcoders] Trying to use an Array inside a VO.

2010-02-04 Thread claudiu ursica
try param2:Array= null C From: laurence5905 lmacne...@comcast.net To: flexcoders@yahoogroups.com Sent: Thu, February 4, 2010 12:18:47 PM Subject: [flexcoders] Trying to use an Array inside a VO. I have a Value Object called EventVO. Inside this object, I

Re: [flexcoders] Re: how to show a preloader (loading spinner) when loading images in a flex app.

2010-02-04 Thread claudiu ursica
Well when the loading is triggered (you probably call a service) you send a notification to the component to switch to the loading state. On loading COMPLETE it changes to the image. C From: ZIONIST stinas...@yahoo.com To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Assigning arrays...

2010-02-04 Thread claudiu ursica
Array.splice method (Array.concat or Array.join) check the docs I don;t know them by heart. C From: Laurence lmacne...@comcast.net To: flexcoders@yahoogroups.com Sent: Thu, February 4, 2010 6:02:46 PM Subject: [flexcoders] Assigning arrays... I need to

Re: [flexcoders] auto close popups

2010-02-04 Thread claudiu ursica
Put t timer inside the custom pop-up, give it a certain life span and close the pop-up on Timer event. C From: Glenn Jones tgjone...@gmail.com To: flexcoders@yahoogroups.com Sent: Fri, February 5, 2010 12:02:27 AM Subject: [flexcoders] auto close popups I

Re: [flexcoders] Can I get 1:1 tuition in London or Paris?

2010-02-08 Thread claudiu ursica
You need something like an official training or what exactly? C From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Mon, February 8, 2010 10:32:44 AM Subject: [flexcoders] Can I get 1:1 tuition in London or Paris? Hi guys,

Re: [flexcoders] Best practices regarding XML to VO conversion

2010-02-09 Thread claudiu ursica
I usually had a finite number of xml's 4 or 5 per project top. So I wrote custom parsers/unmarshallers and use e4x. Works like clockwork :) C From: W.R. de Boer w...@innerfuse.biz To: flexcoders@yahoogroups.com Sent: Tue, February 9, 2010 4:02:54 PM Subject:

Re: [flexcoders] Best practices regarding XML to VO conversion

2010-02-09 Thread claudiu ursica
You can give a try. Probably somebody will figure it out after all. C From: W.R. de Boer w...@innerfuse.biz To: flexcoders@yahoogroups.com Sent: Tue, February 9, 2010 5:00:11 PM Subject: Re: [flexcoders] Best practices regarding XML to VO conversion Hi

Re: [flexcoders] Problem with dealing with loads of XML data

2010-02-09 Thread claudiu ursica
Tile list with TextInput as a renderer? C From: shail shail_l...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, February 9, 2010 7:54:22 PM Subject: [flexcoders] Problem with dealing with loads of XML data Hi, In my application I created a panel full

Re: [flexcoders] Flex call javascript

2010-02-10 Thread claudiu ursica
http://curtismorley.com/2008/11/01/actionscript-security-error-2060-security-sandbox-violation/ HTH C From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wed, February 10, 2010 5:15:30 PM Subject: [flexcoders] Flex call javascript

Re: [flexcoders] Deep Object Copy?

2010-02-16 Thread claudiu ursica
Write your own utility. Do something recursive it takes some time but it will fit your needs. C From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Tue, February 16, 2010 11:03:38 AM Subject: Re: [flexcoders] Deep Object Copy?

Re: [flexcoders] executeNextCommand() Cairngorm - Why?

2010-02-18 Thread claudiu ursica
Eventually it dispatches the event for you. The fact that you are new to Cairngorm is actually good. You should move towards dependency injection and other framework (e.g. PureMVC w/Spring Actionscript, Parsley). The Cairngorm as we all use to know it will not be around that much. C

Re: [flexcoders] How much knowledge in Java do you actually need to be hired as a Flex Developer

2010-02-18 Thread claudiu ursica
It depends on the company. At Betfair we have dedicated java teams so the UI teams only do UI. Doesn;t matter if it is Flex/Flash/HTML/Ajax, we rarely touch the java code. You are not screwed you just need to find the right employer :). C From: fred44455

Re: [flexcoders] Dynamically naming classes

2010-02-22 Thread claudiu ursica
When you iterate you can assign an id of item_ and the current iterated item. I haven't used the component but I'm sure you can assign that id somehow to the page. C From: Wally Kolcz wko...@isavepets.com To: flexcoders@yahoogroups.com Sent: Mon, February

Re: [flexcoders] Pb with mx:image and Path on server

2010-02-23 Thread claudiu ursica
Try to see the image in your browser. The you'll know that the path is correct. C From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Tue, February 23, 2010 4:56:35 PM Subject: [flexcoders] Pb with mx:image and Path on server

Re: [flexcoders] Is removing a child from DisplayList better the visible=includeInLayout=false?

2010-02-24 Thread claudiu ursica
Removing is expensive it is better to hide, or to try reparenting. C From: tntomek tnto...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wed, February 24, 2010 6:14:39 AM Subject: [flexcoders] Is removing a child from DisplayList better the

Re: [flexcoders] Binding Issues with ArrayCollections

2010-02-24 Thread claudiu ursica
In a non related thins you shouldn't have view refereces in your model - modelLocator.view.fields . You could listen for the COLLECTION_CHANGE event in the view and see it that fires when you add the item. If so you can do the update in the handler by hand. On the other hand if you use list

Re: [flexcoders] Strategies for switching between testing and deployment addresses

2010-02-25 Thread claudiu ursica
We keep out URL's in an external XML file which is deployed on different environments. When app loads make a call to the Servlet and gets the URL's. The Servlet returns the configuration according to the environment that it is deployed on. HTH, C From: Nick

Re: [flexcoders] Flowing Containers

2010-02-26 Thread claudiu ursica
Try with the flow box from the flexlib C From: criptopus sd_br...@ntlworld.com To: flexcoders@yahoogroups.com Sent: Fri, February 26, 2010 4:34:43 PM Subject: [flexcoders] Flowing Containers What I need is a mx:HBox that allows me to put Tick Boxes in it

Re: [flexcoders] Pb with mx:List

2010-03-03 Thread claudiu ursica
Do you use some custom renderer in there? C From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Wed, March 3, 2010 11:39:16 AM Subject: [flexcoders] Pb with mx:List Hello, I have a List, but the selected item is selected

Re: [flexcoders] help - code assist stopped working

2010-03-04 Thread claudiu ursica
Did you by any chance upgraded to a newer release than beta 2? C From: Chris Sheffield cmsheffi...@gmail.com To: flexcoders@yahoogroups.com Sent: Thu, March 4, 2010 7:55:03 PM Subject: [flexcoders] help - code assist stopped working I apologize. This is

Re: [flexcoders] Can't move titlewindow in an Application

2010-03-05 Thread claudiu ursica
in creation complete add this.isPopUp = true; Make sure u get rid of all the listeners ... C From: xmwang1982 ask...@gmail.com To: flexcoders@yahoogroups.com Sent: Fri, March 5, 2010 4:30:30 PM Subject: [flexcoders] Can't move titlewindow in an Application

Re: [flexcoders] Re: Can't move titlewindow in an Application

2010-03-05 Thread claudiu ursica
. --- In flexcod...@yahoogro ups.com, claudiu ursica the_braniak@ ... wrote: in creation complete add this.isPopUp = true; Make sure u get rid of all the listeners ... C _ _ __ From: xmwang1982 ask...@... To: flexcod...@yahoogro ups.com Sent: Fri, March 5, 2010 4

Re: [flexcoders] Re: Issue in Flex application deployed in Load balanced environment

2010-03-06 Thread claudiu ursica
I had the something similar more that one year ago: we did something like this in the delegate which had the service instance service.method = POST; service.contentType = application/x-www-form-urlencoded; var call : Object = service.send({test:ping}); In our

Re: [flexcoders] Embedded an image list

2010-03-22 Thread claudiu ursica
Why would you want to embed when you can load them at runtime ? C From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Mon, March 22, 2010 11:02:31 AM Subject: [flexcoders] Embedded an image list Hello, How to embed an image

Re: [flexcoders] Embedded an image list

2010-03-22 Thread claudiu ursica
I'm still trying to understand what you are trying to achieve... But you should be able to loadn the xml at run time, parse it and load the images from the path that you read from the xml ... C From: Oleg Sivokon olegsivo...@gmail.com To:

Re: [flexcoders] Question about the flash detection kit script

2010-04-01 Thread claudiu ursica
Embed the swf with swfobject javascript library. C From: Raymond Brown silenttr...@yahoo.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Thu, April 1, 2010 5:47:09 PM Subject: [flexcoders] Question about the flash detection kit script

Re: [flexcoders] Loading FXG files at runtime

2010-04-19 Thread claudiu ursica
Count me in :), C From: Mark Lapasa ma...@hitgrab.com To: flexcoders@yahoogroups.com Sent: Mon, April 19, 2010 4:36:29 PM Subject: Re: [flexcoders] Loading FXG files at runtime This is an interesting question. I would like to know the answer too. On

Re: [flexcoders] thunderbolt

2010-05-04 Thread claudiu ursica
I have used it a while ago, basically it is the same as logger, but you need to define a different debug target. Google a little bit I was able to make it run in under an hour, don't remember by heart what needs to be done but is really trivial. C From:

Re: [flexcoders] Error #2063: Error attempting to execute IME command anyone?

2010-05-12 Thread claudiu ursica
It seems that the error is generated when I use the Alert.show(); Removed all the aAlert and it doesn't show anymore. The weird thing is that on the development machine I don't get this error. I use win7 with flex 4. However when deployed it is happening. The strage thing is that when

Re: [flexcoders] How to store information in Cookies ???

2010-05-27 Thread claudiu ursica
You use a flash SharedObject. Google for example there are plenty of them like this one http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_5.html C From: Nini7016 Nini7016 nahloulaha...@hotmail.com To: flexcoders@yahoogroups.com Sent: Thu, May 27,

Re: [flexcoders] How to upload a file with FileReference ?? Any help please :( :(

2010-06-03 Thread claudiu ursica
I might be reading this the wrong way but in FILE_UPLOAD_ URL you should put the path to the server script that will save your file on the server. C From: Nini7016 Nini7016 nahloulaha...@hotmail.com To: flexcoders@yahoogroups.com Sent: Thu, June 3, 2010

Re: [flexcoders] Android Hero denies XMLSocket or Socket connection? ....errors #2031, #2048

2010-06-16 Thread claudiu ursica
I am not using the FP 10, I tried running code I AS2 instead of AS3 I was able to talk to the server from the Android emulator when compiled with air. Bu that runs only on Foryo (Android 2.2) I still have 2.1 on these phones and a version of flash lite. The thing is I cannot find anywhere

Re: [flexcoders] Data Import Web Service... Where has it gonein FB4?

2010-06-25 Thread claudiu ursica
Data Services Tab, usually near Problems one or Data Button /Connect to Web Service C From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Fri, June 25, 2010 4:11:51 PM Subject: [flexcoders] Data Import Web Service... Where has

Re: [flexcoders] Upload component

2010-07-08 Thread claudiu ursica
What do you use as back end service? Takes tops 1day to write 1 from scratch though... C From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Thu, July 8, 2010 10:36:14 AM Subject: [flexcoders] Upload component Hello, I

Re: [flexcoders] Web Services and ObjectProxy question for the Flex Gurus

2010-07-22 Thread claudiu ursica
Are you generating the VO's on the client side? C From: flexcodemonkey michael_reg...@dell.com To: flexcoders@yahoogroups.com Sent: Thu, July 22, 2010 2:39:24 AM Subject: [flexcoders] Web Services and ObjectProxy question for the Flex Gurus It seems like

Re: [flexcoders] Reload an application

2010-07-23 Thread claudiu ursica
Make a javascript call through external innterface telling the browser to reload the whole html page. That will include reloading the flex app also. C From: Christophe christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com Sent: Fri, July 23, 2010

Re: [flexcoders] Heavy Data load

2010-08-02 Thread claudiu ursica
What do you donwload there? 100MB is huge. You could use FileReference if we're talking about files, images etc cause you can benefit from the progress events being fired C From: fayaz140284 fayaz.r...@gmail.com To: flexcoders@yahoogroups.com Sent: Mon,

Re: [flexcoders] Browse And Image File

2010-08-08 Thread claudiu ursica
http://blog.flexexamples.com/2008/08/25/previewing-an-image-before-uploading-it-using-the-filereference-class-in-flash-player-10/ Should be what you are after, as long as you are ok with losing the image after you close the application. C From: Christophe

Re: [flexcoders] Flex 4 data management - how do I approach this?

2010-08-08 Thread claudiu ursica
Hi, There is a very good chance I don't understand exactly what the issue is here. I never bind to generated services directly. I use a domain model, in the client and also in the business layer. If you do that you only create data on the client when the user, you, whoever clicks the button call

Re: [flexcoders] How to declare a Complex Type : String + int-

2010-08-09 Thread claudiu ursica
Unless I am reading you wrong: package com.whatever { public class Compex { public var stringval:String; public var intval:int; } } C From: Nini7016 Nini7016 nahloulaha...@hotmail.com To: flexcoders@yahoogroups.com Sent: Mon,

Re: [flexcoders] Flex 4: addEventListener in loop

2010-08-10 Thread claudiu ursica
Why are you calling java can't you just validate on client? Presumably not... can't you just pass the whole datagrid data once to java and perform once there the validation? How do you populate the datagrid in the first place? If you get data from the server you should already have it valid

Re: [flexcoders] Re: Flex 4: addEventListener in loop

2010-08-10 Thread claudiu ursica
/SQL, comparing some values and so on, so if the values are correct I save that row using a service from LCDS. hope this helps? Sending the whole datagrid data once to java? hm, seems to be a good idea --- In flexcoders@yahoogroups.com, claudiu ursica the_bran...@... wrote: Why are you

Re: [flexcoders] Re: Flex 4: addEventListener in loop

2010-08-10 Thread claudiu ursica
, validate them and return only errors. Thanx again Claudiu for your help. Regards, Adnan --- In flexcoders@yahoogroups.com, claudiu ursica the_bran...@... wrote: Ok I see your point. However it is really a bad idea to make a service call for each row. You need to perform validation on client side

Re: [flexcoders] link button from a rss

2010-08-10 Thread claudiu ursica
Put the code inside a click event handler that should do it. C From: Gustavo Duenas gdue...@leftandrightsolutions.com To: flexcoders@yahoogroups.com Sent: Tue, August 10, 2010 9:58:16 PM Subject: Re: [flexcoders] link button from a rss nope, I tried your

Re: [flexcoders] flex 4 TabBar skinning...

2010-08-11 Thread claudiu ursica
I only skinned a ButtonBar in FX4 i was using it as a language bar, I still have the code somewhere if you think it would help... C From: grimmwerks gr...@grimmwerks.com To: flexcoders@yahoogroups.com Sent: Wed, August 11, 2010 6:37:53 AM Subject:

Re: [flexcoders] textInput modification

2010-08-12 Thread claudiu ursica
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/fl/controls/TextInput.html Events: changeDispatched when user input changes text in the TextInput component. http://www.adobe.com/livedocs/flex/2/langref/mx/controls/TextInput.html change Dispatched when text in the

Re: [flexcoders] 3D Carousel in Flex 4?

2010-08-25 Thread claudiu ursica
You'll get that by implementing a custom coverflow layout class. http://www.rialvalue.com/blog/2010/04/14/carroflow-another-3d-layout-for-flex4/ http://www.flexstuff.co.uk/2009/12/23/flex-4-coverflow-layout/ This should get you started... Cheers, Claudiu

Re: [flexcoders] Re: FB4: Looping thru itemrenderers

2010-08-25 Thread claudiu ursica
Normally you should have a list and an underlying as a model dataprovider for your list. You could also keep a currentSelectedItem property in the model and bind the list selectedItem to that. You work with the underlying data and the list updates itself accordingly. Hopefully :). HTH, C

Re: [flexcoders] retrieve row # from XMLList w/ Namespaces for combo selectedIndex?

2010-08-25 Thread claudiu ursica
Parse the xml into a custom class/collection, and upon insertion you can assign a custom id e.g. the number of the row. C From: MicC chigwel...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wed, August 25, 2010 8:58:40 AM Subject: [flexcoders] retrieve row #

Re: [flexcoders] Automatic Calculation of TextInput Bounded Variables

2010-08-25 Thread claudiu ursica
If you pass to the function a bindable variable or more it will execute every time the input parameters change their values. C From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wed, August 25, 2010 5:03:45 PM Subject:

Re: [flexcoders] Perplexed: An XML Love Story

2010-08-26 Thread claudiu ursica
I just tried your first scenario: package { import flash.display.Sprite; public class Test extends Sprite { private var xml:XML = urlsset url http://www.nmh.org/nm/2-9991

Re: [flexcoders] Perplexed: An XML Love Story

2010-08-26 Thread claudiu ursica
Ok had a look into the raw xml also. You need to define a namespace for the schemaLocation to be bound to. Here is the code that works on my machine ... package { import flash.display.Sprite; public class Test extends Sprite { private var xml:XML =

Re: [flexcoders] Perplexed: An XML Love Story

2010-08-26 Thread claudiu ursica
over the url node value to get multiples? On 8/26/2010 10:49 AM, claudiu ursica wrote: Ok had a look into the raw xml also. You need to define a namespace for the schemaLocation to be bound to. Here is the code that works on my machine ... package

Re: [flexcoders] Perplexed: An XML Love Story

2010-08-26 Thread claudiu ursica
package { import flash.display.Sprite; import flash.events.Event; import flash.net.URLLoader; import flash.net.URLRequest; public class Test extends Sprite { private var loader:URLLoader; private var list:XML; public namespace test

Re: [flexcoders] Flex PHP Service with Date Parameters Help

2010-08-27 Thread claudiu ursica
I am not sure where your problem is in the php code. However if you think the date is the issue use timestamps which are basically numbers. I did that successfully in the past. On the flex side you can write an utility for translating that into a date for display purposes. Which line is 61 in

Re: [flexcoders] Re: 3D Carousel in Flex 4?

2010-08-29 Thread claudiu ursica
? Thanks -- got their coverflow working, but am stuck trying to create a carousel layout! --- In flexcoders@yahoogroups.com, claudiu ursica the_bran...@... wrote: You'll get that by implementing a custom coverflow layout class. http://www.rialvalue.com/blog/2010/04/14/carroflow-another-3d

Re: [flexcoders] Overriding Item Background In ItemRenderer Problem.

2010-08-29 Thread claudiu ursica
Working alternating 2 color renderer. Should give you a headstart: oddColor and evenColor are defined in css file. You can justg hardcode them in here. In took out data code and labels, left the skeleton ... ?xml version=1.0 encoding=utf-8? xmlns:s=library://ns.adobe.com/flex/spark

Re: [flexcoders] Re: Flashbuilder 4.0.1 debugger issue?

2010-09-01 Thread claudiu ursica
Hi, Happened to me and still happens from time to time, just pops out of the blue at 57%. There are some solutions if you google for them, but none of them seemed to work for me. In the end I fixed it all the time by creating a new project and taking from there the contents of the

Re: [flexcoders] couple questions about android / air

2010-09-02 Thread claudiu ursica
1. You need to install the air and then your application in order to work on the phone. Air you can download from the market If i remember correctly. 2. I developed and deployed used Flash CS5. Check the adobe labs there are lots of air for android stuff there. It probably tell you how to do it

Re: [flexcoders] External CSS file in Flex 4

2010-09-03 Thread claudiu ursica
Even when loaded run-time the css file comes compiled as a .swf. So what you are trying to achieve there is kind of impossible unless you can somehow compile the swf with PHP. Which I have not heard to be possible yet but maybe I'm mistaking. C From: Ghost

Re: [flexcoders] Cairngorm 2.2.1 with Flex 4

2010-09-05 Thread claudiu ursica
Cairngorm 2.x is not officially supported anymore by Adobe. You'd be better of trying to move towards the Parsley framework (w/o) Cairngorm 3 libs. Or you can try a relatively new kid on the block Robotlegs. C From: pritesh_mics pbhaw...@deloitte.com To:

Re: [flexcoders] Find in Files in Flash Builder 4

2010-09-06 Thread claudiu ursica
ctrl + shift + f or under eclipse ctrl + h C From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Mon, September 6, 2010 6:39:20 AM Subject: [flexcoders] Find in Files in Flash Builder 4 Hi I use Flex Builder 3 before . I can

<    1   2   3   >