01-07-2014, 12:17 PM
Darn, you can play around with the _Run file and see if you can get anything to work. Here is some code you could play with.
Could try something like /system/bin/flashplayer4 -volume $FLASHPLAYER_VOL -layer 0 -nocursor ./angry_bird.swf
Code:
if nk [ -z "$FLASHPLAYER_VOL" ]; then
FLASHPLAYER_VOL=145
fi
if nk [ "$FLASHPLAYER_RENDERER" = "sw" ]; then
FLASHPLAYER_OPT="-sw"
else
FLASHPLAYER_OPT="-noimageaa -q 0"
fi
export LD_LIBRARY_PATH=/system/lib_flash4:$LD_LIBRARY_PATH
ln -sf /system/bin/MainEntry.AS3.swf /var/MainEntry.swf
#/system/bin/flashplayer4 -volume $FLASHPLAYER_VOL -layer 0 -nocursor $*
/system/bin/flashplayer4 -volume $FLASHPLAYER_VOL -layer 0 -nocursor "$@"
Could try something like /system/bin/flashplayer4 -volume $FLASHPLAYER_VOL -layer 0 -nocursor ./angry_bird.swf