search for: ondragov

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

Did you mean: mondragon
2007 Jun 28
0
Branch 'as' - libswfdec/swfdec_button_movie.c
...FDEC_BUTTON_OVER_DOWN_TO_OVER_UP: - return "onRelease"; + return SWFDEC_AS_STR_onRelease; case SWFDEC_BUTTON_OVER_DOWN_TO_OUT_DOWN: - return "onDragOut"; + return SWFDEC_AS_STR_onDragOut; case SWFDEC_BUTTON_OUT_DOWN_TO_OVER_DOWN: - return "onDragOver"; + return SWFDEC_AS_STR_onDragOver; case SWFDEC_BUTTON_OUT_DOWN_TO_IDLE: - return "onReleaseOutside"; + return SWFDEC_AS_STR_onReleaseOutside; case SWFDEC_BUTTON_IDLE_TO_OVER_DOWN: - return "onDragOver"; + return SWFDEC_AS_STR_onDragOve...
2006 Jun 26
2
Drag''n''drop DOM elements between (I)FRAMEs
.../FF drag''n''drop thing I found was http://script.aculo.us/ however their dragging doesn''t go across IFRAME/FRAMEs. Is there any way to implement scriptaculous/rails to do something similar drag''n''drop events as IE''s: ondragenter, ondragleave, ondragover, ondrop? that works across IFRAME/FRAMEs? _________________________________________________________________ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/
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
...gOut: _level0.button +unload _level0.button.instance11.over4 +unload _level0.button.instance12.over2 +unload _level0.button.instance13.up_over +load _level0.button.instance14.down2 +load _level0.button.instance15.down5 +load _level0.button.instance16.up_down +button OutDown => OverDown: _level0 +onDragOver: _level0.button +unload _level0.button.instance14.down2 +unload _level0.button.instance15.down5 +unload _level0.button.instance16.up_down +load _level0.button.instance17.over4 +load _level0.button.instance18.over2 +load _level0.button.instance19.up_over +button OverDown => OverUp: _level0 +onR...
2007 Mar 19
0
7 commits - libswfdec/jpeg libswfdec/swfdec_button_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_movie.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_video.c player/swfdec_debug_movies.c
...C_BUTTON_OVER_UP_TO_OVER_DOWN: + return "onPress"; + case SWFDEC_BUTTON_OVER_DOWN_TO_OVER_UP: + return "onRelease"; + case SWFDEC_BUTTON_OVER_DOWN_TO_OUT_DOWN: + return "onDragOut"; + case SWFDEC_BUTTON_OUT_DOWN_TO_OVER_DOWN: + return "onDragOver"; + case SWFDEC_BUTTON_OUT_DOWN_TO_IDLE: + return "onReleaseOutside"; + case SWFDEC_BUTTON_IDLE_TO_OVER_DOWN: + return "onDragOver"; + case SWFDEC_BUTTON_OVER_DOWN_TO_IDLE: + return "onDragOut"; + default: + g_assert_not_reached (...
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
...gOut: _level0.button +unload _level0.button.instance11.over4 +unload _level0.button.instance12.over2 +unload _level0.button.instance13.up_over +load _level0.button.instance14.down2 +load _level0.button.instance15.down5 +load _level0.button.instance16.up_down +button OutDown => OverDown: _level0 +onDragOver: _level0.button +unload _level0.button.instance14.down2 +unload _level0.button.instance15.down5 +unload _level0.button.instance16.up_down +load _level0.button.instance17.over4 +load _level0.button.instance18.over2 +load _level0.button.instance19.up_over +button OverDown => OverUp: _level0 +onR...
2007 Mar 07
0
11 commits - libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_scriptable.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h
...onMouseMove", + "onMouseDown", + "onMouseUp", + "onKeyUp", + "onKeyDown", + "onData", + NULL, + "onPress", + "onRelease", + "onReleaseOutside", + "onRollOver", + "onRollOut", + "onDragOver", + "onDragOut", + NULL, + NULL +}; + +const char * +swfdec_event_type_get_name (SwfdecEventType type) +{ + switch (type) { + case SWFDEC_EVENT_LOAD: + return event_names[0]; + case SWFDEC_EVENT_ENTER: + return event_names[1]; + case SWFDEC_EVENT_UNLOAD: +...
2007 Mar 15
0
11 commits - libswfdec/swfdec_debugger.c libswfdec/swfdec_debugger.h libswfdec/swfdec_event.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c
...un_(construct|init) to run the constructors or initialization functions diff --git a/libswfdec/swfdec_event.c b/libswfdec/swfdec_event.c index 06526fa..66d6aa7 100644 --- a/libswfdec/swfdec_event.c +++ b/libswfdec/swfdec_event.c @@ -60,7 +60,7 @@ static const char *event_names[] = { "onDragOver", "onDragOut", NULL, - NULL + "onConstruct" }; const char * @@ -226,7 +226,6 @@ swfdec_event_list_execute (SwfdecEventLi unsigned int condition, guint8 key) { unsigned int i; - const char *name; g_return_if_fail (list != NULL); @@ -238,9 +237,...
2007 Apr 04
0
Branch 'as' - 17 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
..._CONSTANT_STRING ("onPress"), + SWFDEC_AS_CONSTANT_STRING ("onRelease"), + SWFDEC_AS_CONSTANT_STRING ("onReleaseOutside"), + SWFDEC_AS_CONSTANT_STRING ("onRollOver"), + SWFDEC_AS_CONSTANT_STRING ("onRollOut"), + SWFDEC_AS_CONSTANT_STRING ("onDragOver"), + SWFDEC_AS_CONSTANT_STRING ("onDragOut"), + SWFDEC_AS_CONSTANT_STRING ("onConstruct"), + SWFDEC_AS_CONSTANT_STRING ("onStatus"), + SWFDEC_AS_CONSTANT_STRING ("error"), + SWFDEC_AS_CONSTANT_STRING ("NetStream.Buffer.Empty"), + SWFDEC...