Displaying 2 results from an estimated 2 matches for "swfdec_movie_get_asprop_index".
2008 Apr 26
2
[Bug 15726] New: unable to play media
...out what URL is *actually* being played. That would be a useful
addition to the properties of a SWF file; i.e. if it is streaming something and
where from).
When running on the command-line I get:
eve:[~]% swfdec-player ~/Desktop/FairfaxFlashPlayer.swf 
SWFDEC: ERROR: swfdec_movie_asprops.c(446): swfdec_movie_get_asprop_index:
property _focusrect not implemented
SWFDEC: ERROR: swfdec_movie_asprops.c(446): swfdec_movie_get_asprop_index:
property _focusrect not implemented
Please let me know if you have a newer version (I am running 0.6.6) you would
like me to test or if there is further information I can supply that wil...
2007 Jun 27
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie_as.c
...L,  NULL }, //"_quality"
+  { 0, SWFDEC_AS_STR__xmouse,	mc_xmouse_get,	    NULL },
+  { 0, SWFDEC_AS_STR__ymouse,	mc_ymouse_get,	    NULL },
+  { 0, SWFDEC_AS_STR__parent,	mc_parent,	    NULL },
+  { 0, SWFDEC_AS_STR__root,	mc_root,	    NULL },
 };
 
 static inline int
@@ -387,6 +388,8 @@ swfdec_movie_get_asprop_index (SwfdecMov
 
   for (i = 0; i < G_N_ELEMENTS (swfdec_movieclip_props); i++) {
     if (swfdec_movieclip_props[i].name == name) {
+      if (swfdec_movieclip_props[i].needs_movie && !SWFDEC_IS_SPRITE_MOVIE (movie))
+	return -1;
       if (swfdec_movieclip_props[i].get == NULL) {
 	SWFDEC_...