This will require some manual work. To let the widget only display the third character instead of the first 2, do the following:
1.You will have to download the widget to your computer, extract comingNext.wgz and rename that to comingNext.zip. 2.Next, you need to extract comingNext/index.html from the comingNext.zip archive. Open this file with an editor like Notepad.exe 3.Search for this line here:(找到下面這段字串)
var weekDay = getWeekdayLocalized(date).substr(0,config['weekDayLength'].Value);
and replace it with(然後置換成下面的字串)
var weekDay = getWeekdayLocalized(date).substr(2,1);
4.Copy the modified index.html back into the comingNext.zip archive. 5.Rename comingNext.zip to comingNext.wgz and reinstall it on your device.
V&S wrote: var weekDay = getWeekdayLocalized(date).substr(0,config['weekDayLength'].Value); and replace it with(然後置換成下面的字串) var weekDay = getWeekdayLocalized(date).substr(2,1);...(恕刪)