Re: iPhoneToday 0.3 (iPhone Clone Today) 5-1-09
No, I don't believe it currently can support it, as the Today screen is handled differently.
Here is a sample of the .xml settings and a brief dscription of each below for those who want to configure their own shortcuts or change the settings to their own preference.
Icons Settings: (icons.xml)
Example:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<root>
<screen>
<icon name="Phone" image="phone.png" exec="program1.exe" parameters="" type="0" execAlt="program2.exe" parametersAlt=""/>
</screen>
<screen>
<icon name="SMS" image="sms.png" exec="\Windows\calendar.exe" parameters="tasks" type="5"/>
</screen>
</root>
name: The icon name or text
image: image file (the image will be in \iPhoneToday\icons folder)
exec: Main executable
parameters: Parameters for main executable
execAlt: Alternative executable, run when we have notifications
parametersAlt: Parameters for alternative executable
Type: Type of icon (0:Normal, 1: Missed Calls, 2: Unread SMS, 3: Unread MMS, 4: Unread Email, 5: Nexts Appointments, 6: Incompleted Tasks)
Options: (settings.xml)
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
Example for VGA:
<root>
<iconWidth>90</iconWidth>
<numIcons>4</numIcons>
<moveThreshold>15</moveThreshold>
<maxVelocitiy>240</maxVelocitiy>
<minVelocitiy>10</minVelocitiy>
<refreshTime>15</refreshTime>
<screenHeigth>460</screenHeigth>
<Sunday>Sun</Sunday>
<Monday>Mon</Monday>
<Tuesday>Tue</Tuesday>
<Wednesday>Wed</Wednesday>
<Thursday>Thu</Thursday>
<Friday>Fri</Friday>
<Saturday>Sat</Saturday>
</root>
iconWidth: Width of icons in pixels
numIcons: Num icons for row
moveThreshold: Mix movement in pixels for init movement
maxVelocitiy: Range of velocity for animations
minVelocitiy: Range of velocity for animations
refreshTime: Refresh time for repaint in millisecons
screenHeigth: Heigth of screen for combine with other todays, 0 for all heigth screen
Sunday: Texts for days of week (For translations)
Monday: Texts for days of week (For translations)
Tuesday: Texts for days of week (For translations)
Wednesday: Texts for days of week (For translations)
Thursday: Texts for days of week (For translations)
Friday: Texts for days of week (For translations)
Saturday: Texts for days of week (For translations)
|