Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | Re: FLASH: Flash Calendar |
From: | Helen Triolo |
Date: | Tue, 19 Dec 2000 23:18:27 GMT |
I don't get what all that code is doing, but if you want to do as you
say and output the day of the week for a particular input date, then
this code would do it for input fields inYear, inMonth, inDay and output
field dayofweek:
days = new
Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
thisdate = new Date(inYear, inMonth-1, inDay);
dayofweek = days[thisdate.getDay()];
hth,
Helen
-----------------------------------------------------
i-Technica � http://i-technica.com � 301.424.6037
developer resources: http://i-technica.com/whitestuff
Brian Mays wrote:
>
> Sending this on behalf of a coworker who's not subscribed to the
> list...he's stuck in a Flash project he's working on.
>
> --------------------------------------------------------------------------------------
>
> I am working on a movie that when you input the date it will tell you
> the day it falls on.
>
> My code is logically sound I believe however I am used to coding in C,
> or C++:
> however I am having problems changing the inputed strings into a Var
> plus I need to work with just integers.
>
> If you all would pls look at my code and swf I would appreciate any
> input into my
> problems
>
> My Pseudo code is
> 1. read in month, day, year
> 2. convert month to entry(for the month button Jan=1; Feb=4;mar=4,
> apr=0........)
>
> 3. t= entry+day+year+6
> 4. t=t+year div 4 - year div 100 +year div 4000 - year div 3000
> 5. adjust t for jan and feb of leap year
> 6. compare t to day of the week and print day of tthe week
>
> Here is my syntax code when you hit Enter
>
> on (release) {
> set (int (t), month+day+year+6);
> set (int (t), t+year/4 -year/100+year/400-year/3000);
> if ((year%4==0)&&(month<=2)) {
> set (int (t), int (t)-1);
> }
> if ((year%100==0) ) {
> if ((year%4==0)&&(month<=2)) {
> set (int (t), int (t)-1);
> }
> }
> set (dow, int (t)%7);
> if (dow==0) {
> set (dow, "Saturday");
> }
> if (dow==1) {
> set (dow, "Sunday");
> }
> if (dow==2) {
> set (dow, "Monday");
> }
> if (dow==3) {
> set (dow, "Tuesday");
> }
> if (dow==4) {
> set (dow, "Wednesday");
> }
> if (dow==5) {
> set (dow, "Thursday");
> }
> if (dow==6) {
> set (dow, "Friday");
> }
> gotoAndPlay (3);
> }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
November 27-29, 2000, LONDON, National Film Theatre
Produced by United Digital Artists and lynda.com
-Sponsored by Macromedia, Adobe Systems and Apple Computer
-http://www.flashforward2000.com or UK tel. +44 (0870) 751 1526
Register before November 10 and save �200
http:// www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
FLASH: Flash Calendar, Brian Mays
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]