STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228054
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/61411777?noj=FRM61411777-25DC" width="1" height="1"></div>

timman3.swf

This is the info page for
Flash #6603

(Click the ID number above for more basic data on this flash file.)


Text
Developing a Schedule.

Determine how you spend a typical 24-hour day:

Classes
Studying
Sleeping
Exercise/sports
Work/internship
Family commitments
Personal care/grooming
Meal preparation/eating/clean-up
Transportation (school, work, etc.)
Relaxing/TV/video games, etc. (alone)
Socializing/entertainment (with friends)
Other

0

0

0

0

0

0

0

0

0

0

0

0

Enter the hours you spend on each activity.
"Tab" through each item.
Watch as your time slips away. . .

24

Hours Remaining

ActionScript [AS1/AS2]

Frame 1
function calcTime() { if (isNaN(Number(classes_txt.text))) { classes_txt.text = "0"; } if (isNaN(Number(studying_txt.text))) { studying_txt.text = "0"; } if (isNaN(Number(sleep_txt.text))) { sleep_txt.text = "0"; } if (isNaN(Number(exercise_txt.text))) { exercise_txt.text = "0"; } if (isNaN(Number(work_txt.text))) { work_txt.text = "0"; } if (isNaN(Number(family_txt.text))) { family_txt.text = "0"; } if (isNaN(Number(personal_txt.text))) { personal_txt.text = "0"; } if (isNaN(Number(meal_txt.text))) { meal_txt.text = "0"; } if (isNaN(Number(trans_txt.text))) { trans_txt.text = "0"; } if (isNaN(Number(relaxing_txt.text))) { relaxing_txt.text = "0"; } if (isNaN(Number(social_txt.text))) { social_txt.text = "0"; } if (isNaN(Number(other_txt.text))) { other_txt.text = "0"; } allTime = ((((((((((Number(classes_txt.text) + Number(studying_txt.text)) + Number(sleep_txt.text)) + Number(exercise_txt.text)) + Number(work_txt.text)) + Number(family_txt.text)) + Number(personal_txt.text)) + Number(meal_txt.text)) + Number(trans_txt.text)) + Number(relaxing_txt.text)) + Number(social_txt.text)) + Number(other_txt.text); if (allTime == 0) { _root.chart_mc.gotoAndStop(Number(allTime + 1)); } else { tempTime = Math.round(Number(allTime)); _root.chart_mc.gotoAndStop(tempTime); } time_txt.text = 24 - Number(allTime); txtClockText.text = "Hours Remaining"; } stop(); var KeyListener = new Object(); KeyListener.onKeyDown = function () { if (Key.isDown(9)) { trace("The tab key was pressed."); calcTime(); } }; Key.addListener(KeyListener); var MouseListener = new Object(); MouseListener.onMouseUp = function () { trace("The mouse was clicked."); calcTime(); }; Mouse.addListener(MouseListener); classes_txt.onChanged = function () { classes_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(classes_txt.text)) { classes_txt.text = eval("NULL"); } else { calcTime(); } }; studying_txt.onChanged = function () { studying_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(studying_txt.text)) { studying_txt.text = eval("NULL"); } else { calcTime(); } }; sleep_txt.onChanged = function () { sleep_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(sleep_txt.text)) { sleep_txt.text = eval("NULL"); } else { calcTime(); } }; exercise_txt.onChanged = function () { exercise_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(exercise_txt.text)) { exercise_txt.text = eval("NULL"); } else { calcTime(); } }; work_txt.onChanged = function () { work_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(work_txt.text)) { work_txt.text = eval("NULL"); } else { calcTime(); } }; family_txt.onChanged = function () { family_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(family_txt.text)) { family_txt.text = eval("NULL"); } else { calcTime(); } }; personal_txt.onChanged = function () { personal_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(personal_txt.text)) { personal_txt.text = eval("NULL"); } else { calcTime(); } }; meal_txt.onChanged = function () { meal_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(meal_txt.text)) { meal_txt.text = eval("NULL"); } else { calcTime(); } }; trans_txt.onChanged = function () { trans_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(trans_txt.text)) { trans_txt.text = eval("NULL"); } else { calcTime(); } }; relaxing_txt.onChanged = function () { relaxing_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(relaxing_txt.text)) { relaxing_txt.text = eval("NULL"); } else { calcTime(); } }; social_txt.onChanged = function () { social_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(social_txt.text)) { social_txt.text = eval("NULL"); } else { calcTime(); } }; other_txt.onChanged = function () { other_txt.maxChars = 6; if ((Key.getAscii() == 46) && (this.text.length <= 1)) { this.text = "."; } else if (isNaN(other_txt.text)) { other_txt.text = eval("NULL"); } else { calcTime(); } };
Symbol 46 MovieClip Frame 1
stop();

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:3
Symbol 3 ButtonUses:2Used by:Timeline
Symbol 4 FontUsed by:5
Symbol 5 EditableTextUses:4Used by:Timeline
Symbol 6 FontUsed by:7 22
Symbol 7 EditableTextUses:6Used by:Timeline
Symbol 8 FontUsed by:9 10 11 12 13 14 15 16 17 18 19 20 21 47 48
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 EditableTextUses:8Used by:Timeline
Symbol 11 EditableTextUses:8Used by:Timeline
Symbol 12 EditableTextUses:8Used by:Timeline
Symbol 13 EditableTextUses:8Used by:Timeline
Symbol 14 EditableTextUses:8Used by:Timeline
Symbol 15 EditableTextUses:8Used by:Timeline
Symbol 16 EditableTextUses:8Used by:Timeline
Symbol 17 EditableTextUses:8Used by:Timeline
Symbol 18 EditableTextUses:8Used by:Timeline
Symbol 19 EditableTextUses:8Used by:Timeline
Symbol 20 EditableTextUses:8Used by:Timeline
Symbol 21 EditableTextUses:8Used by:Timeline
Symbol 22 EditableTextUses:6Used by:Timeline
Symbol 23 GraphicUsed by:46
Symbol 24 GraphicUsed by:46
Symbol 25 GraphicUsed by:46
Symbol 26 GraphicUsed by:46
Symbol 27 GraphicUsed by:46
Symbol 28 GraphicUsed by:46
Symbol 29 GraphicUsed by:46
Symbol 30 GraphicUsed by:46
Symbol 31 GraphicUsed by:46
Symbol 32 GraphicUsed by:46
Symbol 33 GraphicUsed by:46
Symbol 34 GraphicUsed by:46
Symbol 35 GraphicUsed by:46
Symbol 36 GraphicUsed by:46
Symbol 37 GraphicUsed by:46
Symbol 38 GraphicUsed by:46
Symbol 39 GraphicUsed by:46
Symbol 40 GraphicUsed by:46
Symbol 41 GraphicUsed by:46
Symbol 42 GraphicUsed by:46
Symbol 43 GraphicUsed by:46
Symbol 44 GraphicUsed by:46
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45Used by:Timeline
Symbol 47 EditableTextUses:8Used by:Timeline
Symbol 48 EditableTextUses:8Used by:Timeline

Instance Names

"classes_txt"Frame 1Symbol 10 EditableText
"studying_txt"Frame 1Symbol 11 EditableText
"sleep_txt"Frame 1Symbol 12 EditableText
"exercise_txt"Frame 1Symbol 13 EditableText
"work_txt"Frame 1Symbol 14 EditableText
"family_txt"Frame 1Symbol 15 EditableText
"personal_txt"Frame 1Symbol 16 EditableText
"meal_txt"Frame 1Symbol 17 EditableText
"trans_txt"Frame 1Symbol 18 EditableText
"relaxing_txt"Frame 1Symbol 19 EditableText
"social_txt"Frame 1Symbol 20 EditableText
"other_txt"Frame 1Symbol 21 EditableText
"chart_mc"Frame 1Symbol 46 MovieClip
"time_txt"Frame 1Symbol 47 EditableText
"txtClockText"Frame 1Symbol 48 EditableText

Dynamic Text Variables

classesSymbol 10 EditableText"0"




http://swfchan.com/2/6603/info.shtml
Created: 12/8 -2019 04:11:48 Last modified: 12/8 -2019 04:11:48 Server time: 25/04 -2024 17:17:24