okay..just spent a lot of time trying to figure out why SASHIMI wasn't selecting Internal Storage to install the .cab files in the Auto folder. It turns out that for WM 6.5.3 (i guess its also the case for 6.5.x) the Sashimi.mscr file needs to be edited to make sure it has the proper commands to move down and select internal storage.
The file needs to be edited as follows...credit goes to srsaleenstang at winmoexperts.
Quote:
Remove line2360:Repeat(SCListPosition)
line 2361: SendSpecial("Down")
Remove line 2362:EndRepeat replace with
line 2362: SendSpecial("Space")
Remove line2474:Repeat(SCListPosition)
line 2475: SendSpecial("Down")
Remove line2476:EndRepeat replace with
line 2476: SendSpecial("Space")
so both looks like:
SendSpecial("Down")
SendSpecial("Space")
sleep(250)
SendSpecial("space")
sleep(250)
SendSpecial("LeftSoft")
|