Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
9k views

Cloning object in Flex ? Canvas Degrafa ? help

I have a Canvas i would like to clone. This canvas hold a Degrafa Surface with several Geometry shapes. I tried the naive approach of return ObjectUtil.copy(graph_area) as Canvas; TypeError: Error ...
1
vote
1answer
278 views

Degrafa Best Practices

I've been learning Degrafa recently, and I have noticed that there is not much consistency amongst examples posted on the web. Is there a place where I can find degrafa best practices (esp. for ...
1
vote
1answer
581 views

Degrafa color changer

<degrafa:LinearGradientFill id="bluedream"> <degrafa:GradientStop color="#6ab5d0"/> <degrafa:GradientStop color="#388aae"/> </degrafa:LinearGradientFill> ...
1
vote
1answer
1k views

Flex binding and AS3

I have a degrafa surface into a canvas container. I want to link both width and height. When i use binding like it works as expected: // binding ...
0
votes
1answer
36 views

cannot automate some objects which uses degrafa libraries

In our application ,we have diagrams which make useof degrafa libraries.When this application is automated with flexmonkey any operation done on these diagrams are not recorded nor played back. Rest ...
0
votes
0answers
50 views

Does Flexmonkey support degrafa?

does flex monkey 3.2 support degrafa beta 3.1 or any other version of degrafa??? Flex monkey was able to connect to the application and also i can record other elements but I am not able to access ...
0
votes
2answers
101 views

Charting libray that offers Linked line chart with dots

I'm trying to plot data from several entities over time. Each entity will have its own line, so there will be several lines. Each line will be connected, but it's important that dots are drawn to ...
0
votes
2answers
105 views

Moving SWC to libs folder breaks project

I have a swc(degrafa) that I have been referencing externally in another folder on my computer. When I tried to move the swc to the libs folder I was no longer able to access the swc from my ...
0
votes
1answer
326 views

Error #1502 (script ran too long) thrown when using dynamic border metrics in a GraphicRectangularBorderSkin

I have a skin that's base clas is GraphicRectangularBorderSkin (from degrafa). I'm using it as a panel skin. I'm using Degrafa 3.2, Flex 3.2. It throws a #1502 error (thrown when a script runs too ...
0
votes
1answer
111 views

Degrafa States Memory Management

I was recently profiling my application that uses Degrafa States in the skins and noticed that doing so uses more memory than I expected. Between the SetProperty and State, they were using about 10% ...
0
votes
1answer
113 views

How to use Degrafa AutoShapes

I see a degrafa autoshape that I want to use but it seems like there are no autoshapes included in the swc. What do I have to do to use an autoshape?
0
votes
1answer
827 views

Skinning HorizontalList scrollbar with Degrafa

I am having some issues when trying to skin the scrollbar on a horizontalList with Degrafa. The scrollbar doesn't show up at all. I checked to see if the scrollbar is supposed to show up without the ...
0
votes
1answer
1k views

Degrafa:GraphicBorderSkin not working as canvas background via: borderSkin: ClassReference

Degrafa newbie here :-). I was able to get "com.degrafa.skins.CSSSkin" to create linear gradient backgrounds. Now I'm getting into more advanced stuff as I try to figure out radial gradients... I ...
0
votes
1answer
809 views

Degrafa drawing tools - do they exist?

I'm trying to find an easy way to use degrafa with MXML. I'm no artist and creating graphics using code just seems very wrong when you can't visualise what is needed to make the required art work. ...
0
votes
1answer
498 views

Degrafa Bezier spline bind data to string

I want to insert a bezier spline into my Canvas by this code <mx:Canvas id="graphCanvas" width="100%" height="100%" preinitialize="preInit()" /> <BezierSpline id="mySpline" ...
0
votes
1answer
274 views

Degrafa: Adding a RasterImage in ActionScript

I'm trying to add a RasterImage component to a Surface at runtime. My code runs as follows: var ri:RasterImage = new RasterImage(); ri.loadingLocation = new ...
0
votes
3answers
1k views

Flex mxml to as3, small class did i miss something?

I was using an mxml class but since i need to pass some properties at construction time, to make it easier i will convert it to as3 code. The class is RectangleShape and it just draws a rectangle. ...
0
votes
2answers
1k views

Flex redrawing background when Scrolling, degrafa: How?

I am using a canvas which has a degrafa background, so far so good. However when scrolling apears the background (degrafa grid) does not get redrawn. In the code the bg strokes are linked to the ...
-1
votes
1answer
117 views

Flex: Draw daisy using Degrafa. How?

I'm trying to create dynamic flower component to depict relations between parent object and it's children. Parent object is represented by daisy center and the children are represented by petals. Each ...