vote up 0 vote down star

Hi,

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" graphicsTarget="{[graphCanvas]}"  data="points"

verticalCenter="0" horizontalCenter="0" >

points is a string I initialize in the preInit() method

[Bindable]public var points : String;
private function preInit() : void {
		points = "200,100 200,300 100,300 300,500 500,300 400,300 400,100";
	}

But when I now build the project no spline is drawn on my canvas whereas directly integrating the data in the mxml works

<BezierSpline id="mySpline" graphicsTarget="{[graphCanvas]}"  data="200,100 200,300 100,300 300,500 500,300 400,300 400,100"

verticalCenter="0" horizontalCenter="0" >

Can someone help me? I need to dynamically change the data of the spline. Also answers that handle it programmatically are welcome as I do not really know how to redraw the spline on my canvas by code (don't know how to use the draw() method of the spline).

Thanks in advance

Sebastian

flag

1 Answer

vote up 1 vote down check

This code works for me:

[Bindable]
private var points:String;
private function preinit ():void
{
    points = "200,100 200,300 100,300 300,500 500,300 400,300 400,100";
}

<degrafa:BezierSpline id="mySpline" graphicsTarget="{[graphCanvas]}" data="{points}">
    <degrafa:stroke>
        <degrafa:SolidStroke weight="2" color="#0000FF"/>
    </degrafa:stroke>
</degrafa:BezierSpline>
link|flag
hmm ok but as I did that change, still nothing happens when I set the points string in my init method, no spline is drawn on my canvas. The points variable is bindable and setting the points variable in the preinitialize process also doesn't has an effect. More ideas? Can I programmatically evoke a repaint of the spline? – Xelluloid Jun 8 at 11:26
I've included the whole example in my answer. It works OK for me. Actually, I'm sure degrafa should start redrawing automatically, you can try using draw(graphics:Graphics, rc:Rectangle) method to repaint programmatically. – Hrundik Jun 8 at 12:18
ah ok you are right, it works finde, but now when i change the value of points to "200,200 100,100 300,300" for example error 1009 occurs Cannot access a property or method of a null object reference at com.degrafa.geometry.splines::BezierSpline/_assignControlPoints()[C:\Inetpub\wwwroot\Degrafa_Google_Dev\com\degrafa\geometry\splines\BezierSpline.as:586] at com.degrafa.geometry.splines::BezierSpline/preDraw()[C:\Inetpub\wwwroot\Degrafa_Google_Dev\com\degrafa\geometry\splines\BezierSpline.as:401] at com.degrafa.geometry.splines::BezierSpline/draw() and so on, you know what to do here? – Xelluloid Jun 8 at 14:41
Actually, I'm not that familiar with Degrafa. I would suggest using .points property of BezierSpline object instead of .data. It may help, or may not help. As a last resort, you may try removing the old spline from display list and creating the new one each time you need to do redrawing – Hrundik Jun 8 at 16:14
do you have any idea how I use the draw method? what Graphics object is meant and what Rectangle? Or how I insert points ... There are a lot of point classes. – Xelluloid Jun 9 at 7:52
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.