Switch to full style
Here you post everything that is not related to other forum areas.
stuff like how you like this forum for example ;)
Post a reply

Globalsettings Defenitions

Wed Dec 14, 2011 12:43 pm

Im using the Igo Primo v1.2



GLOBALSETTINGS
QuitOnDoubleClick = yes
X = 0
Y = 0
Width = 800
Height = 480
Arrange = No
BackgroundBitmap = ..\fondos\inicial.bmp
StartUpAnimation = FlyDown
ShutDownAnimation = FlyUp
Accelerated = yes
TopMost = no


Its possible after inicial.bmp show up, it automatically shutdown?

Wed Dec 14, 2011 12:45 pm

What are you talking about? Some Gps? Which one? What do you want to do ?
I do not understand your question at all.

Wed Dec 14, 2011 7:17 pm

This is the System Information utility that powers a lot of device unlocks.

I'm guessing you want the screen to close down after a set time. It is possible to do this but you need to use mortscript.

Thu Dec 22, 2011 8:00 pm

Fatboyfun wrote:This is the System Information utility that powers a lot of device unlocks.

I'm guessing you want the screen to close down after a set time. It is possible to do this but you need to use mortscript.



I've changed the first post...

Thats it... So the best way to close down is take off the line Backgound...

But I'm wondering in this line ShutDownAnimation = (can I set time here?)

Thu Dec 22, 2011 8:12 pm

There is no facility in SystemInformation to close by itself...

But by using Mortscript you can start SystemInformation and,(1) Wait a specified time and either close and exit SystemInformation, Or (2) simulate a mouse click to move onto a different screen, (Like i do in EasyShell!)

Set the device to run the script and use either...
1,
Run ("\{Path to}\SystemInformation.exe")
Sleep (5000) # Five seconds
Kill ("SystemInformation.exe")

Or
2,
Run ("\{Path to}\SystemInformation.exe")
Sleep (5000)
MouseClick (1,1)

The second script will require you to set up a 2x2 pixel button in the top left of the screen with a newini command.

Thu Dec 22, 2011 10:13 pm

ok i will try that...

thanks...

Thu Dec 22, 2011 10:24 pm

I use method two in EasyShell
Post a reply