search for: stopdrag

Displaying 5 results from an estimated 5 matches for "stopdrag".

Did you mean: stop_drug
2005 Sep 29
14
Draggables and overflow div''s revisited
I have two scrollable div''s (overflow:auto), one with a list of elements (the source) and the other is the drop target (dest). I''ve enabled ghosting so that the drag element gets out of the scrollable box (good). Interesting, at least on Firefox, the ghosted drag ends up going ''under'' the destination div when I drag it. No amount of z-order fidding seems to
2007 Mar 11
0
10 commits - libswfdec/js libswfdec/swfdec_js_color.c libswfdec/swfdec_js_connection.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_js_video.c libswfdec/swfdec_js_xml.c libswfdec/swfdec_script.c player/.gitignore
...pec movieclip_methods[] = { { "attachMovie", swfdec_js_movie_attachMovie, 3, 0, 0 }, { "duplicateMovieClip", swfdec_js_movie_duplicateMovieClip, 2, 0, 0 }, @@ -640,7 +619,6 @@ static JSFunctionSpec movieclip_methods[ { "stop", mc_stop, 0, 0, 0 }, { "stopDrag", swfdec_js_stopDrag, 0, 0, 0 }, { "swapDepths", swfdec_js_movie_swapDepths, 1, 0, 0 }, - { "toString", swfdec_js_movie_to_string, 0, 0, 0 }, { NULL } }; diff --git a/libswfdec/swfdec_js_net_stream.c b/libswfdec/swfdec_js_net_stream.c index ed9c81e....
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
...moveMovieClip", false], + ["_global.MovieClip.prototype", "setMask", true], + ["_global.MovieClip.prototype", "startDrag", false], + ["_global.MovieClip.prototype", "stop", false], + ["_global.MovieClip.prototype", "stopDrag", false], + ["_global.MovieClip.prototype", "swapDepths", false], + ["_global.MovieClip.prototype", "unloadMovie", false], + ["_global.MovieClip.prototype.getTextSnapshot", "prototype", false], + ["_global.MovieClip.prototype...
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
...totype.play = ASnative (900, 12); MovieClip.prototype.stop = ASnative (900, 13); MovieClip.prototype.nextFrame = ASnative (900, 14); @@ -346,7 +347,7 @@ MovieClip.prototype["removeMovieClip"] = ASnative (900, 19); MovieClip.prototype.startDrag = ASnative (900, 20); MovieClip.prototype.stopDrag = ASnative (900, 21); MovieClip.prototype.createTextField = ASnative (104, 200); -ASSetPropFlags (MovieClip.prototype, "getDepth", 128); +ASSetPropFlags (MovieClip.prototype, "getDepth,setMask", 128); ASSetNative (MovieClip.prototype, 901, "6createEmptyMovieClip,6beginF...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...; - case 0x05: - name = "prevFrame"; - break; - case 0x06: - name = "play"; - break; - case 0x07: - name = "stop"; - break; - case 0x09: - name = "stopAllSounds"; - break; - case 0x28: - name = "stopDrag"; - break; - default: - g_assert_not_reached (); - return; - } - call_void_function (state, name); -} - -/*** COMPILER ***/ - -typedef struct { - guint action; - const char *name; - void (* compile) (CompileState *state, guint action, guint len); -} SwfdecActionSpec; - -...