Hey, here's my modified version of the Screen Capture application
The original version takes 3 screen shots at one time...but I wanted just one at a time, so I modded it a bit...and with the help of showQ binary, put in popup alerts...
INSTALL INSTRUCTIONS:
-> Get the MPKG installer from
here if you don't already have it
-> Copy the two .pkg files to you phone memory card.
-> Run the two .pkg files with the MPKG installer to install them. (P.S. you need both to run this application)
-> Run the application from the phone application menu
APP INFO
This application uses the mcap binary to capture the screen as an image. It stores the images in the path defined by the variable
MYIMAGES_PATH with the name
scrraw_ddmmyyhhmmss.jpg after a pause defined by the sleep command.
Code:
dd = day
mm = month
yy = year
hh = hour
mm = minutes
ss = seconds
By default, the screen captures are taken after a pause of
5 seconds and stored in
/mmc/mmca1/MyImages/ MODDING INFO
--> The path of the showQ binary can be changed by modifying the value of the variable
EZX_DIALOG_BINARY Code:
[EZX_DIALOG_BINARY='/mmc/mmca1/showQ/showQ' --> showQ in a folder called showQ in the memory card]
--> The screen captures can be stored in a different location by modifying the value of
MYIMAGES_PATH Code:
[e.g. MYIMAGES_PATH='/mmc/mmca1/ScreenCaps' --> saves screencaps in folder ScreenCaps in memory card]
--> Changing the duration of
sleep will change the duration of pause before which the screen is captured
Code:
[e.g. sleep 10 --> for 10 second duration]
CHANGE LOG: Version 1.1 to Version 2.0
1) Includes
date binary so it will work on stock (non-modified) firmwares
2) Creates the
MYIMAGES_PATH folder if it does not exist
3) Errors are logged in a file
/mmc/mmca1/cap_err_log.txt if they cannot be displayed by the showQ dialog
THE ORIGINAL APPLICATION HERE