Hi all,
Want to go further in Pointui Customization?
Pro Tweak will be here to help you!
This thread contains all you have to know to customize your Home 2 Pro version.
[29 may 2009] ABCDEFGabcdefg have done a very good tool to help all Pro users!!!
This great tool allow you to easily configure actions and events on your Home 2 screen.
Choose control, choose action and generate your own custom.cs file.
Once done, just copy it in your Home folder (\Program Files\Home2).
Some usual paths...
Pointui Home 2 screens
- Contacts:
ScreenContacts contacts;
FlowStack.Branch(contacts);
Running apps:
ScreenRunningApps RunningApps;
FlowStack.Branch(RunningApps);
Programs:
ScreenPrograms Programs;
FlowStack.Branch(Programs);
Settings:
ScreenSettings Settings;
FlowStack.Branch(Settings);
Customize:
ScreenCustomize Customize;
FlowStack.Branch(Customize);
Windows Mobile screens
- Contacts:
ProcessStart("poutlook.exe", "contacts");
New Contact:
ProcessStart("poutlook.exe", "contacts -new");
Calendar:
ProcessStart("poutlook.exe", "calendar"); //default view
ProcessStart("poutlook.exe", "calendar -va"); //agenda
ProcessStart("poutlook.exe", "calendar -vd"); //day view
ProcessStart("poutlook.exe", "calendar -vw"); //week view
ProcessStart("poutlook.exe", "calendar -vm"); //month view
ProcessStart("poutlook.exe", "calendar -vy"); //year view
ProcessStart("poutlook.exe", "calendar -vl");
New appointment:
ProcessStart("poutlook.exe", "calendar -new");
Tasks:
ProcessStart("poutlook.exe", "tasks");
New appointment:
ProcessStart("poutlook.exe", "tasks -new");
Messaging:
ProcessStart("tmail.exe");
Specific email account:
ProcessStart("tmail.exe", "-service "SpecificEmailAccountName"");
SMS/MMS:
ProcessStart("tmail.exe", "-service "SMS"");
New SMS:
ProcessStart("tmail.exe", "-service "SMS" -to");
File Explorer:
ProcessStart("fexplore.exe");
Phone:
ProcessStart("cprog.exe");
