[flexcoders] Flash video playing fast for the first few seconds in Flash 10

2009-02-02 Thread Joy
Hi I have a app which plays composite video+audio. It was working fine in fla-9-player. But with 10-player, the video gets out of sync and plays very fast in the first few seconds, and then plays normally. This problem is not there with 9-player. I have set a buffer-time of 5 secs. Let me know

[flexcoders] Files converted in Mac not recognizable

2009-01-23 Thread Joy
Hi I have a Flex-app MP3 uploader, which works fine in Windows-OS. But when I 'convert' some MP3 files in Mac using some Mac-app-converter, it says File not supported (custom err msg). Is it something to do with the file-extension, when converted in Mac-based-app? M not sure. How do I overcome

[flexcoders] Re: Adding data to a bubbling event

2008-11-07 Thread Joy
Hi Andrew, what I think is that u want here, is to pass some parameter(s) along with the custom-event. If thats the case, then the sample below should help: 1. Create a custom package, eg: package com.joy9977.events { import flash.events.Event; /** *

[flexcoders] Customize Flex-3 DateField calender

2008-11-06 Thread Joy
Hi Is it possible to add a Close button to the Flex-3 DateField component? I want to have an explicit 'close' button in the default calender-area, on clicking which the calender closes. Thanks in advance.

[flexcoders] Google Analytic referrer using Flex/AS3

2008-09-04 Thread Joy
Hi I have a scenario, where in my flex app, on-click should take me to a new page, eg. http://www.newpage.com; using (flash.net.navigateToURL(newPageUrl, _blank);), but here I want to have my personal page http://www.myOwnPage.com; as the 'referrer' in Google-analytics. I want my site to be

[flexcoders] Re: Resizing a Loader object image

2008-08-11 Thread Joy
, Joy joy9977@ wrote: Hi I have a loader() object, which is loading new URLRequest( thumbSmall ) image. But I am not able to resize the width n height of this. Please let me know how we can do it. Thanks in advance.

[flexcoders] Resizing a Loader object image

2008-08-08 Thread Joy
Hi I have a loader() object, which is loading new URLRequest( thumbSmall ) image. But I am not able to resize the width n height of this. Please let me know how we can do it. Thanks in advance.

[flexcoders] Re: Convert Text to Bitmap using ActionScript-3 .

2008-07-10 Thread Joy
this will help others, who wanna know more about the same. Regards Joy --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Readup on BitmapData.draw() and PNGEncoder From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Convert Text to Bitmap using ActionScript-3 .

2008-07-09 Thread Joy
Hi I wanted to know is there a way, where we can take a Text, and convert it to an image-object (PNG) using ActionScript-3. Basically, I wanted the typed-in text to be converted to an Image. I want to do the same as breaking-text ie.CTRL+B (in Flash), in ActionScript-3. Thanks in advance

[flexcoders] SWF buffering/loading complete event

2008-05-21 Thread Joy
Hi Guys, can anyone please help me, I want to make a call to a third party app, once an SWF (whether from an MXML/AS3 application)gets loaded completely on a browser. To be more clear: 1. Suppose an AS3 file calls another SWF (heavy) or FLV inside it. So I want to know, when the inside SWFs has

[flexcoders] Re: SWF buffering/loading complete event

2008-05-21 Thread Joy
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/21/08, Joy [EMAIL PROTECTED] wrote: Guys, can anyone please help me, I want to make a call to a third party app, once an SWF (whether from an MXML/AS3 application)gets loaded completely on a browser

[flexcoders] Customizing the label's frequency (adding sub-divisions)

2008-04-28 Thread Joy
Hi Can anyone please help me regarding: 1. I want the divisions of the horizontal-axis labels (bar-chart) to be more, eg. in the example, I want the labels to come as 0.1, 0.2, 0.3 ... rather than the default 0.2, 0.4, 0.6 ... 2. I want the vertical-axis-labels to appear next to the tickmark,

[flexcoders] Re: Customizing the label's frequency (adding sub-divisions)

2008-04-28 Thread Joy
mx:AxisRenderer labelRotation=45 / /mx:verticalAxisRenderer mx:horizontalAxis mx:LinearAxis interval = .01 / /mx:horizontalAxis !-- horizontal axis renderer -- --- In flexcoders@yahoogroups.com, Joy joy9977@ wrote: Hi Can anyone please help me regarding: 1. I want the divisions

[flexcoders] Bar-chart gradient/color change depending on positive or negative value

2008-04-28 Thread Joy
Hi How do I apply different gradients to the bars (bar-chart), depending on positive or negative values eg. +ve values shud have a diff. gradient while negative should hav a diff. gradient. Also how do I make the 'showDataTips' draggable, so as to make dynamic change on the data. I want the