I've been trying hard to simply display the current time and couldn't find a solution anywhere...so sorry for the misplaced post.
All I want is to display the time on the user's pc or phone.
What I can do is get the time to show up in a box message but not have it just displayed and updated every second.
This is my current code
//store the current time
t=date_current_datetime();
//get the hour portion of that time
h=date_get_hour(t);
//get the minute portion of the time.
m=date_get_minute(t);
//get the second potion of the time
s=date_get_second(t);
//show the time
txt="The current time is:"+string(h)+":"+string(m)+":"+string(s);
show_message(txt);
Hope this gamemaker code makes sense, thanks for any help.