Just to be clear, if you are planning on releasing or distributing this object you are making you would have to get permission from the original artist first.
If it’s for your own personal use then read on.
This is what I figured on my own. It could be a specific type of font that makes certain letters lower than others (wild guess). But, for sure if you want it to look exactly like that you would need that font.
In the second picture it looks like there could be 3 different objects
1.Date
2.Weekday
3.Month
Each of them would be positioned higher or lower and then grouped.
You would go to the ‘states’ tab in the properties and change the object from ‘image’ to ‘text’
Insert the scripts below to their respective objects.
The Date object:
Dim d
d= day(date)
Object.text= d
------------------------------
The Weekday object:
Dim dy
dy= WeekdayName(Weekday(Date),true) ‘---This will make the weekday appear abbreviated. For the full name remove ‘,true’ from the parenthesis.
Object.text = dy
-------------------------------
The Month object:
Dim m
m = month(date)
Select Case m’—The following checks what month it is and changes the object text accordingly
Case 1
object.text= “Jan”
case 2
object.text= “Feb”
case 3
object.text= “Mar”
case 4
object.text= “Apr”
case 5
object.text= “May”
case 6
object.text= “Jun”
case 7
object.text= “Jul”
case 8
object.text= “Aug”
case 9
object.text= “Sept”
case 10
object.text= “Oct”
case 11
object.text= “Nov”
case 12
object.text= “Dec”
End Select
----------------------
Don't have much time now so I’ll get back to you later on the time object.
For more info on vbscript functions like weekday, date, etc, go to W3Schools ----
[link="http://www.w3schools.com/vbscript/vbscript_ref_functions.asp"]http://www.w3schools.com/vbscript/vbscript_ref_functions.asp">Link
Hope this helps.