search for: onpress

Displaying 6 results from an estimated 6 matches for "onpress".

Did you mean: npress
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
...onRollOver: _level0.button +unload _level0.button.instance5.over4 +unload _level0.button.instance6.over2 +unload _level0.button.instance4.up_over +load _level0.button.instance8.down2 +load _level0.button.instance9.down5 +load _level0.button.instance10.up_down +button OverUp => OverDown: _level0 +onPress: _level0.button +unload _level0.button.instance8.down2 +unload _level0.button.instance9.down5 +unload _level0.button.instance10.up_down +load _level0.button.instance11.over4 +load _level0.button.instance12.over2 +load _level0.button.instance13.up_over +button OverDown => OutDown: _level0 +onDrag...
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
...onRollOver: _level0.button +unload _level0.button.instance5.over4 +unload _level0.button.instance6.over2 +unload _level0.button.instance4.up_over +load _level0.button.instance8.down2 +load _level0.button.instance9.down5 +load _level0.button.instance10.up_down +button OverUp => OverDown: _level0 +onPress: _level0.button +unload _level0.button.instance8.down2 +unload _level0.button.instance9.down5 +unload _level0.button.instance10.up_down +load _level0.button.instance11.over4 +load _level0.button.instance12.over2 +load _level0.button.instance13.up_over +button OverDown => OutDown: _level0 +onDrag...
2007 Jun 28
0
Branch 'as' - libswfdec/swfdec_button_movie.c
...case SWFDEC_BUTTON_IDLE_TO_OVER_UP: - return "onRollOver"; + return SWFDEC_AS_STR_onRollOver; case SWFDEC_BUTTON_OVER_UP_TO_IDLE: - return "onRollOut"; + return SWFDEC_AS_STR_onRollOut; case SWFDEC_BUTTON_OVER_UP_TO_OVER_DOWN: - return "onPress"; + return SWFDEC_AS_STR_onPress; case SWFDEC_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...
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
...ions or if they're independant of button type */ + switch (condition) { + case SWFDEC_BUTTON_IDLE_TO_OVER_UP: + return "onRollOver"; + case SWFDEC_BUTTON_OVER_UP_TO_IDLE: + return "onRollOut"; + case SWFDEC_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...
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
...ents; }; +static const char *event_names[] = { + "onLoad", + "onEnterFrame", + "onUnload", + "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_...
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
...SWFDEC_AS_CONSTANT_STRING ("onMouseDown"), + SWFDEC_AS_CONSTANT_STRING ("onMouseUp"), + SWFDEC_AS_CONSTANT_STRING ("onKeyUp"), + SWFDEC_AS_CONSTANT_STRING ("onKeyDown"), + SWFDEC_AS_CONSTANT_STRING ("onData"), + SWFDEC_AS_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...