[flex_india:33987] Error #1014: Class flash.geom::PerspectiveProjection

2011-06-15 Thread aaddaz
hello Friends,

   I had developed an AIR application which loads an swf file. This
swf file uses PerspectiveProjection class. but when i load the swf
file I am getting the error mentioned below:
VerifyError: Error #1014: Class flash.geom::PerspectiveProjection
could not be found
I had checked for solutions but couldn't find in the case of AIR. In
case of web application it can be solved by setting the flashplayer
version to 10.

Can any one help me to solve this error.

Thanks & Regards,
Sudesh.

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com.
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.



[flex_india:29705] How to hide the disclosure icon in AdvanceDataGrid

2010-04-28 Thread aaddaz
Hi All,
I am working with AdvancedDataGrid control.
I have to hide the disclosure icon's of particular item only in the
grid based on certain conditions.
can any one help me to solve this problem.

Thanks
Sudesh.

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_in...@googlegroups.com.
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.



[flex_india:28033] Axiis data visualization framework

2010-01-27 Thread aaddaz
Hello Friends,
 has any one worked with the axiis data visualization framework.
My requirement is to provide a zooming functionality in treemap
http://www.axiis.org/examples/TreemapExample.html
can any one help me to some idea how do i move froward to achieve this
functionality.

Thanks
Sudesh.

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_in...@googlegroups.com.
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.



[flex_india:23765] Re: maximum limit to upload file in flex

2009-07-16 Thread aaddaz

Hi Arthipesa,
 Check your php server settings.

On Jul 15, 1:46 pm, arthipesa  wrote:
> then why my application cannot upload higher than 2 mb? I've check on
> my php settings and script, well I didn't restrict any size, so why?
> please gimme explaination, I'm sufferrr..
>
> On May 27, 4:03 pm, Mayur  wrote:
>
> > Hi...,
>
> > Actually there is no such limitation for this, in Flex directly - as
> > it is related to Flash Player.
>
> > And Flash Player officially supports 100 mb file. ( but we can
> > definitely upload / download much higher size then this. )
>
> > - Mayur
>
> > On May 26, 4:15 pm, flex  wrote:
>
> > > hi all,
> > > please tell me what is the maximum  file size limit for uploading file
> > > from flex ?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~--~~~~--~~--~--~---



[flex_india:23650] Re: How to Zoom the Image in particular position

2009-07-10 Thread aaddaz

HI prasad,
  You can use matrix for this.
help url: http://livedocs.adobe.com/flex/3/langref/flash/geom/Matrix.html


On Jul 9, 7:15 pm, prasad  wrote:
> Hi Folks,
>
>       I am using zoom effect for the image component. My requirement
> is , I want to zoom in a particular
> position (mouse pointed) of the image and it should zoom from the
> specified position. How to zoom from the particular position and how
> to move the image component whenever zoom effect is playing ?
>
> Thanks in Advance
>
> Prathab

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~--~~~~--~~--~--~---



[flex_india:23485] Re: Flex Canvas Background

2009-07-04 Thread aaddaz

Hi chellem,
Here is the code of a custom component that i have cheated
you can pass the gradient color values to the fillcolors. to get the
desired effect.

package
{
import mx.containers.Canvas;
import mx.styles.StyleManager;

public class GradientCanvas extends Canvas
{
/**
 * @private  //to hold the gradient color
 * */
private var _fillColors:Array = new Array;
public function set fillColors(value:Array):void
{
this._fillColors = value;
}

/**
 * @private  //to hold the gradient alphas
 * */
private var _fillAlphas:Array = new Array;
public function set fillAlphas(value:Array):void
{
this._fillAlphas = value;
}

/**
 * @private  // hold the corner radius
 * */
private var _cornerRadius:Number = 0;
public function set cornerRadius(value:Number):void
{
this._cornerRadius = value;
}

override protected function updateDisplayList(w:Number,
h:Number):void
{
super.updateDisplayList (w, h);

// retrieves the user-defined styles
var fillColors:Array = _fillColors;
var fillAlphas:Array = _fillAlphas;
var cornerRadius:Number = _cornerRadius;

// converts the fill colors to RGB color values
StyleManager.getColorNames (fillColors);

// ready to draw!
 graphics.clear ();

// draws the gradient
drawRoundRect (0, 0, w, h, cornerRadius,
fillColors,fillAlphas, verticalGradientMatrix (0, 0, w, h));
}
}
}


On Jul 2, 1:05 pm, chellem  wrote:
> Dear sir
>
> I need flex canvas gradient background samples.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~--~~~~--~~--~--~---