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

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

timer.swf

This is the info page for
Flash #102971

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


Text
Interval 1:

0

Minutes

Sound Name

<p align="center"><font face="Arial" size="18" color="#3333ff"><a href="www.saltcube.com"><b>Saltcube</b></a><b> Lucid Dream And OBE Timer - Version 4.00</b></font></p><p align="center"></p><p align="left"><font face="Arial" size="14" color="#3333ff"><b>Instructions:</b></font></p><p align="left"><font face="Arial" size="13" color="#000000">Use this timer to cause you to alternate waking up and falling asleep during the <sbr />morning in order to induce lucid dreams and OBEs.</font></p><p align="left"></p><p align="left"><font face="Arial" size="13" color="#000000">For best results do not move at all once you lay down, staying perfectly still (no <sbr />eye movement) and not shifting during dozing brings on LDs and OBEs about <sbr />twice as fast. It also helps to breathe as if you&apos;ve already fallen asleep.</font></p><p align="left"></p><p align="left"><font face="Arial" size="14" color="#3333ff"><b>Important:</b></font></p><p align="left"><font face="Arial" size="13" color="#000000">Make sure you set your volume to be VERY LOUD to be sure it wakes you up. <sbr />You will probably need to set your volume much louder than you first expect in <sbr />order to be sure it wakes you. It is also important to put your speakers as close <sbr />as possible to your head. If the beeps are coming from somewhere on the other <sbr />side of the room your brain will probably not interpret them as being important <sbr />enough to make you wake up. Good luck!</font></p><p align="left"></p>

Take me to the timer

www.saltcube.com

Timer:

Timer Controls:

Start Timer

Stop And Reset

Test Volume

Silence

Timer stopped

Predefined Timer Setups:

Load Rhythm Nap 6

Load Rhythm Nap 5

Load Rhythm Nap 4

Load Rhythm Nap 3

Load Rhythm Nap 2

When it gets to an interval
set to zero it will repeat the
previous interval forever.

Sounds:

Play Sound:

One Time

Three Times

Nine Times

www.saltcube.com

If the timer isn't
waking you up,
using "Nine Times"
makes it much more
effective.

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
stop();
Instance of Symbol 69 MovieClip in Frame 2
onClipEvent (load) { function setTimeIndex(id) { if (selected != -1) { intervals[selected].gotoAndStop("unselected"); } if (id < 0) { id = 0; } if (id > (numIntervals - 1)) { id = numIntervals - 1; } if (getTime(id) > 0) { selected = id; } if (selected >= 0) { intervals[selected].gotoAndStop("selected"); } } function getTimeIndex() { if (selected < 0) { selected = 0; } return(selected); } function getTime(id) { return(intervals[id].minutes.text); } function loadSetup(data) { i = 0; while (i < numIntervals) { intervals[i].minutes.text = "0"; i++; } i = 0; while ((i < data.length) && (i < numIntervals)) { intervals[i].minutes.text = "" + data[i]; i++; } } function rhythmNapping(baseInterval) { var _local1 = Array(); _local1.push(baseInterval * 2); _local1.push(baseInterval); _local1.push(baseInterval * 2); _local1.push(baseInterval * 3); _local1.push(baseInterval * 4); _local1.push(baseInterval * 5); _local1.push(baseInterval * 5); _local1.push(baseInterval * 1.5); return(_local1); } function createSound(label, soundName) { var soundSelect = attachMovie("SoundSelect", "soundSelect" + soundSelectCnt, soundSelectCnt + numIntervals); soundSelect.label.text = label; soundSelect.soundName = soundName; soundSelect._x = 415; soundSelect._y = (25 * soundSelectCnt) + 20; soundSelect.button.onRelease = function () { selectSound(soundSelect, true); }; soundSelectCnt++; } function selectSound(soundSelect, playSound) { if (currSoundSelect != null) { currSoundSelect.gotoAndStop("unselected"); } currSoundSelect = soundSelect; soundSelect.gotoAndStop("selected"); beep.attachSound((soundSelect.soundName + repeatTimes) + ".mp3"); if (playSound) { doBeep(); } } function doBeep() { beep.start(); } var numIntervals = 15; var repeatTimes = 1; var currTimeSelect = null; var intervals = Array(numIntervals); var selected = -1; var startTime; var started = false; var beep = new Sound(); beep.attachSound("modernsubdive.wav"); var status = "Timer Stopped"; var i = 0; while (i < numIntervals) { var interval = attachMovie("interval", "interval" + i, i); intervals[i] = interval; interval.button.id = i; interval._x = 10; interval._y = (25 * i) + 20; interval.label.text = ("Interval " + (i + 1)) + ":"; interval.button.onRelease = function () { setTimeIndex(this.id); }; i++; } startTimer.onRelease = function () { startTime = getTimer(); started = true; setTimeIndex(getTimeIndex()); }; stopAndReset.onRelease = function () { started = false; setTimeIndex(0); status = "Timer Stopped"; }; testVolume.onRelease = function () { doBeep(); }; silence.onRelease = function () { beep.stop(); }; oneTime.button.onRelease = function () { repeatTimes = 1; if (currTimeSelect != null) { currTimeSelect.gotoAndStop("unselected"); } oneTime.gotoAndStop("selected"); currTimeSelect = oneTime; selectSound(currSoundSelect, true); }; threeTimes.button.onRelease = function () { repeatTimes = 3; if (currTimeSelect != null) { currTimeSelect.gotoAndStop("unselected"); } threeTimes.gotoAndStop("selected"); currTimeSelect = threeTimes; selectSound(currSoundSelect, true); }; nineTimes.button.onRelease = function () { repeatTimes = 9; if (currTimeSelect != null) { currTimeSelect.gotoAndStop("unselected"); } nineTimes.gotoAndStop("selected"); currTimeSelect = nineTimes; selectSound(currSoundSelect, true); }; rn6.onRelease = function () { loadSetup(rhythmNapping(6)); }; rn5.onRelease = function () { loadSetup(rhythmNapping(5)); }; rn4.onRelease = function () { loadSetup(rhythmNapping(4)); }; rn3.onRelease = function () { loadSetup(rhythmNapping(3)); }; rn2.onRelease = function () { loadSetup(rhythmNapping(2)); }; loadSetup(rhythmNapping(4)); threeTimes.gotoAndStop("selected"); currTimeSelect = threeTimes; repeatTimes = 3; var soundSelectCnt = 0; var currSoundSelect = null; createSound("Three Beeps", "beep"); selectSound(this.soundSelect0, false); } onClipEvent (enterFrame) { if (!started) { return(undefined); } var diff = (getTimer() - startTime); if ((diff < 0) || (diff > ((getTime(getTimeIndex()) * 60) * 1000))) { startTime = getTimer(); setTimeIndex(getTimeIndex() + 1); if (getTime(getTimeIndex()) > 0) { status = "Playing Alarm"; doBeep(); } else { setTimeIndex(0); } } else { var seconds = Math.round(diff / 1000); var minutes = Math.floor(seconds / 60); seconds = seconds - (minutes * 60); status = ((("Timer Started " + minutes) + ":") + ((seconds < 10) ? "0" : "")) + seconds; } }
Symbol 14 MovieClip [interval] Frame 1
stop();
Symbol 22 MovieClip [SoundSelect] Frame 1
stop();
Symbol 22 MovieClip [SoundSelect] Frame 2
stop();
Symbol 30 Button
on (release) { gotoAndPlay ("timer"); }
Symbol 63 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 2
stop();
Symbol 65 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 2
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 2
stop();
Symbol 69 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 2
stop();

Library Items

Symbol 1 Sound [beep9.mp3]
Symbol 2 Sound [beep3.mp3]
Symbol 3 Sound [beep1.mp3]
Symbol 4 GraphicUsed by:7
Symbol 5 GraphicUsed by:7
Symbol 6 GraphicUsed by:7
Symbol 7 ButtonUses:4 5 6Used by:14
Symbol 8 GraphicUsed by:14
Symbol 9 FontUsed by:10 11 12 20 24 26 34 35 37 41 43 45 47 48 49 51 53 55 57 59 60 61 62 64 66 70 71
Symbol 10 EditableTextUses:9Used by:14
Symbol 11 EditableTextUses:9Used by:14
Symbol 12 EditableTextUses:9Used by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClip [interval]Uses:7 8 10 11 12 13
Symbol 15 GraphicUsed by:19
Symbol 16 GraphicUsed by:19
Symbol 17 GraphicUsed by:19
Symbol 18 GraphicUsed by:19
Symbol 19 Button [soundButton]Uses:15 16 17 18Used by:22 63 65 67
Symbol 20 EditableTextUses:9Used by:22
Symbol 21 GraphicUsed by:22 63 65 67 69
Symbol 22 MovieClip [SoundSelect]Uses:19 20 21
Symbol 23 FontUsed by:24
Symbol 24 EditableTextUses:9 23Used by:Timeline
Symbol 25 GraphicUsed by:30
Symbol 26 TextUses:9Used by:30
Symbol 27 GraphicUsed by:30
Symbol 28 GraphicUsed by:30
Symbol 29 GraphicUsed by:30
Symbol 30 ButtonUses:25 26 27 28 29Used by:Timeline
Symbol 31 FontUsed by:32
Symbol 32 TextUses:31Used by:Timeline
Symbol 33 GraphicUsed by:69
Symbol 34 TextUses:9Used by:69
Symbol 35 TextUses:9Used by:69
Symbol 36 GraphicUsed by:40 42 44 46 50 52 54 56 58
Symbol 37 TextUses:9Used by:40
Symbol 38 GraphicUsed by:40 42 44 46 50 52 54 56 58
Symbol 39 GraphicUsed by:40 42 44 46 50 52 54 56 58
Symbol 40 ButtonUses:36 37 38 39Used by:69
Symbol 41 TextUses:9Used by:42
Symbol 42 ButtonUses:36 41 38 39Used by:69
Symbol 43 TextUses:9Used by:44
Symbol 44 ButtonUses:36 43 38 39Used by:69
Symbol 45 TextUses:9Used by:46
Symbol 46 ButtonUses:36 45 38 39Used by:69
Symbol 47 EditableTextUses:9Used by:69
Symbol 48 TextUses:9Used by:69
Symbol 49 TextUses:9Used by:50
Symbol 50 ButtonUses:36 49 38 39Used by:69
Symbol 51 TextUses:9Used by:52
Symbol 52 ButtonUses:36 51 38 39Used by:69
Symbol 53 TextUses:9Used by:54
Symbol 54 ButtonUses:36 53 38 39Used by:69
Symbol 55 TextUses:9Used by:56
Symbol 56 ButtonUses:36 55 38 39Used by:69
Symbol 57 TextUses:9Used by:58
Symbol 58 ButtonUses:36 57 38 39Used by:69
Symbol 59 TextUses:9Used by:69
Symbol 60 TextUses:9Used by:69
Symbol 61 TextUses:9Used by:69
Symbol 62 EditableTextUses:9Used by:63
Symbol 63 MovieClipUses:19 62 21Used by:69
Symbol 64 EditableTextUses:9Used by:65
Symbol 65 MovieClipUses:19 64 21Used by:69
Symbol 66 EditableTextUses:9Used by:67
Symbol 67 MovieClipUses:19 66 21Used by:69
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:33 34 35 40 42 44 46 47 48 50 52 54 56 58 59 60 61 63 65 67 68 21Used by:Timeline
Symbol 70 EditableTextUses:9Used by:Timeline
Symbol 71 TextUses:9Used by:Timeline

Instance Names

"button"Symbol 14 MovieClip [interval] Frame 1Symbol 7 Button
"label"Symbol 14 MovieClip [interval] Frame 1Symbol 10 EditableText
"minutes"Symbol 14 MovieClip [interval] Frame 1Symbol 11 EditableText
"label"Symbol 14 MovieClip [interval] Frame 1Symbol 12 EditableText
"button"Symbol 22 MovieClip [SoundSelect] Frame 1Symbol 19 Button [soundButton]
"label"Symbol 22 MovieClip [SoundSelect] Frame 1Symbol 20 EditableText
"button"Symbol 63 MovieClip Frame 1Symbol 19 Button [soundButton]
"label"Symbol 63 MovieClip Frame 1Symbol 62 EditableText
"button"Symbol 65 MovieClip Frame 1Symbol 19 Button [soundButton]
"label"Symbol 65 MovieClip Frame 1Symbol 64 EditableText
"button"Symbol 67 MovieClip Frame 1Symbol 19 Button [soundButton]
"label"Symbol 67 MovieClip Frame 1Symbol 66 EditableText
"startTimer"Symbol 69 MovieClip Frame 1Symbol 40 Button
"stopAndReset"Symbol 69 MovieClip Frame 1Symbol 42 Button
"testVolume"Symbol 69 MovieClip Frame 1Symbol 44 Button
"silence"Symbol 69 MovieClip Frame 1Symbol 46 Button
"rn6"Symbol 69 MovieClip Frame 1Symbol 50 Button
"rn5"Symbol 69 MovieClip Frame 1Symbol 52 Button
"rn4"Symbol 69 MovieClip Frame 1Symbol 54 Button
"rn3"Symbol 69 MovieClip Frame 1Symbol 56 Button
"rn2"Symbol 69 MovieClip Frame 1Symbol 58 Button
"oneTime"Symbol 69 MovieClip Frame 1Symbol 63 MovieClip
"threeTimes"Symbol 69 MovieClip Frame 1Symbol 65 MovieClip
"nineTimes"Symbol 69 MovieClip Frame 1Symbol 67 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "beep9.mp3"
ExportAssets (56)Timeline Frame 1Symbol 2 as "beep3.mp3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "beep1.mp3"
ExportAssets (56)Timeline Frame 1Symbol 14 as "interval"
ExportAssets (56)Timeline Frame 1Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 1Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 1Symbol 22 as "SoundSelect"
ExportAssets (56)Timeline Frame 1Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"
ExportAssets (56)Timeline Frame 2Symbol 19 as "soundButton"

Labels

"intro"Frame 1
"timer"Frame 2
"unselected"Symbol 14 MovieClip [interval] Frame 1
"button"Symbol 14 MovieClip [interval] Frame 1
"selected"Symbol 14 MovieClip [interval] Frame 2
"unselected"Symbol 22 MovieClip [SoundSelect] Frame 1
"selected"Symbol 22 MovieClip [SoundSelect] Frame 2
"unselected"Symbol 63 MovieClip Frame 1
"selected"Symbol 63 MovieClip Frame 2
"unselected"Symbol 65 MovieClip Frame 1
"selected"Symbol 65 MovieClip Frame 2
"unselected"Symbol 67 MovieClip Frame 1
"selected"Symbol 67 MovieClip Frame 2
"unselected"Symbol 69 MovieClip Frame 1
"selected"Symbol 69 MovieClip Frame 2

Dynamic Text Variables

statusSymbol 47 EditableText"Timer stopped"




http://swfchan.com/21/102971/info.shtml
Created: 19/3 -2019 13:32:19 Last modified: 19/3 -2019 13:32:19 Server time: 26/04 -2024 08:43:45