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

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

psytest2.swf

This is the info page for
Flash #251549

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


Text
Your Diagnosis:

If you would like to continue testing at a time and place of our choosing, click here.

If you would like to continue testing at a time and place of our choosing, click here.

A

B

Take the test

Take the test

This is an exploration of your brain's affective response system. Nonverbal,
emotional reactions to shape tableaus will target the portion of your brain that is
intuitive and pre-lingual. The associated questions should be answered without
tying these shapes to any narrative or storyline. These shapes are based on neural
linkage maps from the brains of reptiles and primitive mammals, ancestors to
mankind. Associated questions have been culled from the communication
methodologies of  those with dissociative personality disorder in order to probe the
link between emotional understanding and language.
There are 20 questions. Your answers will be tabulated at the end and your
responses measured against our reference group.

The Pierley/Redford Dissociative Affect Diagnostic

B

A

<p align="left"><font face="Helvetica" size="17" color="#3c3c3c" letterSpacing="0.000000" kerning="1">c</font></p>

question

<p align="left"><font face="Helvetica" size="13" color="#909090" letterSpacing="0.100000" kerning="1">c</font></p>

ActionScript [AS3]

Section 1
//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.utils.*; import flash.display.*; public class Tween extends EventDispatcher { public var isPlaying:Boolean;// = false public var obj:Object;// = null public var prop:String;// = "" public var func:Function; public var begin:Number;// = NAN public var change:Number;// = NAN public var useSeconds:Boolean;// = false public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var looping:Boolean;// = false private var _duration:Number;// = NAN private var _time:Number;// = NAN private var _fps:Number;// = NAN private var _position:Number;// = NAN private var _startTime:Number;// = NAN private var _intervalID:uint;// = 0 private var _finish:Number;// = NAN private var _timer:Timer;// = null protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function get time():Number{ return (this._time); } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } public function get duration():Number{ return (this._duration); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function get FPS():Number{ return (this._fps); } public function set FPS(_arg1:Number):void{ var _local2:Boolean = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get position():Number{ return (this.getPosition(this._time)); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function get finish():Number{ return ((this.begin + this.change)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function yoyo():void{ this.continueTo(this.begin, this.time); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function fforward():void{ this.time = this._duration; this.fixTime(); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } private function update():void{ this.setPosition(this.getPosition(this._time)); } } }//package fl.transitions
Section 2
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_RESUME:String = "motionResume"; public static const MOTION_LOOP:String = "motionLoop"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 3
//MainTimeline (psytest3_fla.MainTimeline) package psytest3_fla { import flash.events.*; import fl.transitions.*; import flash.utils.*; import flash.display.*; import flash.text.*; import flash.net.*; import flash.filters.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.geom.*; import flash.media.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.system.*; import flash.ui.*; import flash.xml.*; import fl.transitions.easing.*; public dynamic class MainTimeline extends MovieClip { public var background:MovieClip; public var questiontext:TextField; public var flare:backgroundflare; public var stagebuttona:buttona; public var stagebuttonb:buttonb; public var questionnumber:TextField; public var resultarray:Array; public var tempquestiontext:String; public var resultnumber:int; public var DIAGNOSIS:String; public var empty:MovieClip; public var empty2:MovieClip; public var EX:int; public var IN:int; public var INT:int; public var SE:int; public var TH:int; public var FE:int; public var JU:int; public var PE:int; public var questionresults:TextField; public var tfFormatter:TextFormat; public var ending:MovieClip; public var urlRequest:URLRequest; public var questionpic1:MovieClip; public var questionpic2:MovieClip; public var questionpic3:MovieClip; public var questionpic4:MovieClip; public var questionpic5:MovieClip; public var questionpic6:MovieClip; public var questionpic7:MovieClip; public var questionpic8:MovieClip; public var questionpic9:MovieClip; public var questionpic10:MovieClip; public var questionpic11:MovieClip; public var questionpic12:MovieClip; public var questionpic13:MovieClip; public var questionpic14:MovieClip; public var questionpic15:MovieClip; public var questionpic16:MovieClip; public var questionpic17:MovieClip; public var questionpic18:MovieClip; public var questionpic19:MovieClip; public var questionpic20:MovieClip; public var questionletters1:MovieClip; public var questionletters2:MovieClip; public var questionletters3:MovieClip; public var questionletters4:MovieClip; public var questionletters5:MovieClip; public var questionletters6:MovieClip; public var questionletters7:MovieClip; public var questionletters8:MovieClip; public var questionletters9:MovieClip; public var questionletters10:MovieClip; public var questionletters11:MovieClip; public var questionletters12:MovieClip; public var questionletters13:MovieClip; public var questionletters14:MovieClip; public var questionletters15:MovieClip; public var questionletters16:MovieClip; public var questionletters17:MovieClip; public var questionletters18:MovieClip; public var questionletters19:MovieClip; public var questionletters20:MovieClip; public var thequestionnumber:int; public var number:String; public var questionlist:Array; public var questiontop:MovieClip; public var blurquestion:BlurFilter; public var ymax:int; public var xmax:int; public var xmin:int; public var ymin:int; public var xbigger:String; public var ybigger:String; public var randomx:Number; public var randomy:Number; public var blurTimer:Timer; public var tweentimer:Timer; public var imagetween1:Tween; public var imagetween2:Tween; public var imagetween3:Tween; public var imagetween4:Tween; public var imagetween5:Tween; public var imagetween6:Tween; public var imagetween7:Tween; public var imagetween8:Tween; public var imagetween9:Tween; public var imagetween10:Tween; public var imagetween11:Tween; public var imagetween12:Tween; public var imagetween13:Tween; public var imagetween14:Tween; public var imagetween15:Tween; public var imagetween16:Tween; public var imagetween17:Tween; public var imagetween18:Tween; public var imagetween19:Tween; public var imagetween20:Tween; public var lettertween1:Tween; public var lettertween2:Tween; public var lettertween3:Tween; public var lettertween4:Tween; public var lettertween5:Tween; public var lettertween6:Tween; public var lettertween7:Tween; public var lettertween8:Tween; public var lettertween9:Tween; public var lettertween10:Tween; public var lettertween11:Tween; public var lettertween12:Tween; public var lettertween13:Tween; public var lettertween14:Tween; public var lettertween15:Tween; public var lettertween16:Tween; public var lettertween17:Tween; public var lettertween18:Tween; public var lettertween19:Tween; public var lettertween20:Tween; public function MainTimeline(){ addFrameScript(0, frame1); } public function emailusfunction(_arg1:MouseEvent):void{ trace("email"); navigateToURL(urlRequest); } public function showresult():void{ questionresults.htmlText = resultarray[resultnumber]; addChild(ending); ending.addChild(questionresults); } public function removetop(_arg1:MouseEvent):void{ removeChild(questiontop); increasequestion(); } public function increasequestion():void{ thequestionnumber = (thequestionnumber + 1); number = String(thequestionnumber); questionnumber.text = number; tempquestiontext = questionlist[questionnumber.text]; questiontext.text = tempquestiontext; } public function changeblur(_arg1:TimerEvent):void{ if (xbigger == "yes"){ blurquestion.blurX = (blurquestion.blurX + 1); } else { blurquestion.blurX = (blurquestion.blurX - 1); }; if (blurquestion.blurX <= 3){ xbigger = "yes"; randomx = (Math.random() * 60); xmax = Math.round(randomx); } else { if (blurquestion.blurX >= xmax){ xbigger = "no"; }; }; if (ybigger == "yes"){ blurquestion.blurY = (blurquestion.blurY + 1); } else { blurquestion.blurY = (blurquestion.blurY - 1); }; if (blurquestion.blurY <= 3){ ybigger = "yes"; randomy = (Math.random() * 35); ymax = Math.round(randomy); } else { if (blurquestion.blurY >= ymax){ ybigger = "no"; }; }; empty.filters = [blurquestion]; } public function afterfade(_arg1:TimerEvent):void{ switchquestion(); } public function clickeda(_arg1:MouseEvent):void{ if (thequestionnumber < 20){ faderout(); tweentimer.start(); additupa(thequestionnumber); } else { tabulate(); }; } public function clickedb(_arg1:MouseEvent):void{ if (thequestionnumber < 20){ faderout(); tweentimer.start(); additupb(thequestionnumber); } else { tabulate(); }; } public function makediagnosis(_arg1:String):void{ switch (_arg1){ case "EXINTFEPE": resultnumber = 1; break; case "ININTFEPE": resultnumber = 2; break; case "EXINTFEJU": resultnumber = 3; break; case "ININTFEJU": resultnumber = 4; break; case "EXSETHJU": resultnumber = 5; break; case "INSETHJU": resultnumber = 6; break; case "EXSEFEJU": resultnumber = 7; break; case "INSEFEJU": resultnumber = 8; break; case "EXINTTHPE": resultnumber = 9; break; case "ININTTHPE": resultnumber = 10; break; case "EXINTTHJU": resultnumber = 11; break; case "ININTTHJU": resultnumber = 12; break; case "EXSETHPE": resultnumber = 13; break; case "INSETHPE": resultnumber = 14; break; case "EXSEFEPE": resultnumber = 15; break; case "INSEFEPE": resultnumber = 16; break; }; } public function tabulate():void{ trace(EX, IN, TH, FE, SE, INT, JU, PE); if (EX > IN){ DIAGNOSIS = (DIAGNOSIS + "EX"); } else { DIAGNOSIS = (DIAGNOSIS + "IN"); }; if (SE > INT){ DIAGNOSIS = (DIAGNOSIS + "SE"); } else { DIAGNOSIS = (DIAGNOSIS + "INT"); }; if (TH > FE){ DIAGNOSIS = (DIAGNOSIS + "TH"); } else { DIAGNOSIS = (DIAGNOSIS + "FE"); }; if (JU > PE){ DIAGNOSIS = (DIAGNOSIS + "JU"); } else { DIAGNOSIS = (DIAGNOSIS + "PE"); }; trace(DIAGNOSIS); makediagnosis(DIAGNOSIS); showresult(); } public function additupa(_arg1:int):void{ switch (_arg1){ case 1: EX = (EX + 1); break; case 2: FE = (FE + 1); break; case 3: JU = (JU + 1); break; case 4: SE = (SE + 1); break; case 5: IN = (IN + 1); break; case 6: FE = (FE + 1); break; case 7: SE = (SE + 1); break; case 8: TH = (TH + 1); break; case 9: PE = (PE + 1); break; case 10: SE = (SE + 1); break; case 11: JU = (JU + 1); break; case 12: TH = (TH + 1); break; case 13: JU = (JU + 1); break; case 14: SE = (SE + 1); break; case 15: EX = (EX + 1); break; case 16: EX = (EX + 1); break; case 17: TH = (TH + 1); break; case 18: SE = (SE + 1); break; case 19: JU = (JU + 1); break; case 20: IN = (IN + 1); break; case 21: trace(EX, IN, TH, FE, SE, INT, JU, PE); break; }; } public function additupb(_arg1:int):void{ switch (_arg1){ case 1: IN = (IN + 1); break; case 2: TH = (TH + 1); break; case 3: PE = (PE + 1); break; case 4: INT = (INT + 1); break; case 5: EX = (EX + 1); break; case 6: TH = (TH + 1); break; case 7: INT = (INT + 1); break; case 8: FE = (FE + 1); break; case 9: JU = (JU + 1); break; case 10: INT = (INT + 1); break; case 11: PE = (PE + 1); break; case 12: FE = (FE + 1); break; case 13: PE = (PE + 1); break; case 14: INT = (INT + 1); break; case 15: IN = (IN + 1); break; case 16: IN = (IN + 1); break; case 17: FE = (FE + 1); break; case 18: INT = (INT + 1); break; case 19: PE = (PE + 1); break; case 20: EX = (EX + 1); break; case 21: trace(EX, IN, TH, FE, SE, INT, JU, PE); break; }; } public function faderout():void{ this[("imagetween" + questionnumber.text)].start(); this[("lettertween" + questionnumber.text)].start(); } public function switchquestion():void{ flare.play(); empty.removeChildAt(0); empty2.removeChildAt(0); increasequestion(); empty.addChild(this[("questionpic" + questionnumber.text)]); this[("questionletters" + questionnumber.text)].alpha = 0.3; empty2.addChild(this[("questionletters" + questionnumber.text)]); } function frame1(){ resultarray = new Array(); resultarray[0] = "You are not well."; resultarray[1] = "Your power comes from an ability to sense how things might be and to proclaim this possibility with a great force and willingness to act. You have a tendency to be romantic, and can be an idealist. This sense of how the world can be is often expressed with self-deprecatory humor. Because of your need to address the immediacy of the moment, you may not think things through to their logical end, relying instead on a feeling for how a situation SHOULD end. <p><p> You need to be liked and appreciated by others, although your attention often wanders. Sometimes you neglect old friends in favor of a new or exciting acquaintance. You have a real difficulty being alone. <p><p> Often you will seem to know how to handle a situation without exactly knowing HOW you know this. Your thoughts are often shallow. While in the excitement of the moment you can obsess about a task at hand. If it should become rote and unexciting, however, it can be dropped just as quickly."; resultarray[2] = "You have a poetic sensibility and an ability to see beyond the day to day. You often seem to be living in a higher realm, or to be not-of-this-earth. Occasionally you imagine interior lives for friends and associates that are near-complete fabrications based on your fears or hopes for the future. You are often not aware of your own feelings. You have a strong sense of right and wrong, and because of this are often disappointed. Despite what can sometimes be a destructive inward-turning anger, you are very gentle. You are sometimes a bit out of touch with the ebb and flow of modern life. If your behavior is out of synch with your moral values, a severe psychic disturbance can result. Because connectivity is so important to you, you can become quiet and sulky if you feel that others around do not understand your point of view."; resultarray[3] = "You tend to draw and nurture others with your natural charisma. Rarely satisfied with petty details, you remain focused on the grander scheme of things. In affairs of the heart you are very practical and might be thought on occasion perfunctory or shallow. Oddly, though you have a natural tendency to lead, you have a very thin skin and can easily be hurt by a thoughtless comment or a cruel barb. There is a danger that you will take on more responsibility than you can reasonably be expected to manage. So eager are you to succeed, that on occasion you crash and burn when the reality of the situation rears its head. Often your wide circle of friends can be rather indiscriminate; care must be taken not to become entangled with those of questionable moral character. Admitting weakness isn’t easy for you. When proven not to be invulnerable it can come as a great surprise. Unresolved issues can trouble you deeply."; resultarray[4] = "Though quiet on the outside, you are often the hidden hero; someone who rushes in when needed and then after the emergency is over fades back into the woodwork. Because of this sense of duty and honor, you can also on occasion be rigid in your viewpoint and unyielding in the face of other ways of thinking. Usually cynical and rarely trusting of others, you maintain a small set of intimate friends. These bonds are stronger than most. You are always grounded in the present moment. Your close bonds can also lead to clique-ishness and a tendency to gossip about those who are deemed less worthy. You are an integrative thinker, collecting data from a wide range of sources and applying it to your worldview. You can become overly task-oriented. In stressful situations you often withdraw from the world to seek peace in contemplation. You often seem cold and withdrawn. Often you will withdraw rather than verbalize your discontent."; resultarray[5] = "You are not a leader of men but an organizer of men. You need order and organization to feel secure about your life. You will usually have extensive knowledge of your family history and tradition. You have little use for things that are not useful. Hard work, thrift and dedication are the way to your heart. You will always deal with others in a steadfast and straightforward manner, and will consequently expect others to behave the same way. The strange, the illicit, the unusual, have no place in your mindset. Proper planning and organization is a distinct pleasure to you. Because of your sense of responsibility, you will often accept leadership roles that can be onerous and difficult. Your thinking is sequential. Relationships for you often revolve around a sense of mutual responsibility. Good parenting is of prime importance, as is the duties that one lover has to another. You are intensely loyal, but on occasion can be so obsessed with the duties of a relationship that you can forget to address the private moments that give a relationship meaning. Oddly, you can be extremely sentimental."; resultarray[6] = "Often concerned with right and wrong, and punctilious in expressing it, you are best represented by the Customs Agent or the IRS inspector. Initially seen by others as cold or uncaring, you are difficult for those more spontaneous members of society to understand. You are extremely stable, responsible and dependable. You manifest an amazing ability to concentrate on the issue at hand, and are difficult to distract from issues that are important. You manifest a great sense of loyalty to your employers and your government. You tend to show love through a display of committed works, believing that actions speak louder than words. You are also resistant to change and tend to believe that the old ways are best. If a behavior has been successful in the past, why would anyone want to change? You work best in a controlled environment."; resultarray[7] = "Fond of tradition, but attached more to the joy of human interaction, you are often a beacon of hope to those members of society who have lost faith or who are in need of succor. You are often emotional, and this emotionality is rarely held in check. Kind and helping by nature, when affronted you will explode, and just as suddenly when the pain has passed return to normalcy again. On occasion this quick and vibrant emotionality is translated into a life on the stage or screen. You have a strong sense of right and wrong, but can sometimes be left confused and uncertain in times of stress or when tough decisions must be made. You avoid conflict, tending to stay out of trouble in hopes that the group will benefit most from this behavior. Because you have trouble putting your own needs first, you will be put in much stress if you find yourself in an unequal relationship, one in which your partner is not as giving as you are."; resultarray[8] = "You need to help others and to be thought of as a generous and kind individual. Often you are taken advantage of and regarded as simply part of the scenery. You work best when handling the work yourself; you do not appreciate a managerial role and tend to be uncomfortable in that position. Friendship is important to you, but it is generated on a personal basis, rarely a professional one. Consequently, family life is very important to you, and is often the most important aspect. Because of a strong sense of propriety however, you will sometimes consider the eccentric behavior of your friends and family as a personal affront. Often you find it difficult to speak up about personal anguish or pain, feeling instead that it is something an individual should bear in silence. Tradition is important to you, and you feel a sense of belonging when operating within the constraints of a predictable routine."; resultarray[9] = "Verbally and mentally fluid, you are refreshing and illuminating to those around you. This is occasionally somewhat discounted by the obvious pleasure that you take in exercising your mental acuity. Although generally peaceful you can often take a verbally aggressive tact in relations with the world, which can often be misunderstood by those around you. Innovative in the extreme, you can often think yourself right out of the correct answer to a given problem. Many times you are referred to as your own worst enemy. You tire very quickly of routine and so make poor clerks or administrative help. You also have no respect for authority and little patience for those you regard as inferior, most especially those in charge. Experimentation is your watchword and can occasionally lead to experience for its own sake and shallow decadence. Your thought can sometimes be scattered and disconnected."; resultarray[10] = "Thoughtful to the extreme, you are often obsessed with perfection and the rules governing your own personal interests. Your world is black and white. You love to work within a logical system, such as language, computer programming, or mathematics. Manipulating a system that can be completely understood is a distinct pleasure to you, because of your confidence in the underlying veracity of your belief system. Because of your appreciation for logic and order, those who speak or think in a sloppy manner are apt to generate more than their share of wrath. Although very amiable, you are not drawn to friendships out of a sense of personal need. You are just as happy by yourself with a good book or puzzle. Because you are so involved with thought, you will on occasion have difficulty dealing with the day-to-day problems of a normal life. Taking out the trash, doing the dishes, these are often left until the last possible moment, if at all."; resultarray[11] = "Blustering through the world with the finesse of a thunderstorm, you are a natural leader, a creator of consensus. You will often plan out the future in deliberate and at times frustrating detail. This ability to create and to plan is sometimes expressed as a facility for the telling of tall tales.Your friends often find themselves assigned tasks or roles within the group. This can be very useful when action is called for and equally annoying when the idea at hand is rest and relaxation. When challenged, however, you can become cold and argumentative. Your understanding of the world is deliberate and well thought out. Your emotion comes in two varieties, either restrained and sincere, or else melodramatic and loud and usually inauthentic. Affection for you is best expressed through action, by doing things for the people you care about. This need to always be proactive can lead you to feel that there is no end to the trouble in your life."; resultarray[12] = "Quiet and very self-assured, you tend to keep your own council. Pragmatic and practical to a fault, you are not one to worry about the finer points of philosophical discourse. In fact, because you are very much an individualist, you often finds yourself at odds with the established truth or the wishes of the majority. You will often earn the wrath of an employer by taking upon yourself decisions which are rightly those of your manager. You are not one to take credit unless it is deserved. Similarly however, you will also not happily give credit where it is not due. In a romantic relationship you can be very frustrating. While you do care deeply and sincerely, and are willing to work at a relationship, your confidence in your own abilities can on occasion make it difficult to see the world from a partner’s point of view. Quiet and stoic at times, you can drive a more emotional individual completely up the wall. You can become overstressed and fatigued without knowing it. Taking time to rest between bouts of hard work can help to prevent a breakdown later on."; resultarray[13] = "You reach out to the world and pull in experiences of all forms and kinds. Spontaneous, immediate and active, you have a natural tendency to win, whether this is in the business world or on the freeway. In the right context this can be a positive encouragement to those around you. In the wrong context it can lead to a pathetic display of ego and misplaced pride. You are always on the prowl for clues as to how to win. Usually this behavior is unconscious or playful but the sense of play can rapidly disappear if you are found to be losing in the aforementioned contest. Only those who don’t compete are met with derision. You love to be the center of attention. The moment at hand is always of prime concern. Worries about the future or the past, or abstract discussions of philosophical matters are something for others to concern themselves with. Emotions are fleeting and often used as tactics."; resultarray[14] = "Handy in the real world manipulation of objects and events, you are easily enthused by practical projects. You often ignore or conveniently forget rules and boundaries that limit your freedom. This need for freedom extends even to the personal sphere and though you are kind and gentle, you will often be hard to pin down to a monogamous lifestyle. Because you tend to verbalize so seldom, you can be seen as phlegmatic or impassive. In moments of high tension you can often surprise those around you with a lighthearted or humorous remark. Because of your facility with the physical world, you are often engaged in sports that require dexterity, such as motorcycling or hang gliding. You will rarely have time for flights of fancy or unproductive discussion. Constraints on your freedom will be regarded as a personal attack."; resultarray[15] = "Always happy in a crowd, you love to converse, to relate, and above all to have fun. You tend to think in a more holistic manner than many others. Like a crow you are attracted to shiny objects, new ideas, playful exciting colors and the thrill of a new personal relationship. You love to talk or gossip. You are highly invested in the reality of day-to-day life. Practicality is far more important than issues of honor or allegiance. You are a creature of the here and now. You are a natural multi-tasker, often switching mid-thought from one duty to another. You have a flair for presenting your personality in your work, and are known as a great storyteller and natural actor. You are very skilled at taking in a barrage of information and distilling what is most important from it. Naturally charming, you are quick to win new friends. Over stimulation is a danger."; resultarray[16] = "You are in a perpetual quest to find the new, the exciting. Emotionally volatile, you are known for sudden changes of opinion, of appreciation, and behavior. Following rules and established methods is difficult for you and the difficulties of higher education are usually quite daunting. Knowledge is best gained through an intimate association with the matter at hand. Usually driven by attitudes and desires of the group, you are talented in an established field of endeavor. Emotions come and go without a strong understanding of their causes. They are unexpected guests in an otherwise placid landscape. You live by your own codes of conduct, which can be noble or terrible depending on the individual. Authority is meaningless to you. You hate to be predictable, at all costs. Rarely verbally effusive, you can at times feel as if your feelings are too deep for words. You are very observant, but rarely express these observations to others."; tempquestiontext = new String(); tempquestiontext = ""; resultnumber = 0; DIAGNOSIS = ""; empty = new MovieClip(); addChildAt(empty, 1); empty2 = new MovieClip(); addChildAt(empty2, 2); EX = 0; IN = 0; INT = 0; SE = 0; TH = 0; FE = 0; JU = 0; PE = 0; questionresults = new TextField(); questionresults.width = 550; questionresults.height = 280; questionresults.x = 30; questionresults.y = 70; questionresults.wordWrap = true; questionresults.text = "testing"; tfFormatter = new TextFormat(); tfFormatter.font = "Helvetica"; tfFormatter.size = 13; tfFormatter.leading = 4; questionresults.defaultTextFormat = tfFormatter; ending = new questionresult(); ending.emailus.addEventListener(MouseEvent.CLICK, emailusfunction); urlRequest = new URLRequest("mailto:rhortx@gmail.com"); questionpic1 = new question1(); questionpic2 = new question2(); questionpic3 = new question3(); questionpic4 = new question4(); questionpic5 = new question5(); questionpic6 = new question6(); questionpic7 = new question7(); questionpic8 = new question8(); questionpic9 = new question9(); questionpic10 = new question10(); questionpic11 = new question11(); questionpic12 = new question12(); questionpic13 = new question13(); questionpic14 = new question14(); questionpic15 = new question15(); questionpic16 = new question16(); questionpic17 = new question17(); questionpic18 = new question18(); questionpic19 = new question19(); questionpic20 = new question20(); questionletters1 = new question1b(); questionletters2 = new question2b(); questionletters3 = new question3b(); questionletters4 = new question4b(); questionletters5 = new question5b(); questionletters6 = new question6b(); questionletters7 = new question7b(); questionletters8 = new question8b(); questionletters9 = new question9b(); questionletters10 = new question10b(); questionletters11 = new question11b(); questionletters12 = new question12b(); questionletters13 = new question13b(); questionletters14 = new question14b(); questionletters15 = new question15b(); questionletters16 = new question16b(); questionletters17 = new question17b(); questionletters18 = new question18b(); questionletters19 = new question19b(); questionletters20 = new question20b(); questionletters1.alpha = 0.3; thequestionnumber = 0; number = String(thequestionnumber); questionnumber.text = number; questionlist = new Array(); questionlist[1] = "Which of these circles is angry?"; questionlist[2] = "Which location is unsafe?"; questionlist[3] = "Which area is pretending?"; questionlist[4] = "Who will survive?"; questionlist[5] = "Which position is diseased?"; questionlist[6] = "Where is the sin?"; questionlist[7] = "Where will they find you?"; questionlist[8] = "Which one cannot be stopped?"; questionlist[9] = "Which shape can control your mind?"; questionlist[10] = "Which shape is insane?"; questionlist[11] = "Where is the betrayal?"; questionlist[12] = "Which pretends to be you?"; questionlist[13] = "Which can hear you breathing?"; questionlist[14] = "Which shape wants to hurt you?"; questionlist[15] = "Who are the false friends?"; questionlist[16] = "How can you stop them lying about you?"; questionlist[17] = "Has the nightmare only begun?"; questionlist[18] = "Which knows your secret?"; questionlist[19] = "Is there another voice inside you?"; questionlist[20] = "Am I you?"; questiontop = new question0(); addChild(questiontop); questiontop.startbutton.addEventListener(MouseEvent.CLICK, removetop); empty.addChild(questionpic1); empty2.addChild(questionletters1); blurquestion = new BlurFilter(); blurquestion.blurX = 20; blurquestion.blurY = 4; blurquestion.quality = 5; ymax = 30; xmax = 30; xmin = 3; ymin = 3; xbigger = "yes"; ybigger = "yes"; randomx = (Math.random() * 30); randomy = (Math.random() * 30); blurTimer = new Timer(60); blurTimer.addEventListener(TimerEvent.TIMER, changeblur); blurTimer.start(); tweentimer = new Timer(1000, 1); tweentimer.addEventListener(TimerEvent.TIMER, afterfade); stagebuttona.addEventListener(MouseEvent.CLICK, clickeda); stagebuttonb.addEventListener(MouseEvent.CLICK, clickedb); imagetween1 = new Tween(questionpic1, "alpha", null, 1, 0, 11, false); imagetween1.stop(); imagetween2 = new Tween(questionpic2, "alpha", null, 1, 0, 11, false); imagetween2.stop(); imagetween3 = new Tween(questionpic3, "alpha", null, 1, 0, 11, false); imagetween3.stop(); imagetween4 = new Tween(questionpic4, "alpha", null, 1, 0, 11, false); imagetween4.stop(); imagetween5 = new Tween(questionpic5, "alpha", null, 1, 0, 11, false); imagetween5.stop(); imagetween6 = new Tween(questionpic6, "alpha", null, 1, 0, 11, false); imagetween6.stop(); imagetween7 = new Tween(questionpic7, "alpha", null, 1, 0, 11, false); imagetween7.stop(); imagetween8 = new Tween(questionpic8, "alpha", null, 1, 0, 11, false); imagetween8.stop(); imagetween9 = new Tween(questionpic9, "alpha", null, 1, 0, 11, false); imagetween9.stop(); imagetween10 = new Tween(questionpic10, "alpha", null, 1, 0, 11, false); imagetween10.stop(); imagetween11 = new Tween(questionpic11, "alpha", null, 1, 0, 11, false); imagetween11.stop(); imagetween12 = new Tween(questionpic12, "alpha", null, 1, 0, 11, false); imagetween12.stop(); imagetween13 = new Tween(questionpic13, "alpha", null, 1, 0, 11, false); imagetween13.stop(); imagetween14 = new Tween(questionpic14, "alpha", null, 1, 0, 11, false); imagetween14.stop(); imagetween15 = new Tween(questionpic15, "alpha", null, 1, 0, 11, false); imagetween15.stop(); imagetween16 = new Tween(questionpic16, "alpha", null, 1, 0, 11, false); imagetween16.stop(); imagetween17 = new Tween(questionpic17, "alpha", null, 1, 0, 11, false); imagetween17.stop(); imagetween18 = new Tween(questionpic18, "alpha", null, 1, 0, 11, false); imagetween18.stop(); imagetween19 = new Tween(questionpic19, "alpha", null, 1, 0, 11, false); imagetween19.stop(); imagetween20 = new Tween(questionpic20, "alpha", null, 1, 0, 11, false); imagetween20.stop(); lettertween1 = new Tween(questionletters1, "alpha", null, 0.3, 0, 16, false); lettertween1.stop(); lettertween2 = new Tween(questionletters2, "alpha", null, 0.3, 0, 16, false); lettertween2.stop(); lettertween3 = new Tween(questionletters3, "alpha", null, 0.3, 0, 16, false); lettertween3.stop(); lettertween4 = new Tween(questionletters4, "alpha", null, 0.3, 0, 16, false); lettertween4.stop(); lettertween5 = new Tween(questionletters5, "alpha", null, 0.3, 0, 16, false); lettertween5.stop(); lettertween6 = new Tween(questionletters6, "alpha", null, 0.3, 0, 16, false); lettertween6.stop(); lettertween7 = new Tween(questionletters7, "alpha", null, 0.3, 0, 16, false); lettertween7.stop(); lettertween8 = new Tween(questionletters8, "alpha", null, 0.3, 0, 16, false); lettertween8.stop(); lettertween9 = new Tween(questionletters9, "alpha", null, 0.3, 0, 16, false); lettertween9.stop(); lettertween10 = new Tween(questionletters10, "alpha", null, 0.3, 0, 16, false); lettertween10.stop(); lettertween11 = new Tween(questionletters11, "alpha", null, 0.3, 0, 16, false); lettertween11.stop(); lettertween12 = new Tween(questionletters12, "alpha", null, 0.3, 0, 16, false); lettertween12.stop(); lettertween13 = new Tween(questionletters13, "alpha", null, 0.3, 0, 16, false); lettertween13.stop(); lettertween14 = new Tween(questionletters14, "alpha", null, 0.3, 0, 16, false); lettertween14.stop(); lettertween15 = new Tween(questionletters15, "alpha", null, 0.3, 0, 16, false); lettertween15.stop(); lettertween16 = new Tween(questionletters16, "alpha", null, 0.3, 0, 16, false); lettertween16.stop(); lettertween17 = new Tween(questionletters17, "alpha", null, 0.3, 0, 16, false); lettertween17.stop(); lettertween18 = new Tween(questionletters18, "alpha", null, 0.3, 0, 16, false); lettertween18.stop(); lettertween19 = new Tween(questionletters19, "alpha", null, 0.3, 0, 16, false); lettertween19.stop(); lettertween20 = new Tween(questionletters20, "alpha", null, 0.3, 0, 16, false); lettertween20.stop(); stop(); } } }//package psytest3_fla
Section 4
//backgroundflare (backgroundflare) package { import flash.display.*; public dynamic class backgroundflare extends MovieClip { public function backgroundflare(){ addFrameScript(5, frame6); } function frame6(){ stop(); } } }//package
Section 5
//buttona (buttona) package { import flash.display.*; public dynamic class buttona extends SimpleButton { } }//package
Section 6
//buttonb (buttonb) package { import flash.display.*; public dynamic class buttonb extends SimpleButton { } }//package
Section 7
//email (email) package { import flash.display.*; public dynamic class email extends SimpleButton { } }//package
Section 8
//empty (empty) package { import flash.display.*; public dynamic class empty extends MovieClip { } }//package
Section 9
//qart1 (qart1) package { import flash.display.*; public dynamic class qart1 extends MovieClip { } }//package
Section 10
//question0 (question0) package { import flash.display.*; public dynamic class question0 extends MovieClip { public var startbutton:testbutton; } }//package
Section 11
//question1 (question1) package { import flash.display.*; public dynamic class question1 extends MovieClip { } }//package
Section 12
//question10 (question10) package { import flash.display.*; public dynamic class question10 extends MovieClip { } }//package
Section 13
//question10b (question10b) package { import flash.display.*; public dynamic class question10b extends MovieClip { } }//package
Section 14
//question11 (question11) package { import flash.display.*; public dynamic class question11 extends MovieClip { } }//package
Section 15
//question11b (question11b) package { import flash.display.*; public dynamic class question11b extends MovieClip { } }//package
Section 16
//question12 (question12) package { import flash.display.*; public dynamic class question12 extends MovieClip { } }//package
Section 17
//question12b (question12b) package { import flash.display.*; public dynamic class question12b extends MovieClip { } }//package
Section 18
//question13 (question13) package { import flash.display.*; public dynamic class question13 extends MovieClip { } }//package
Section 19
//question13b (question13b) package { import flash.display.*; public dynamic class question13b extends MovieClip { } }//package
Section 20
//question14 (question14) package { import flash.display.*; public dynamic class question14 extends MovieClip { } }//package
Section 21
//question14b (question14b) package { import flash.display.*; public dynamic class question14b extends MovieClip { } }//package
Section 22
//question15 (question15) package { import flash.display.*; public dynamic class question15 extends MovieClip { } }//package
Section 23
//question15b (question15b) package { import flash.display.*; public dynamic class question15b extends MovieClip { } }//package
Section 24
//question16 (question16) package { import flash.display.*; public dynamic class question16 extends MovieClip { } }//package
Section 25
//question16b (question16b) package { import flash.display.*; public dynamic class question16b extends MovieClip { } }//package
Section 26
//question17 (question17) package { import flash.display.*; public dynamic class question17 extends MovieClip { } }//package
Section 27
//question17b (question17b) package { import flash.display.*; public dynamic class question17b extends MovieClip { } }//package
Section 28
//question18 (question18) package { import flash.display.*; public dynamic class question18 extends MovieClip { } }//package
Section 29
//question18b (question18b) package { import flash.display.*; public dynamic class question18b extends MovieClip { } }//package
Section 30
//question19 (question19) package { import flash.display.*; public dynamic class question19 extends MovieClip { } }//package
Section 31
//question19b (question19b) package { import flash.display.*; public dynamic class question19b extends MovieClip { } }//package
Section 32
//question1b (question1b) package { import flash.display.*; public dynamic class question1b extends MovieClip { } }//package
Section 33
//question2 (question2) package { import flash.display.*; public dynamic class question2 extends MovieClip { } }//package
Section 34
//question20 (question20) package { import flash.display.*; public dynamic class question20 extends MovieClip { } }//package
Section 35
//question20b (question20b) package { import flash.display.*; public dynamic class question20b extends MovieClip { } }//package
Section 36
//question2b (question2b) package { import flash.display.*; public dynamic class question2b extends MovieClip { } }//package
Section 37
//question3 (question3) package { import flash.display.*; public dynamic class question3 extends MovieClip { } }//package
Section 38
//question3b (question3b) package { import flash.display.*; public dynamic class question3b extends MovieClip { } }//package
Section 39
//question4 (question4) package { import flash.display.*; public dynamic class question4 extends MovieClip { } }//package
Section 40
//question4b (question4b) package { import flash.display.*; public dynamic class question4b extends MovieClip { } }//package
Section 41
//question5 (question5) package { import flash.display.*; public dynamic class question5 extends MovieClip { } }//package
Section 42
//question5b (question5b) package { import flash.display.*; public dynamic class question5b extends MovieClip { } }//package
Section 43
//question6 (question6) package { import flash.display.*; public dynamic class question6 extends MovieClip { } }//package
Section 44
//question6b (question6b) package { import flash.display.*; public dynamic class question6b extends MovieClip { } }//package
Section 45
//question7 (question7) package { import flash.display.*; public dynamic class question7 extends MovieClip { } }//package
Section 46
//question7b (question7b) package { import flash.display.*; public dynamic class question7b extends MovieClip { } }//package
Section 47
//question8 (question8) package { import flash.display.*; public dynamic class question8 extends MovieClip { } }//package
Section 48
//question8b (question8b) package { import flash.display.*; public dynamic class question8b extends MovieClip { } }//package
Section 49
//question9 (question9) package { import flash.display.*; public dynamic class question9 extends MovieClip { } }//package
Section 50
//question9b (question9b) package { import flash.display.*; public dynamic class question9b extends MovieClip { } }//package
Section 51
//questionresult (questionresult) package { import flash.display.*; public dynamic class questionresult extends MovieClip { public var emailus:email; } }//package
Section 52
//testbutton (testbutton) package { import flash.display.*; public dynamic class testbutton extends SimpleButton { } }//package

Library Items

Symbol 1 GraphicUsed by:8 96 113
Symbol 2 FontUsed by:3 4 5 10 11 90 91 94 95 99 103 116 118
Symbol 3 TextUses:2Used by:8
Symbol 4 TextUses:2Used by:7
Symbol 5 TextUses:2Used by:7
Symbol 6 GraphicUsed by:7
Symbol 7 Button {email}Uses:4 5 6Used by:8
Symbol 8 MovieClip {questionresult}Uses:1 3 7
Symbol 9 GraphicUsed by:13 17 21 25 29 33 37 41 45 49 53 57 61 65 69 79 83
Symbol 10 TextUses:2Used by:13 17 21 25 29 33 37 41 45 49 53 57 61 65 69 73 76 79 83 88
Symbol 11 TextUses:2Used by:13 17 21 25 29 33 37 41 45 49 53 57 61 65 69 73 76 79 83 88
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClip {question20b}Uses:9 10 11 12
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClip {question20}Uses:14
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClip {question19b}Uses:9 11 10 16
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip {question19}Uses:18
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClip {question18b}Uses:9 11 20 10
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip {question18}Uses:22
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip {question17b}Uses:9 11 10 24
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClip {question17}Uses:26
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClip {question16b}Uses:9 10 11 28
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClip {question16}Uses:30
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClip {question15b}Uses:9 10 11 32
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClip {question15}Uses:34
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClip {question14b}Uses:9 10 11 36
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClip {question14}Uses:38
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClip {question13b}Uses:9 11 10 40
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClip {question13}Uses:42
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClip {question12b}Uses:9 10 11 44
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClip {question12}Uses:46
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClip {question11b}Uses:9 10 11 48
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClip {question11}Uses:50
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClip {question10b}Uses:9 10 11 52
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClip {question10}Uses:54
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClip {question9b}Uses:9 11 56 10
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClip {question9}Uses:58
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClip {question8b}Uses:9 10 11 60
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip {question8}Uses:62
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClip {question7b}Uses:9 11 10 64
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClip {question7}Uses:66
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClip {question6b}Uses:9 10 68 11
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClip {question6}Uses:70
Symbol 72 GraphicUsed by:73 74
Symbol 73 MovieClip {question5b}Uses:72 11 10
Symbol 74 MovieClip {question5}Uses:72
Symbol 75 GraphicUsed by:76 77
Symbol 76 MovieClip {question4b}Uses:75 10 11
Symbol 77 MovieClip {question4}Uses:75
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClip {question3b}Uses:9 10 11 78
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClip {question3}Uses:80
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClip {question2b}Uses:9 10 11 82
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClip {question2}Uses:84
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClip {qart1}Uses:86Used by:88 89
Symbol 88 MovieClip {question1b}Uses:87 10 11
Symbol 89 MovieClip {question1}Uses:87
Symbol 90 TextUses:2Used by:93
Symbol 91 TextUses:2Used by:93
Symbol 92 GraphicUsed by:93
Symbol 93 Button {testbutton}Uses:90 91 92Used by:96
Symbol 94 TextUses:2Used by:96
Symbol 95 TextUses:2Used by:96
Symbol 96 MovieClip {question0}Uses:1 94 95 93
Symbol 97 MovieClip {empty}
Symbol 98 GraphicUsed by:102 105
Symbol 99 TextUses:2Used by:102
Symbol 100 GraphicUsed by:102 105
Symbol 101 GraphicUsed by:102
Symbol 102 Button {buttonb}Uses:98 99 100 101Used by:Timeline
Symbol 103 TextUses:2Used by:105
Symbol 104 GraphicUsed by:105
Symbol 105 Button {buttona}Uses:98 103 100 104Used by:Timeline
Symbol 106 GraphicUsed by:111
Symbol 107 GraphicUsed by:111
Symbol 108 GraphicUsed by:111
Symbol 109 GraphicUsed by:111
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip {backgroundflare}Uses:106 107 108 109 110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:1 112Used by:Timeline
Symbol 114 GraphicUsed by:Timeline
Symbol 115 FontUsed by:116 117 118
Symbol 116 EditableTextUses:2 115Used by:Timeline
Symbol 117 TextUses:115Used by:Timeline
Symbol 118 EditableTextUses:2 115Used by:Timeline

Instance Names

"background"Frame 1Symbol 113 MovieClip
"flare"Frame 1Symbol 111 MovieClip {backgroundflare}
"questiontext"Frame 1Symbol 116 EditableText
"questionnumber"Frame 1Symbol 118 EditableText
"stagebuttona"Frame 1Symbol 105 Button {buttona}
"stagebuttonb"Frame 1Symbol 102 Button {buttonb}
"emailus"Symbol 8 MovieClip {questionresult} Frame 1Symbol 7 Button {email}
"startbutton"Symbol 96 MovieClip {question0} Frame 1Symbol 93 Button {testbutton}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.




http://swfchan.com/51/251549/info.shtml
Created: 6/4 -2023 17:23:37 Last modified: 6/4 -2023 17:23:37 Server time: 01/05 -2024 21:53:37