search for: beginfill

Displaying 8 results from an estimated 8 matches for "beginfill".

2007 Sep 09
1
can't play youtube videos with latest git
...3): swfdec_action_call_method: no function named onPauseMovie on object SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683): swfdec_action_call_method: no function named clear on object SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683): swfdec_action_call_method: no function named beginFill on object SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683): swfdec_action_call_method: no function named lineStyle on object SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683): swfdec_action_call_method: no function named moveTo on object SwfdecSpriteMovie SWFDEC: ERROR: swfdec_...
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...private var selectedBar:SingleBar; /* Private, class-specific functions */ + + //this has to happen after the scale area has been rendered, or it will have no width. + private function drawLine(event:Event):void { + var xg:Graphics = XAxisLabelArea.graphics; + xg.beginFill(Constants.axisColor); + xg.lineStyle(1,Constants.axisColor); + xg.moveTo(yScale.width,0); + xg.lineTo(Constants.width,0); + xg.endFill(); + } + private function timeRangeAdjusted(event:Event):void { var t1:Number = startDateField.selectedDate.getTime()...
2007 Oct 11
0
10 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_buffer.c libswfdec/swfdec_movie_as_drawing.c test/image test/sound
...st/image/drawing-zorder-8.swf.png differ diff --git a/test/image/drawing-zorder.as b/test/image/drawing-zorder.as new file mode 100644 index 0000000..cd32c9e --- /dev/null +++ b/test/image/drawing-zorder.as @@ -0,0 +1,19 @@ +// makeswf -v 7 -s 200x150 -r 1 -o drawing-zorder.swf drawing-zorder.as + +beginFill (0xFF); +lineStyle (10, 0xFF00); +moveTo (0, 0); +lineTo (0, 100); +lineTo (100, 100); +lineTo (100, 0); +lineTo (0, 0); +endFill (); +beginFill (0xFF0000); +moveTo (50, 50); +lineTo (50, 150); +lineTo (150, 150); +lineTo (150, 50); +lineTo (50, 50); +endFill (); + +//loadMovie ("FSCommand:qui...
2007 Nov 20
0
4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/image test/trace
...b/test/image/mask-different-parent.as new file mode 100644 index 0000000..51f35dc --- /dev/null +++ b/test/image/mask-different-parent.as @@ -0,0 +1,30 @@ +// makeswf -v 7 -s 200x150 -r 1 -o mask-different-parent.swf mask-different-parent.as + +rectangle = function (mc, color, x, y, w, h) +{ + mc.beginFill (color); + mc.moveTo (x, y); + mc.lineTo (x, y + h); + mc.lineTo (x + w, y + h); + mc.lineTo (x + w, y); + mc.lineTo (x, y); + mc.endFill (); +}; + +createEmptyMovieClip ("a", 0); +a.createEmptyMovieClip ("a", 0); +a.a.createEmptyMovieClip ("a", 0); +a.a.a.create...
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...ustom/mouse-addProperty-relevant.as @@ -0,0 +1,23 @@ +// makeswf -v 7 -s 200x150 -r 1 -o mouse-addProperty-relevant.swf mouse-addProperty-relevant.as + +trace ("Check if addProperty proeprties make movies sensitive to mouse events"); + +rectangle = function (mc, color, x, y, w, h) { + mc.beginFill (color); + mc.moveTo (x, y); + mc.lineTo (x, y + h); + mc.lineTo (x + w, y + h); + mc.lineTo (x + w, y); + mc.lineTo (x, y); + mc.endFill (); +}; + +install = function (mc) { + mc.addProperty ("onRollOver", function () { trace ("onRollOver: " + this); }, null); +}; + +ins...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...uot;, true], + ["_global.MovieClip.prototype", "attachMovie", false], + ["_global.MovieClip.prototype", "attachVideo", true], + ["_global.MovieClip.prototype", "beginBitmapFill", true], + ["_global.MovieClip.prototype", "beginFill", true], + ["_global.MovieClip.prototype", "beginGradientFill", true], + ["_global.MovieClip.prototype", "beginMeshFill", true], + ["_global.MovieClip.prototype", "clear", true], + ["_global.MovieClip.prototype", "c...
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...trace/mouse-addProperty-relevant.as @@ -0,0 +1,23 @@ +// makeswf -v 7 -s 200x150 -r 1 -o mouse-addProperty-relevant.swf mouse-addProperty-relevant.as + +trace ("Check if addProperty proeprties make movies sensitive to mouse events"); + +rectangle = function (mc, color, x, y, w, h) { + mc.beginFill (color); + mc.moveTo (x, y); + mc.lineTo (x, y + h); + mc.lineTo (x + w, y + h); + mc.lineTo (x + w, y); + mc.lineTo (x, y); + mc.endFill (); +}; + +install = function (mc) { + mc.addProperty ("onRollOver", function () { trace ("onRollOver: " + this); }, null); +}; + +ins...
2007 Nov 20
0
19 commits - libswfdec/swfdec_audio_event.c libswfdec/swfdec_bits.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_image.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
.../mask-remove-clip.as b/test/image/mask-remove-clip.as new file mode 100644 index 0000000..ecb136b --- /dev/null +++ b/test/image/mask-remove-clip.as @@ -0,0 +1,22 @@ +// makeswf -v 7 -s 200x150 -r 1 -o mask-remove-clip.swf mask-remove-clip.as + +rectangle = function (mc, color, x, y, w, h) +{ + mc.beginFill (color); + mc.moveTo (x, y); + mc.lineTo (x, y + h); + mc.lineTo (x + w, y + h); + mc.lineTo (x + w, y); + mc.lineTo (x, y); + mc.endFill (); +}; + +createEmptyMovieClip ("clip", 0); +rectangle (clip, 0, 0, 0, 100, 100); + +createEmptyMovieClip ("a", 1); +rectangle (a, 0xF...