Displaying 13 results from an estimated 13 matches for "endfill".
2007 Sep 09
1
can't play youtube videos with latest git
...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 lineTo on object
SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683):
swfdec_action_call_method: no function named endFill on object
SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683):
swfdec_action_call_method: no function named attachAudio on object
SwfdecSpriteMovie SWFDEC: ERROR: swfdec_as_interpret.c(683):
swfdec_action_call_method: no function named onStartMovie on object
SwfdecSpriteMovie SWFDEC: ERROR:...
2006 Aug 24
2
files-from and filter from one file?
Hi,
I'm sorry if this is a dumb question, but I have tried millions of
combinations of settings.
Is it possible to somehow combine --files-from and --filter into one file,
so that I can use one here-document?
Using the + directive in --filter seems to always give me slightly different
results.
What I do now is without --files-from, but it means the directory tree is
not recreated on the
2007 Jan 28
3
has this been asked about before ? multilple exclude files
I'm was wondering if this has been asked about/for
multiple exclude-from files ? Where I could find this
useful is say I had a common or base exclusion list
for all my AIX boxes --exclude-from=/foo/aix_base
Then be able to add for say all my AIX boxes that are
running SAP
--exclude-from=/foo/aix_base --exclude-from=/foo/sap
or
--exclude-from=/foo/aix-base,/foo/sap
and so on ...
2003 Oct 13
1
Problem in sftp 'ls' command output
Hello,
I have recently moved from OpenSSH 3.6 to 3.7 (portable version) :
[pyb at nihao tmp]$ ssh -v
OpenSSH_3.7p1, SSH protocols 1.5/2.0, OpenSSL 0.9.6h 5 Dec 2002
(okay, the SSL release is a little old but that's not the subject).
I am also using scripts to perform automated sftp transfers between some
systems. The 3.7 release of OpenSSH broke my scripts, which made me sad
and my
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
...44
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:quit", "");
diff-tree 24f7a0aa475f8eb58863d575ced46d272d1ece2c (from d0afac4245b82d3ef21ba02389c31de33b8526bd)
Author:...
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...ered, 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()
+ (parseHour(startTimeField.text) * 3600 * 1000)
@@ -73,6 +89,13 @@ package org.ovirt.charts {
load();
}
+ private function se...
2008 Mar 05
0
Press delete key three times in R-2.6.1 to get segmentation fault (PR#10892)
Full_Name: Poor Yorick
Version: R-2.6.1
OS: 2.4.21-50.ELhugemem #1 SMP Tue May 8 17:10:31 EDT 2007 i686 i686 i386 GNU/Linux
Submission from: (NULL) (148.168.40.4)
After compiling R-2.6.1 with gcc-4.2.1 pressing the 'delete' key three times in
an interactive session causes R to malfunction, spitting out an infinite stream
of errors. I have also replicated the issue in R-2.5.1:
R
2007 Nov 20
0
4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/image test/trace
...+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.createEmptyMovieClip ("a", 0);
+a._xscale = 50;
+a._yscale = 50;
+a.a._x = 50;
+a.a._y = 50;
+a.a.a._xscale = 200;
+a.a.a._yscale = 200;
+re...
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
....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);
+};
+
+install (Object.prototype);
+createEmptyMovieClip ("a", 0);
+createEmptyMovieClip ("b", 1);
+rectangle (a, 0, 0, 0, 200, 150);...
2007 Dec 03
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_gradient_pattern.c libswfdec/swfdec_gradient_pattern.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_pattern.c
...g: x * 100 + 50, h: y * 100 + 50 };
+ beginGradientFill (type, colors, alphas, ratios, matrix);
+ moveTo (x * 100 + 10, y * 100 + 10);
+ lineTo (x * 100 + 10, y * 100 + 90);
+ lineTo (x * 100 + 90, y * 100 + 90);
+ lineTo (x * 100 + 90, y * 100 + 10);
+ lineTo (x * 100 + 10, y * 100 + 10);
+ endFill ();
+ x++;
+ if (x > 3) {
+ x = 0;
+ y++;
+ }
+};
+
+// 1
+foo = function (o, s) {
+ if (!o.x)
+ o.x = 7;
+ else
+ o.x--;
+ trace (s + " valueof: " + o.x);
+ return o.x;
+};
+c = { };
+c.length = { valueOf: function () { return foo (this, "color"); } };
+c...
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
..., true],
+ ["_global.MovieClip.prototype", "createTextField", false],
+ ["_global.MovieClip.prototype", "curveTo", true],
+ ["_global.MovieClip.prototype", "duplicateMovieClip", false],
+ ["_global.MovieClip.prototype", "endFill", true],
+ ["_global.MovieClip.prototype", "getBounds", false],
+ ["_global.MovieClip.prototype", "getBytesLoaded", false],
+ ["_global.MovieClip.prototype", "getBytesTotal", false],
+ ["_global.MovieClip.prototype", &qu...
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
....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);
+};
+
+install (Object.prototype);
+createEmptyMovieClip ("a", 0);
+createEmptyMovieClip ("b", 1);
+rectangle (a, 0, 0, 0, 200, 150);...
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
...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, 0xFF, 50, 50, 100, 100);
+
+a.setMask (clip);
+clip.removeMovieClip ();
+
diff --git a/test/image/mask-textfield-5.swf b/test/image/mask-textfield-...