Hey all,
I have a small mc that has 10 or so frames. On each frame I am displaying different content.
I am atempting to create a kind of date selection peice of code that will check todays date and then for the playhead to go to the specific frame I have signaled in the AS.
eg.
newdate = Date();
if newdate = (is between monday 14 & sunday 20)
gotoAndStop(“myframe”)
if newdate = (is between monday 21 & sunday 27)
gotoAndStop(“myframe2”)
etc
my criteria is for a weekly selection, so every Monday morning at 00:00 hours it should go to the next frame(display the next frame) etc
Any help with this would be great.