Spiffy Hacks
Innotab 3 AutoDB and Angry Birds - Printable Version

+- Spiffy Hacks (https://spiffyhacks.harmonypogo.com)
+-- Forum: Vtech InnoTab (https://spiffyhacks.harmonypogo.com/forum-1.html)
+--- Forum: InnoTab 3 (https://spiffyhacks.harmonypogo.com/forum-5.html)
+--- Thread: Innotab 3 AutoDB and Angry Birds (/thread-22.html)

Pages: 1 2 3


Innotab 3 AutoDB and Angry Birds - 187 - 01-03-2014

Hi all,

Thanks for the hard work guys I have flashed the modified firmware and trying to install AutoDB. But it needs the camera button which the Innotab 3 doesn't have?

Also trying to run Angry birds and the screen calibration is way off, am I doing something fundamentally wrong here?

Thanks

Steve


RE: Innotab 3 AutoDB and Angry Birds - leductdh - 01-04-2014

I think that the innotab 3 screen is reduced compared to the innotab 2. there lies maybe the problem.


RE: Innotab 3 AutoDB and Angry Birds - 187 - 01-04-2014

That would make sense....now to try and get the flash files from somewhere....not really up for soldering at this point....


RE: Innotab 3 AutoDB and Angry Birds - Deak Phreak - 01-04-2014

(01-04-2014, 02:02 PM)187 Wrote: That would make sense....now to try and get the flash files from somewhere....not really up for soldering at this point....

You can extract one of the firmware dumps with 7zip and browse around to see if the firmware contains it at all.


RE: Innotab 3 AutoDB and Angry Birds - Tiberius - 01-04-2014

Just upgraded my son's Innotab to version 3 from the original innotab.

I couldn't work out why Angry Birds did not work on version 3 when it worked on version 1.

I'm glad I read this post as I know now the screen calibration is way way off.

A solution to this would be very nice.

Great work. Thanks.


RE: Innotab 3 AutoDB and Angry Birds - 187 - 01-05-2014

I used squshfs to get at the firmware filesystem now when I get a spare minute I will see if I can get it working....


RE: Innotab 3 AutoDB and Angry Birds - Deak Phreak - 01-06-2014

Does someone want to extract this to the root and test to see if it works on the Innotab 3?

[attachment=20]


RE: Innotab 3 AutoDB and Angry Birds - 187 - 01-07-2014

Thanks Deak but im afraid its exactly the same with the calibration way off...... Sad


RE: Innotab 3 AutoDB and Angry Birds - Deak Phreak - 01-07-2014

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.

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


RE: Innotab 3 AutoDB and Angry Birds - Deak Phreak - 01-07-2014

You can also try these and see if any work. Kinda tough doing all this blindly Smile If you modify your _Run code per my post above, be sure to change it back before trying these.

[attachment=21]
[attachment=22]