search for: loadmovie

Displaying 20 results from an estimated 132 matches for "loadmovie".

2007 Oct 02
0
actionscript loadmovie
Hi! I want use in my file swf actionscript coomand "loadmovie" but I didn't see it into swfdec-0.5.2. I saw that tehre is a fuction (swfdec_movie_load) that permit to load a movie (second file swf flash) into a current swf file So...How can I do to call this fuction? while actionscript command should to be call by my swf file? Thanks! Bye Wolf PS sor...
2007 Oct 18
0
loadMovie ...uff uff
Hi list! I am tring to load a file swf into a movieclip in FLASH but....swfdec emit a signals that it is the following: signals[LAUNCH] = g_signal_new ("launch", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0, NULL, NULL, swfdec_marshal_VOID__STRING_STRING, G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); It is no connect anuwhere!!!! So...how can I do? Someboy can help me?
2007 Oct 12
1
Error in documentation of swfdec
Hi! In the page of swfdec "swfdec frontpage", in actionscript status, there is the list of Actionscript command implemented into swfdec ..... MovieClip, loadmovie is done but it no work How can I do? Bye! Wolf! PS sorry for my bad english ^^' --------------------------------- --------------------------------- L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail -------------- next part -------------- An HTML attachment w...
2007 Aug 23
0
10 commits - libswfdec/swfdec_as_function.c libswfdec/swfdec_as_object.c test/trace
...rties.as @@ -0,0 +1,11 @@ +// makeswf -v 7 -r 1 -o video-properties-7.swf video-properties.as + +#include "trace_properties.as" + +var a = new Video (); + +trace_properties (_global.Video, "_global", "Video"); +trace_properties (a, "local", "a"); + +loadMovie ("FSCommand:quit", ""); + diff-tree e27a852a549c19379769e54e36adff5050c18df7 (from 30ce63def44004f3b6a0e4ef86c5024cab1ad001) Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Thu Aug 23 16:59:49 2007 +0300 Add a testcase for _global's functions' properti...
2007 Sep 13
0
2 commits - libswfdec/swfdec_as_function.c test/trace
...oleau.com/Flash/articles/scope_chain.htm + +getMethod = function() { + var setProto = function() { + this.__proto__ = o1; + }; + setProto(); + + return function() { + trace(a); + }; +}; + +_global.a = 4; +o1 = {a:5}; +o2 = {a:6}; +a = 7; + +o2.theMethod = getMethod(); +o2.theMethod(); + +loadMovie ("FSCommand:quit", ""); diff --git a/test/trace/scope-chain-function-and-5.swf b/test/trace/scope-chain-function-and-5.swf new file mode 100644 index 0000000..fffebc2 Binary files /dev/null and b/test/trace/scope-chain-function-and-5.swf differ diff --git a/test/trace/scope-chai...
2007 Jun 27
0
Branch 'as' - 4 commits - test/trace
...nctions sets variables in the function's scope"); + +createEmptyMovieClip ("movie", 0); + +function foo () { + setTarget ("movie"); + var bla = 42; + setTarget (""); + trace (this.bla); + trace (movie.bla); +} +foo (); +trace (bla); +trace (movie.bla); + +loadMovie ("FSCommand:quit", ""); diff --git a/test/trace/definelocal-target-5.swf b/test/trace/definelocal-target-5.swf new file mode 100644 index 0000000..1dcc79e Binary files /dev/null and b/test/trace/definelocal-target-5.swf differ diff --git a/test/trace/definelocal-target-5.swf.tra...
2008 Jan 02
0
4 commits - libswfdec/Makefile.am libswfdec/swfdec_movie.c libswfdec/swfdec_shape_parser.c test/dump.c test/trace
...on.as @@ -0,0 +1,16 @@ +// makeswf -v 7 -s 200x150 -r 1 -o movieclip-version.swf movieclip-version.as + +trace (this); +trace ($version.substr (0, 3)); +trace (this.$version.substr (0, 3)); +if (this == _root) { + for (i = 5; i <= 8; i++) { + createEmptyMovieClip ("m" + i, i); + loadMovie ("movieclip-version-" + i + ".swf", "m" + i); + loadMovie ("movieclip-version-" + i + ".swf", "_level" + i); + } +} else { + delete this.$version; + trace (this.$version); + loadMovie ("fscommand:quit", ""); +} c...
2007 Jun 05
0
Branch 'as' - 8 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_number.c libswfdec/swfdec_as_scope.h
...duce the desired tests. +// The branch offsets have been adjusted. +trace ("Check various things when jumping into with commands"); +x = 0; +o = new Object (); +o.x = -1; +with (o) { + trace (x); +} +trace (x); +x++; +if (x < 10) { + asm { + branchalways "hi" + }; +} + +loadMovie ("FSCommand:quit", ""); diff --git a/test/trace/jump-into-with.swf b/test/trace/jump-into-with.swf new file mode 100644 index 0000000..2baaeb5 Binary files /dev/null and b/test/trace/jump-into-with.swf differ diff --git a/test/trace/jump-into-with.swf.trace b/test/trace/jump-int...
2007 Oct 12
0
Changes to 'refs/tags/0.5.3'
...es. Remove FIXME from code Implement MovieClip's _target property Add a test for MovieClip's target property Implement MovieClip's loadVariables method (calls loadVariables action) Update loadVariables test to include MovieClip's loadVariables method In LoadMovie run FSCommand even if target starts with _level Add a test for loadMovie's handling of FSCommand Make checking for _level in loadMovie case-insensitive when version < 7 Add test for loadMovie's handling of _level in different case Set target to original if setTarg...
2007 Jun 17
2
Branch 'as' - test/trace
test/trace/Makefile.am | 1 test/trace/values.as | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) New commits: diff-tree aaca94203d8a0ccb8feb32c0d57df3401fca0350 (from 987074e275ac77f8799e5fdf41890e8ef126b291) Author: Benjamin Otte <otte at gnome.org> Date: Sun Jun 17 12:56:42 2007 +0200 add values.as which provides some default values
2007 Oct 28
1
2 commits - libswfdec/swfdec_as_interpret.c test/trace
...divide-by-zero.as b/test/trace/crash-0.5.3-divide-by-zero.as new file mode 100644 index 0000000..6a94e5a --- /dev/null +++ b/test/trace/crash-0.5.3-divide-by-zero.as @@ -0,0 +1,5 @@ +// makeswf -v 7 -s 200x150 -r 1 -o crash-0.5.3-divide-by-zero.swf crash-0.5.3-divide-by-zero.as + +trace (1 / 0); + +loadMovie ("fscommand:QUIT", ""); diff --git a/test/trace/crash-0.5.3-divide-by-zero.swf b/test/trace/crash-0.5.3-divide-by-zero.swf new file mode 100644 index 0000000..6d57b22 Binary files /dev/null and b/test/trace/crash-0.5.3-divide-by-zero.swf differ diff --git a/test/trace/crash-0.5....
2007 Jul 27
0
11 commits - libswfdec/swfdec_asbroadcaster.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c libswfdec/swfdec_sprite_movie_as.c test/trace
...); + +emitter = new Object (); +AsBroadcaster.initialize (emitter); +o1 = new Object (); +o1.foo = function () { + trace ("o1"); +}; +emitter._listeners = new Object (); +emitter._listeners[10] = o1; +trace (emitter._listeners[10]); +trace (emitter.broadcastMessage ("foo")); + +loadMovie ("FSCommand:quit", ""); diff-tree 00f6b6ce1b01dd2f2eb2a0c1532c2b8f83741a36 (from e617568c097b604b54d0137431ee92ed0d427a0e) Author: Benjamin Otte <otte at gnome.org> Date: Fri Jul 27 13:06:24 2007 +0200 add a test for return values of AsBroadcaster diff --git a/test...
2007 Dec 11
0
3 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_movie.c test/trace
...de 100644 index 0000000..16c0e3d --- /dev/null +++ b/test/trace/crash-0.5.4-13491-stack-overflow.as @@ -0,0 +1,6 @@ +// makeswf -v 7 -s 200x150 -r 1 -o crash-0.5.4-13491-stack-overflow.swf crash-0.5.4-13491-stack-overflow.as + +x = { toString: function () { return String (this); } }; + +trace (x); +loadMovie ("fscommand:quit", ""); commit 6495efaab49bd9a19b57c11a4b23e1db00fdd868 Author: Benjamin Otte <otte at gnome.org> Date: Tue Dec 11 11:40:12 2007 +0100 properly exit when hitting a stack overflow (fixes #13491) diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/...
2007 Aug 15
3
2 commits - libswfdec/swfdec_as_object.c test/trace
...}, null); +o.__proto__.__proto__.__proto__.addProperty ("x", function () { trace (this.name); return 642; }, function () { trace (this.name + " set"); }); +trace (o.x); +o.x = 15; +trace (o.x); +o.__proto__.__proto__ = o.__proto__.__proto__.__proto__; +o.x = 15; +trace (o.x); + +loadMovie ("FSCommand:quit", ""); diff-tree d43d504a01b534233965d5c7fd851ae65ac5ce09 (from 01dc987b2068a641f131abed7da476b2f7fd852a) Author: Benjamin Otte <otte at gnome.org> Date: Wed Aug 15 21:59:48 2007 +0200 fix property setting when addProperty had been called on parents...
2007 Aug 15
0
4 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c test/trace
...wf property-native.as + +trace ("Check how addProperty overwrites native properties"); +this.__proto__._x = 42; +trace (this._x); +this.addProperty ("_x", function () { return 42; }, function () { trace ("set"); }); +trace (this._x); +this._x = 10; +trace (this._x); + +loadMovie ("FSCommand:quit", ""); diff-tree 130724227041a0e3916529bd498b207986880838 (from d930fe50031d06c34edff598697220405ce7e88b) Author: Benjamin Otte <otte at gnome.org> Date: Wed Aug 15 18:55:52 2007 +0200 query own properties before doing special ones diff --git a/lib...
2007 Nov 08
0
11 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c libswfdec/swfdec_resource_request.c
...-o moviecliploader-error-illegalrequest.swf moviecliploader-error-illegalrequest.as + +x = createEmptyMovieClip ("a", 0); +l = new MovieClipLoader (); +l.onLoadError = function (m, error, status) { + trace ("onLoadError: " + error + " (" + status + ")"); + loadMovie ("fscommand:quit", ""); +}; +l.loadClip ("http://example.com/404", "a"); + +onEnterFrame = function () { + trace ("enterFrame: " + (x == a ? "old movie" : "new movie")); +}; + +setTimeout (function () { loadMovie ("fscomman...
2007 Aug 20
0
8 commits - libswfdec/Makefile.am libswfdec/swfdec_as_string.c libswfdec/swfdec_as_string.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_load_object.c libswfdec/swfdec_loadvars_as.c test/trace
...); - //ASSetPropFlags (this, null, 0, 1); - //ASSetPropFlags (this.__proto__, null, 0, 1); for (var prop in this) { props.push (prop); } @@ -28,6 +30,7 @@ lv.onLoad = function (success) { }; lv.load ("params.txt"); +lv.load ("blah.txt"); function quit () { loadMovie ("FSCommand:quit", ""); diff-tree b73fa2d44918c74e7ea8797f9f54a61b63b80245 (from 51dbe7d127eca9614957017d866adaa30244658d) Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Mon Aug 20 12:14:54 2007 +0300 Make LoadObject set loaded property to false, update test...
2007 Jul 07
0
Branch 'as' - 7 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_super.c libswfdec/swfdec_as_super.h libswfdec/swfdec_as_with.c test/trace
...push "Four" + getvariable + push "Three" + getvariable + extends +}; +One.prototype.foo = function () { + super.foo (); + trace ("foo: 1"); +}; +Four.prototype.foo = function () { + super.foo (); + trace ("foo: 4"); +}; +x = new Four (); +x.foo (); + +loadMovie ("FSCommand:quit", ""); diff-tree a510f23c72c980303c86f869023237bc593fdfe0 (from cb0a5b3d2714123e50f45869100e4665c4100379) Author: Benjamin Otte <otte at gnome.org> Date: Sat Jul 7 17:28:02 2007 +0100 ad a test for calling different named functions via super diff -...
2007 May 31
0
Branch 'as' - 8 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_string.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c test/trace
...quot;Check isNaN and isFinite"); +numbers = [ Infinity, -Infinity, NaN, 0, this, true ]; +for (i = 0; i < numbers.length; i++) { + trace (numbers[i] + (isFinite (numbers[i]) ? ": finite" : ": inifinite") + (isNaN (numbers[i]) ? ", NaN" : "")); +}; + +loadMovie ("FSCommand:quit", ""); diff-tree 41b2667964b52d329563d8dc1416159db3fc8fe4 (from 9455718a161adcddb76a64ad8e56574bf33a085f) Author: Benjamin Otte <otte at gnome.org> Date: Thu May 31 12:34:57 2007 +0200 implement isFinite and isNaN diff --git a/libswfdec/swfdec_as_c...
2007 Jun 06
0
Branch 'as' - 13 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...ace/charat.as @@ -0,0 +1,10 @@ +// makeswf -v 7 -s 200x150 -r 1 -o charat.swf charat.as + +trace ("Check charAt and CharCodeAt"); +s = "Gr???? Gott ???????? ?????? ???????? ?????????"; +for (i = -10; i < 100; i++) { + trace (s.charAt (i)); + trace (s.charCodeAt (i)); +}; + +loadMovie ("FSCommand:quit", ""); diff-tree 10e5b6967cb6df937b34a9d9cad410bc7c9e4d59 (from d26079526cc944606e9f3fb72cdb72faa09d0494) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 6 16:31:36 2007 +0200 add test for deletes from withn a function defined in a with bloc...