Re: [flexcoders] I don't know if I need Flex (please help me to decide)

2010-09-06 Thread claudiu ursica
You know that RemoteObject is built on top of NetConnection. What you ultimately do is make remote procedure calls. You don't need flex but then you need to do the work yourself. Serialization and de-serialization on the server side. On the other hand flex is open source so If you don't need

Re: [flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-07 Thread claudiu ursica
AMFPHP works with flash also. You need to update the data yourself within controls since no bindings are available, but it will be working. C From: enridp enr...@yahoo.com.ar To: flexcoders@yahoogroups.com Sent: Tue, September 7, 2010 5:09:34 PM Subject:

Re: [flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-08 Thread claudiu ursica
Same here, I don't do php on regular basis but whenever I needed to do something I was able to pull it through. And at least where I come from, php hosting is really cheap. I only saw a presentaion by Ben Forta regarding Cold Fusion. It did not seem rocket science but I don't know how hard it

Re: [flexcoders] ItemRenderer issue

2011-08-29 Thread claudiu ursica
You should override the data setter and try to figure out from there what state the renderer should be in based on the incomming data. The renderers are created by the listbased control that parents them. Depending if you are using visualization or not the control will create renderes for each

Re: Re: [flexcoders] ItemRenderer issue

2011-08-29 Thread claudiu ursica
override the data setter in order to reinit my itemrenderer and set the visualization to the parent listbase component can impove the performance of my code right ? At 2011-08-29 20:28:55,claudiu ursica the_bran...@yahoo.com wrote:   You should override the data setter and try to figure out from

Re: Re: Re: [flexcoders] ItemRenderer issue

2011-08-29 Thread claudiu ursica
the useVIrtualLayout to true s:List useVirtualLayout=true / At 2011-08-29 20:42:50,claudiu ursica the_bran...@yahoo.com wrote:   What do you mean by set the visualization to the parent listbase component? From: j2me_soul j2me_s...@163.com To: flexcoders@yahoogroups.com Sent

Re: [flexcoders] Which is fast use left righ or width height

2011-09-05 Thread claudiu ursica
If you have value which are constant for with and height use width and height, it will avoid remeasuring. C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Monday, September 5, 2011 2:20 PM Subject: [flexcoders] Which is fast

Re: [flexcoders] Restrict access to an API to only allowed applications

2011-09-26 Thread claudiu ursica
You can embed the keys instead of keeping them in plain site.  check this session I think you will find some useful stuff: http://tv.adobe.com/watch/360flex-conference/encrypting-flex-protecting-revenue-by-andrew-westberg/ C From: Haykel BEN JEMIA

Re: [flexcoders] tv.adobe.com hacked??

2011-09-26 Thread claudiu ursica
I do get the same trailer and then the streaming just freezes... Weird.

Re: [flexcoders] Restrict access to an API to only allowed applications

2011-09-26 Thread claudiu ursica
this is definitly better than storing the keys in plain text format, but still easy to crack. Any other suggestions. Thanks, Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Mon, Sep 26, 2011 at 11:33 AM, claudiu ursica the_bran...@yahoo.com wrote:   You can embed

Re: [flexcoders] PayPal integration - ready made component?

2011-10-01 Thread claudiu ursica
This might help: http://miti.pricope.com/2009/07/30/integrating-paypal-express-checkout-with-air-and-flex/ Dig into the blog there might be other articles on the same topic. C From: mulchand12345 mulchand12...@yahoo.in To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Flash Builder not tracing, breakpoint functionality lost, no compiler errors

2011-10-19 Thread claudiu ursica
There is some setting that gets overridden, you need to Google for it though I forgot since it happen. I found the answer on a blog. Once you find it is pretty easy to fix. Sorry for not being more precise, i just forgot to bookmark the link. C From:

Re: [flexcoders] pass String with socket

2011-10-25 Thread claudiu ursica
First time when you read the buffer is consumed. Comment the trace and it should work. C From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, October 25, 2011 6:39 PM Subject: [flexcoders] pass String with socket   Hi, I

Re: [flexcoders] HTTPService post to return an image?

2011-11-01 Thread claudiu ursica
HTTPService cannot handle binary data and images fall under this category. U have top go URLLoader. C From: method_air loudj...@hotmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, November 1, 2011 7:03 PM Subject: [flexcoders] HTTPService post to return

Re: [flexcoders] Pb with List

2011-11-20 Thread claudiu ursica
Images load asynchronously, so it obviously take time and don't load all at once. What class are you using to display the images? C From: cjacquel73 chjacque...@gmail.com To: flexcoders@yahoogroups.com Sent: Sunday, November 20, 2011 3:44 PM Subject:

Re: [flexcoders] Re: Pb with List

2011-11-20 Thread claudiu ursica
: [flexcoders] Re: Pb with List   I use an ItemRenderer with mx:Image Thx, CJ --- In flexcoders@yahoogroups.com, claudiu ursica the_braniak@... wrote: Images load asynchronously, so it obviously take time and don't load all at once. What class are you using to display the images? C

Re: [flexcoders] Re: getting the total of values of an array collection that is updated manually

2011-12-09 Thread claudiu ursica
You know there is an working example in this book pretty close to your, is flex 4 though but you will get the picture. http://www.amazon.com/Adobe-Flex-Training-Michael-Labriola/dp/0321660501 C From: ZIONIST stinas...@yahoo.com To:

Re: [flexcoders] Using arraycollection as text for a flex TextArea Component.

2011-12-26 Thread claudiu ursica
What do you want exactly in the text area? Do the formatting by hand: Something like: for all tiem in the collection output:String = itmem.text  + item price + .. + /n; Make sure to keep in sync with the collection. C From: ZIONIST stinas...@yahoo.com To:

Re: [flexcoders] Resize and Scale Window Content

2011-12-26 Thread claudiu ursica
In theory yes, by using percent width and height for components, in practice how much works out of the box depeds on every particular case. C From: hkondylk kondy...@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, December 26, 2011 5:35 PM Subject:

Re: [flexcoders] Re: Using arraycollection as text for a flex TextArea Component.

2011-12-27 Thread claudiu ursica
Actually I should show the last one. try txt += entry.OrderNumber + + , + + entry.Produ then the string will have all the entries added not replaced. C From: ZIONIST stinas...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, December 27,

Re: [flexcoders] Resize and Scale Window Content

2011-12-27 Thread claudiu ursica
with percent height and width. But this doesn't work if window is resize by as3 script during creationcomplete phase. If someone has an idea? thanks Le 27/12/11 07:54, Asad Zaidi a écrit :   you can acheive it using Grid control also. depends upon your requirement.   Zaidi From: claudiu ursica

Re: [flexcoders] Re: Using arraycollection as text for a flex TextArea Component.

2011-12-27 Thread claudiu ursica
Either the whole entry is null or one of it's properties. Check which is null, and guard your code if null put empty string or whatever you seem fit for it. C From: ZIONIST stinas...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, December 27, 2011

Re: [flexcoders] Timed Progress bar for 2 minutes.

2012-01-10 Thread claudiu ursica
Are you sure it is exactly 2 minutes? DO you really need to show progress? A spinning animation might suit you better, keep it spinning until the load is done. C From: Venkat M venkat_...@yahoo.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com

Re: [flexcoders] privacy settings popup

2012-02-08 Thread claudiu ursica
You can't, FP does not provide a close event for that panel. There was a request in Jira but I am not sure what the status of this is  You need to listen for camera events and guess. There is activity and status events. In addition what I do I start a timer and monitor for a couple of

Re: [flexcoders] Adding a button in VideoPlayer

2012-02-23 Thread claudiu ursica
Can you show code, I assume you marked the button as skinPart. C From: grimmwerks gr...@grimmwerks.com To: flexcoders@yahoogroups.com Sent: Thursday, February 23, 2012 8:41 PM Subject: [flexcoders] Adding a button in VideoPlayer   Ok I don't know if I'm

Re: [flexcoders] ControlBar not visible in Flex 4.6

2012-03-12 Thread claudiu ursica
You need to put your stuff inside controlBarContent array. C From: Dave Glasser dglas...@pobox.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Monday, March 12, 2012 5:28 PM Subject: [flexcoders] ControlBar not visible in Flex 4.6   I

Re: [flexcoders] Webcam recording without flash/flex?

2012-03-12 Thread claudiu ursica
As far as I know JS does not have support of capturing camera. If somebody else knows different I would be happy to be proven wrong. Probably you can do the same with silverlight as with flash. C From: mulchand12345 mulchand12...@yahoo.in To:

Re: [flexcoders] Tempermental URLLoader.load()

2012-03-25 Thread claudiu ursica
Can you paste the whole class? I did experience issues with Sound.load() this week , so I went and load the sounds via URLLoader. I found it odd at least sound load failed to provide any feedback sometimes. Yet wit URLLoader I always got something whether complete or error. C

Re: [flexcoders] Resetting Chart scale on LineAxis

2012-07-09 Thread claudiu ursica
Hi Karl, Can you share some basic example? I don't know how your chart and data looks like, and how you add/discard new data. I see you already ran into this and did not work... https://userflex.wordpress.com/2011/04/21/update-linear-axis/ C From: k.sigiscar

Re: [flexcoders] Re: Resetting Chart scale on LineAxis

2012-07-09 Thread claudiu ursica
the minimum and maximum properties of the DateTimeAxis to the values of our timeline component). Therefore, we cannot do the same thing as he does to reset the chart scale. Best regards, Karl. --- In flexcoders@yahoogroups.com, claudiu ursica the_braniak@... wrote: Hi Karl, Can you share some

[flexcoders] FWD:

2012-09-25 Thread claudiu ursica
wow this is crazy you should look into it http://www.business7newson.net/jobs/?alert=15824

Re: [flexcoders] Binding using as3

2013-01-31 Thread claudiu ursica
look at BindingUtils.bindProperty() C From: aceoohay pa...@compuace.com To: flexcoders@yahoogroups.com Sent: Wednesday, January 30, 2013 11:17 PM Subject: [flexcoders] Binding using as3   I have customized textinput control with a property of x. In my

<    1   2   3