[WARNING] WARNING: DO NOT EDIT THIS FILE DIRECTLY! Use only E-Studio to edit this file. Editing of this file from any other means is not supported and may corrupt the experiment design specification. Technical support will not be able to address any issue in regards to this file format. [Experiment] VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=94 _VersionPersist=6 Root="SessionProc" Author="Psychology Software Tools, Inc" Abstract="Abstract\r\nThis sample experiment illustrates how to continuously log mouse\r\ncoordinates.\r\n\r\nA TextDisplay object is presented and the subject is asked to\r\nestimate the location of a previous stimulus. The TextDisplay is\r\nconfigured with a 0 Duration so that InLine script will execute during\r\nthe object.\r\n\r\nThe InLine script is a loop that will run until a response is received.\r\nInside the loop, the current time is constantly monitored. Every\r\n25ms, the mouse coordinates are logged as attributes, along with\r\na timestamp. Once a response is made, the response coordinates\r\nare logged.\r\n\r\nAfterwards, the attributes created are used to present a replay\r\nof the subject's path. A Canvas object is used to draw a circle\r\nrepresenting each set of coordinates logged. An outlined circle\r\nis drawn at the end of the replay to indicate the response\r\ncoordinates. The subject can skip this replay by pressing the left\r\nmouse button." Notes="" Creation=1213366177 [Device0] _VersionPersist=1 OpenDevice=1 Width=640 Height=480 Bpp=16 Name="Display" Class="Display" [Device1] _VersionPersist=1 OpenDevice=0 Channels=2 Samples=22050 Bps=16 Name="Sound" Class="Sound" [Device2] _VersionPersist=1 OpenDevice=1 CollectionMode=1 EmulateDeviceName="" CapsLock=0 NumLock=1 Name="Keyboard" Class="Keyboard" [Device3] _VersionPersist=1 OpenDevice=1 CollectionMode=1 EmulateDeviceName="" OpenMode=0 ShowCursor=0 Name="Mouse" Class="Mouse" [DataFile] WarnBeforeOverwrite=1 WarnIfConvertFailed=1 RemoveERecoveryFile=0 ReceiveFeedbackDuringDataFileConversion=1 LogLevel(2).Name="Block" LogLevel(3).Name="Trial" LogLevel(4).Name="SubTrial" LogLevel(5).Name="LogLevel5" LogLevel(6).Name="LogLevel6" LogLevel(7).Name="LogLevel7" LogLevel(8).Name="LogLevel8" LogLevel(9).Name="LogLevel9" LogLevel(10).Name="LogLevel10" [StartupInfo] DisplaySummary=1 UseDefaults=0 [StartupInfo1] Name="Subject" Prompt="Please enter the Subject Number (1-32767, 0=No Data Logging):" DataType=0 Enabled=1 PromptEnabled=1 Default="1" Min=0 Max=32767 PrivateFlags=268435477 PrivateInfo=1 [StartupInfo2] Name="Session" Prompt="Please enter the Session Number (1-32767):" DataType=0 Enabled=1 PromptEnabled=1 Default="1" Min=1 Max=32767 PrivateFlags=268435477 PrivateInfo=1 [StartupInfo3] Name="Group" Prompt="Please enter Subject's Group (0-32767):" DataType=0 Enabled=0 PromptEnabled=0 Default="1" Min=0 Max=32767 [StartupInfo4] Name="Name" Prompt="Please enter Subject's Name:" DataType=1 Enabled=0 PromptEnabled=0 Default="" MaxLength=255 [StartupInfo5] Name="Age" Prompt="Please enter Subject's Age (0-150):" DataType=0 Enabled=0 PromptEnabled=0 Default="0" Min=0 Max=150 [StartupInfo6] Name="Sex" Prompt="Please enter Subject's Sex:" DataType=2 Enabled=0 PromptEnabled=0 Default="male" Choice(1).Value="male" Choice(2).Value="female" [StartupInfo7] Name="Handedness" Prompt="Enter Subject's Handedness:" DataType=2 Enabled=0 PromptEnabled=0 Default="left" Choice(1).Value="left" Choice(2).Value="right" [StartupInfo8] Name="ResearcherID" Prompt="Please enter Researcher's ID:" DataType=0 Enabled=0 PromptEnabled=0 Default="1" Min=0 Max=32767 [Object0] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _ItemList="Welcome;BlockList;Goodbye" _VersionPersist=1 FlowLines(0).Count=3 FlowLines(0).FlowItem(0).Name="Welcome" FlowLines(0).FlowItem(1).Name="BlockList" FlowLines(0).FlowItem(2).Name="Goodbye" LogData=1 Name="SessionProc" TypeName="Procedure" Tag="" Notes="" [Object1] _Version=131072 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _VersionPersist=1 Code="'Declare pointer variable to hold coordinates\nDim ptMouse As Point\n\n'Declare and initialize a variable that will hold the next target time \n' to log a coordinate\nDim nLogTime As Long\nnLogTime = Clock.Read\n\n'Constant representing the interval at which coordinates will be tracked\nConst nInterval As Integer = 25\n\n'Counter variable used to name attributes\nDim nCount As Long\n\n'Loop until a response is made\nDo While CollectResponse.InputMasks.IsPending()\n\n\t'Check if 25ms have passed\n\tIf Clock.Read > nLogTime Then\n\n\t\t'Increment counter\n\t\tnCount = nCount + 1\n\n\t\t'Get the current mouse cursor position\n\t\tMouse.GetCursorPos ptMouse.x, ptMouse.y\n\n\t\t'Log the coordinates and the timestamp\n\t\tc.SetAttrib \"XTracked\" & nCount, ptMouse.x\n\t\tc.SetAttrib \"YTracked\"& nCount, ptmouse.y\n\t\tc.SetAttrib \"TrackTime\" & nCount, Clock.Read\n\t\n\t\t'Set the next target log time\n\t\tnLogTime = nLogTime + nInterval\n\n\tEnd If\n\nLoop\n\n\n'A response has been made, so log response coordinates\nDim theMouseResponseData As MouseResponseData\nSet theMouseResponseData = CMouseResponseData(CollectResponse.InputMasks.Responses(1))\n\nIf Not theMouseResponseData Is Nothing Then\n\n\tc.SetAttrib \"XTrackedFinal\", theMouseResponseData.CursorX\n\tc.SetAttrib \"YTrackedFinal\", theMouseResponseData.CursorY\n\tc.SetAttrib \"TrackTimeFinal\", theMouseResponseData.RT\n\nEnd If\n\n'Release references\nSet theMouseResponseData = Nothing" Name="TrackMouse" TypeName="InLine" Tag="" Notes="" [Object2] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Logging("Color1").Log=-1 Logging("Color2").Log=-1 Logging("Color3").Log=-1 Logging("Color4").Log=-1 _ItemList="TrialProc" _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Order=1 OrderBy=0 ResetEveryRun=0 HideLevelsWithZeroWeight=0 CycleDef=0 CycleValueSamples=0 CycleValueCondition="" ExitDef=0 ExitValueCycles=1 ExitValueSamples=0 ExitValueSeconds=0 ExitValueCondition="" LoadMethod=0 Filename="" UserAttributes=4 Attributes("Weight").DefaultValue="1" Attributes("Weight").Visible=1 Attributes("Weight").Width=75 Attributes("Weight").OrderIndex=0 Attributes("Nested").DefaultValue="" Attributes("Nested").Visible=1 Attributes("Nested").Width=75 Attributes("Nested").OrderIndex=1 Attributes("Procedure").DefaultValue="test" Attributes("Procedure").Visible=1 Attributes("Procedure").Width=75 Attributes("Procedure").OrderIndex=2 Attributes(1).Name="Color1" Attributes(1).DefaultValue="?" Attributes(1).VarType=8 Attributes(1).VarTypeInternal=8 Attributes(1).Visible=1 Attributes(1).Width=75 Attributes(2).Name="Color2" Attributes(2).DefaultValue="?" Attributes(2).VarType=8 Attributes(2).VarTypeInternal=8 Attributes(2).Visible=1 Attributes(2).Width=75 Attributes(3).Name="Color3" Attributes(3).DefaultValue="?" Attributes(3).VarType=8 Attributes(3).VarTypeInternal=8 Attributes(3).Visible=1 Attributes(3).Width=75 Attributes(4).Name="Color4" Attributes(4).DefaultValue="?" Attributes(4).VarType=8 Attributes(4).VarTypeInternal=8 Attributes(4).Visible=1 Attributes(4).Width=75 Levels=3 Levels(1).ValueString="1\t\tTrialProc\tblue\tred\tgreen\tyellow\t" Levels(2).ValueString="1\t\tTrialProc\tmagenta\tsilver\tblue\tgray\t" Levels(3).ValueString="1\t\tTrialProc\tmaroon\tpurple\tolive\tblue\t" Name="TrialList" TypeName="List" Tag="" Notes="" [Object3] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _ItemList="Fixation;Stimulus;ShowMouseCursor;CollectResponse;TrackMouse;HideMouseCursor;Replay;DrawPath;EndTrial" _VersionPersist=1 FlowLines(0).Count=9 FlowLines(0).FlowItem(0).Name="Fixation" FlowLines(0).FlowItem(1).Name="Stimulus" FlowLines(0).FlowItem(2).Name="ShowMouseCursor" FlowLines(0).FlowItem(3).Name="CollectResponse" FlowLines(0).FlowItem(4).Name="TrackMouse" FlowLines(0).FlowItem(5).Name="HideMouseCursor" FlowLines(0).FlowItem(6).Name="Replay" FlowLines(0).FlowItem(7).Name="DrawPath" FlowLines(0).FlowItem(8).Name="EndTrial" LogData=1 Name="TrialProc" TypeName="Procedure" Tag="" Notes="" [Object4] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=68 Logging("OnsetDelay").Log=-1 Logging("OnsetTime").Log=-1 Logging("DurationError").Log=-1 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=-1 Logging("ACC").Log=-1 Logging("RT").Log=-1 Logging("RESP").Log=-1 Logging("CRESP").Log=-1 Logging("Tag").Log=0 _VersionPersist=2 ActiveState="Default" States.Count=1 States(1).Name="Default" States("Default").X="center" States("Default").Y="center" States("Default").Width="100%" States("Default").Height="100%" States("Default").XAlign="center" States("Default").YAlign="center" States("Default").BackColor="white" States("Default").BackStyle="opaque" States("Default").BorderColor="black" States("Default").BorderWidth="0" States("Default").ClearAfter="No" States("Default").Enabled="Yes" States("Default").ChildCount=4 States("Default").Objects(1).Type="Text" States("Default").Objects(1).Text="." States("Default").Objects(1).Width="8%" States("Default").Objects(1).Height="18%" States("Default").Objects(1).X="9%" States("Default").Objects(1).Y="15%" States("Default").Objects(1).AlignHorizontal="center" States("Default").Objects(1).AlignVertical="center" States("Default").Objects(1).FontName="Courier New" States("Default").Objects(1).FontSize="72" States("Default").Objects(1).FontBold="Yes" States("Default").Objects(1).FontUnderline="No" States("Default").Objects(1).FontStrikeout="No" States("Default").Objects(1).FontItalic="No" States("Default").Objects(1).ForeColor="[Color1]" States("Default").Objects(1).BackColor="white" States("Default").Objects(1).BackStyle="opaque" States("Default").Objects(1).BorderWidth="0" States("Default").Objects(1).BorderColor="black" States("Default").Objects(1).XAlign="center" States("Default").Objects(1).YAlign="center" States("Default").Objects(1).WordWrap=1 States("Default").Objects(1).Name="Text1" States("Default").Objects(2).Type="Text" States("Default").Objects(2).Text="." States("Default").Objects(2).Width="8%" States("Default").Objects(2).Height="18%" States("Default").Objects(2).X="24%" States("Default").Objects(2).Y="68%" States("Default").Objects(2).AlignHorizontal="center" States("Default").Objects(2).AlignVertical="center" States("Default").Objects(2).FontName="Courier New" States("Default").Objects(2).FontSize="72" States("Default").Objects(2).FontBold="Yes" States("Default").Objects(2).FontUnderline="No" States("Default").Objects(2).FontStrikeout="No" States("Default").Objects(2).FontItalic="No" States("Default").Objects(2).ForeColor="[Color2]" States("Default").Objects(2).BackColor="white" States("Default").Objects(2).BackStyle="opaque" States("Default").Objects(2).BorderWidth="0" States("Default").Objects(2).BorderColor="black" States("Default").Objects(2).XAlign="center" States("Default").Objects(2).YAlign="center" States("Default").Objects(2).WordWrap=1 States("Default").Objects(2).Name="Text2" States("Default").Objects(3).Type="Text" States("Default").Objects(3).Text="." States("Default").Objects(3).Width="8%" States("Default").Objects(3).Height="15%" States("Default").Objects(3).X="94%" States("Default").Objects(3).Y="5%" States("Default").Objects(3).AlignHorizontal="center" States("Default").Objects(3).AlignVertical="center" States("Default").Objects(3).FontName="Courier New" States("Default").Objects(3).FontSize="72" States("Default").Objects(3).FontBold="Yes" States("Default").Objects(3).FontUnderline="No" States("Default").Objects(3).FontStrikeout="No" States("Default").Objects(3).FontItalic="No" States("Default").Objects(3).ForeColor="[Color3]" States("Default").Objects(3).BackColor="white" States("Default").Objects(3).BackStyle="opaque" States("Default").Objects(3).BorderWidth="0" States("Default").Objects(3).BorderColor="black" States("Default").Objects(3).XAlign="center" States("Default").Objects(3).YAlign="center" States("Default").Objects(3).WordWrap=1 States("Default").Objects(3).Name="Text3" States("Default").Objects(4).Type="Text" States("Default").Objects(4).Text="." States("Default").Objects(4).Width="8%" States("Default").Objects(4).Height="15%" States("Default").Objects(4).X="86%" States("Default").Objects(4).Y="50%" States("Default").Objects(4).AlignHorizontal="center" States("Default").Objects(4).AlignVertical="center" States("Default").Objects(4).FontName="Courier New" States("Default").Objects(4).FontSize="72" States("Default").Objects(4).FontBold="Yes" States("Default").Objects(4).FontUnderline="No" States("Default").Objects(4).FontStrikeout="No" States("Default").Objects(4).FontItalic="No" States("Default").Objects(4).ForeColor="[Color4]" States("Default").Objects(4).BackColor="white" States("Default").Objects(4).BackStyle="opaque" States("Default").Objects(4).BorderWidth="0" States("Default").Objects(4).BorderColor="black" States("Default").Objects(4).XAlign="center" States("Default").Objects(4).YAlign="center" States("Default").Objects(4).WordWrap=1 States("Default").Objects(4).Name="Text4" Duration="500" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="Stimulus" TypeName="Slide" Tag="" Notes="" [Object5] _Version=131072 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _VersionPersist=1 Code="'Set the mouse cursor to the center of the screen\nMouse.SetCursorPos Display.XRes/2, Display.YRes/2\n\n'Show the mouse cursor\nMouse.ShowCursor True" Name="ShowMouseCursor" TypeName="InLine" Tag="" Notes="" [Object6] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Logging("OnsetDelay").Log=0 Logging("OnsetTime").Log=0 Logging("DurationError").Log=0 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=0 Logging("ACC").Log=0 Logging("RT").Log=0 Logging("RESP").Log=0 Logging("CRESP").Log=0 Logging("Tag").Log=0 Input(0)=!Data0 _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Text="Welcome to the experiment.\n\nIn this task, you will be presented with four dots. You will then be asked to click in the general area that the BLUE dot appeared.\n\nPress the left mouse button to continue." ForeColor="black" BackColor="white" BackStyle="opaque" BorderColor="black" BorderWidth="0" X="center" Y="center" Width="100%" Height="100%" XAlign="center" YAlign="center" AlignHorizontal="center" AlignVertical="center" FontName="Courier New" FontSize="18" FontBold="Yes" FontItalic="No" FontUnderline="No" FontStrikeout="No" WordWrap=1 ClearAfter="No" Duration="-1" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="Welcome" TypeName="TextDisplay" Tag="" Notes="" [Data0] DeviceName="Mouse" DeviceClass="Mouse" AllowableInput="1" CorrectInput="" TimeLimit="" MaxCount="1" InputAction=1 SyncOwnerDuration=1 Enabled=1 FlushInputBuffer="Yes" TerminationInput="" UserTag="" [Object7] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Logging("OnsetDelay").Log=0 Logging("OnsetTime").Log=0 Logging("DurationError").Log=0 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=0 Logging("ACC").Log=0 Logging("RT").Log=0 Logging("RESP").Log=0 Logging("CRESP").Log=0 Logging("Tag").Log=0 _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Text="+" ForeColor="black" BackColor="white" BackStyle="opaque" BorderColor="black" BorderWidth="0" X="center" Y="center" Width="100%" Height="100%" XAlign="center" YAlign="center" AlignHorizontal="center" AlignVertical="center" FontName="Courier New" FontSize="18" FontBold="Yes" FontItalic="No" FontUnderline="No" FontStrikeout="No" WordWrap=1 ClearAfter="No" Duration="1000" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="Fixation" TypeName="TextDisplay" Tag="" Notes="" [Object8] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Logging("OnsetDelay").Log=0 Logging("OnsetTime").Log=0 Logging("DurationError").Log=0 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=0 Logging("ACC").Log=0 Logging("RT").Log=0 Logging("RESP").Log=0 Logging("CRESP").Log=0 Logging("Tag").Log=0 Input(0)=!Data1 _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Text="Move the mouse cursor to the position of the blue dot and then press the left mouse button." ForeColor="black" BackColor="white" BackStyle="opaque" BorderColor="black" BorderWidth="0" X="center" Y="center" Width="100%" Height="100%" XAlign="center" YAlign="center" AlignHorizontal="center" AlignVertical="bottom" FontName="Courier New" FontSize="18" FontBold="Yes" FontItalic="No" FontUnderline="No" FontStrikeout="No" WordWrap=1 ClearAfter="No" Duration="0" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="CollectResponse" TypeName="TextDisplay" Tag="" Notes="" [Data1] DeviceName="Mouse" DeviceClass="Mouse" AllowableInput="1" CorrectInput="" TimeLimit="-1" MaxCount="1" InputAction=0 SyncOwnerDuration=0 Enabled=1 FlushInputBuffer="Yes" TerminationInput="" UserTag="" [Object9] _Version=131072 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _VersionPersist=1 Code="'Hide the mouse cursor\nMouse.ShowCursor False" Name="HideMouseCursor" TypeName="InLine" Tag="" Notes="" [Object10] _Version=131072 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _VersionPersist=1 Code="'Counter variable\nDim nReplayCount As Long\n\n'Constant holding the size of the circles used\n' to replay the subject's path\nConst nRadius As Integer = 7\n\n'Create and initialize Canvas\nDim cnvsReplay As Canvas\nSet cnvsReplay = Display.Canvas\n\ncnvsReplay.PenColor = CColor(\"silver\")\ncnvsReplay.FillColor = CColor(\"silver\")\n\n'Replay the subject's response path until the final\n' point is reached or a response is received\nDo While (nReplayCount < nCount) And (Replay.InputMasks.IsPending())\n\n\tnReplayCount = nReplayCount + 1\n\n\tcnvsReplay.Circle c.GetAttrib(\"XTracked\" & nReplayCount), c.GetAttrib(\"YTracked\" & nReplayCount), nRadius\n\tSleep nInterval\n\nLoop\n\n'Skip if response is received\nIf Replay.RESP <> \"\" Then\n\tGoto EndTrial\nEnd If\n\n'Draw response coordinates\ncnvsReplay.PenColor = CColor(\"black\")\ncnvsReplay.FillColor = CColor(\"blue\")\n\ncnvsReplay.Circle c.GetAttrib(\"XTrackedFinal\"), c.GetAttrib(\"YTrackedFinal\"), nRadius\n\n'Present feedback\nSleep 1000" Name="DrawPath" TypeName="InLine" Tag="" Notes="" [Object11] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _VersionPersist=1 Name="EndTrial" TypeName="Label" Tag="" Notes="" [Object12] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _ItemList="BlockProc" _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Order=0 OrderBy=0 ResetEveryRun=0 HideLevelsWithZeroWeight=0 CycleDef=0 CycleValueSamples=0 CycleValueCondition="" ExitDef=0 ExitValueCycles=1 ExitValueSamples=1 ExitValueSeconds=0 ExitValueCondition="" LoadMethod=0 Filename="" UserAttributes=0 Attributes("Weight").DefaultValue="1" Attributes("Weight").Visible=1 Attributes("Weight").Width=75 Attributes("Weight").OrderIndex=0 Attributes("Nested").DefaultValue="" Attributes("Nested").Visible=1 Attributes("Nested").Width=75 Attributes("Nested").OrderIndex=1 Attributes("Procedure").DefaultValue="BlockProc" Attributes("Procedure").Visible=1 Attributes("Procedure").Width=75 Attributes("Procedure").OrderIndex=2 Levels=1 Levels(1).ValueString="1\t\tBlockProc\t" Name="BlockList" TypeName="List" Tag="" Notes="" [Object13] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 _ItemList="TrialList" _VersionPersist=1 FlowLines(0).Count=1 FlowLines(0).FlowItem(0).Name="TrialList" LogData=1 Name="BlockProc" TypeName="Procedure" Tag="" Notes="" [Object14] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Logging("OnsetDelay").Log=0 Logging("OnsetTime").Log=0 Logging("DurationError").Log=0 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=0 Logging("ACC").Log=0 Logging("RT").Log=0 Logging("RESP").Log=0 Logging("CRESP").Log=0 Logging("Tag").Log=0 _VersionPersist=1 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=67 Text="Thank you for participating.\n\nGoodbye!" ForeColor="black" BackColor="white" BackStyle="opaque" BorderColor="black" BorderWidth="0" X="center" Y="center" Width="100%" Height="100%" XAlign="center" YAlign="center" AlignHorizontal="center" AlignVertical="center" FontName="Courier New" FontSize="18" FontBold="Yes" FontItalic="No" FontUnderline="No" FontStrikeout="No" WordWrap=1 ClearAfter="No" Duration="3000" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="Goodbye" TypeName="TextDisplay" Tag="" Notes="" [Object15] _Version=65536 _ExtentX=2646 _ExtentY=1323 _StockProps=0 VersionMajor=1 VersionMinor=2 VersionInternal=1 VersionBuild=68 Logging("OnsetDelay").Log=-1 Logging("OnsetTime").Log=-1 Logging("DurationError").Log=-1 Logging("PreRelease").Log=0 Logging("Duration").Log=0 Logging("StartTime").Log=0 Logging("OffsetTime").Log=0 Logging("FinishTime").Log=0 Logging("TimingMode").Log=0 Logging("CustomOnsetTime").Log=0 Logging("CustomOffsetTime").Log=0 Logging("ActionDelay").Log=0 Logging("ActionTime").Log=0 Logging("TargetOffsetTime").Log=0 Logging("TargetOnsetTime").Log=0 Logging("OffsetDelay").Log=0 Logging("RTTime").Log=-1 Logging("ACC").Log=-1 Logging("RT").Log=-1 Logging("RESP").Log=-1 Logging("CRESP").Log=-1 Logging("Tag").Log=0 Input(0)=!Data2 _VersionPersist=2 ActiveState="Default" States.Count=1 States(1).Name="Default" States("Default").X="center" States("Default").Y="center" States("Default").Width="100%" States("Default").Height="100%" States("Default").XAlign="center" States("Default").YAlign="center" States("Default").BackColor="white" States("Default").BackStyle="opaque" States("Default").BorderColor="black" States("Default").BorderWidth="0" States("Default").ClearAfter="No" States("Default").Enabled="Yes" States("Default").ChildCount=5 States("Default").Objects(1).Type="Text" States("Default").Objects(1).Text="." States("Default").Objects(1).Width="8%" States("Default").Objects(1).Height="18%" States("Default").Objects(1).X="9%" States("Default").Objects(1).Y="15%" States("Default").Objects(1).AlignHorizontal="center" States("Default").Objects(1).AlignVertical="center" States("Default").Objects(1).FontName="Courier New" States("Default").Objects(1).FontSize="72" States("Default").Objects(1).FontBold="Yes" States("Default").Objects(1).FontUnderline="No" States("Default").Objects(1).FontStrikeout="No" States("Default").Objects(1).FontItalic="No" States("Default").Objects(1).ForeColor="[Color1]" States("Default").Objects(1).BackColor="white" States("Default").Objects(1).BackStyle="opaque" States("Default").Objects(1).BorderWidth="0" States("Default").Objects(1).BorderColor="black" States("Default").Objects(1).XAlign="center" States("Default").Objects(1).YAlign="center" States("Default").Objects(1).WordWrap=1 States("Default").Objects(1).Name="Text1" States("Default").Objects(2).Type="Text" States("Default").Objects(2).Text="." States("Default").Objects(2).Width="8%" States("Default").Objects(2).Height="18%" States("Default").Objects(2).X="24%" States("Default").Objects(2).Y="68%" States("Default").Objects(2).AlignHorizontal="center" States("Default").Objects(2).AlignVertical="center" States("Default").Objects(2).FontName="Courier New" States("Default").Objects(2).FontSize="72" States("Default").Objects(2).FontBold="Yes" States("Default").Objects(2).FontUnderline="No" States("Default").Objects(2).FontStrikeout="No" States("Default").Objects(2).FontItalic="No" States("Default").Objects(2).ForeColor="[Color2]" States("Default").Objects(2).BackColor="white" States("Default").Objects(2).BackStyle="opaque" States("Default").Objects(2).BorderWidth="0" States("Default").Objects(2).BorderColor="black" States("Default").Objects(2).XAlign="center" States("Default").Objects(2).YAlign="center" States("Default").Objects(2).WordWrap=1 States("Default").Objects(2).Name="Text2" States("Default").Objects(3).Type="Text" States("Default").Objects(3).Text="." States("Default").Objects(3).Width="8%" States("Default").Objects(3).Height="15%" States("Default").Objects(3).X="94%" States("Default").Objects(3).Y="5%" States("Default").Objects(3).AlignHorizontal="center" States("Default").Objects(3).AlignVertical="center" States("Default").Objects(3).FontName="Courier New" States("Default").Objects(3).FontSize="72" States("Default").Objects(3).FontBold="Yes" States("Default").Objects(3).FontUnderline="No" States("Default").Objects(3).FontStrikeout="No" States("Default").Objects(3).FontItalic="No" States("Default").Objects(3).ForeColor="[Color3]" States("Default").Objects(3).BackColor="white" States("Default").Objects(3).BackStyle="opaque" States("Default").Objects(3).BorderWidth="0" States("Default").Objects(3).BorderColor="black" States("Default").Objects(3).XAlign="center" States("Default").Objects(3).YAlign="center" States("Default").Objects(3).WordWrap=1 States("Default").Objects(3).Name="Text3" States("Default").Objects(4).Type="Text" States("Default").Objects(4).Text="." States("Default").Objects(4).Width="8%" States("Default").Objects(4).Height="15%" States("Default").Objects(4).X="86%" States("Default").Objects(4).Y="50%" States("Default").Objects(4).AlignHorizontal="center" States("Default").Objects(4).AlignVertical="center" States("Default").Objects(4).FontName="Courier New" States("Default").Objects(4).FontSize="72" States("Default").Objects(4).FontBold="Yes" States("Default").Objects(4).FontUnderline="No" States("Default").Objects(4).FontStrikeout="No" States("Default").Objects(4).FontItalic="No" States("Default").Objects(4).ForeColor="[Color4]" States("Default").Objects(4).BackColor="white" States("Default").Objects(4).BackStyle="opaque" States("Default").Objects(4).BorderWidth="0" States("Default").Objects(4).BorderColor="black" States("Default").Objects(4).XAlign="center" States("Default").Objects(4).YAlign="center" States("Default").Objects(4).WordWrap=1 States("Default").Objects(4).Name="Text4" States("Default").Objects(5).Type="Text" States("Default").Objects(5).Text="Replaying... click the left mouse button to continue." States("Default").Objects(5).Width="100%" States("Default").Objects(5).Height="20%" States("Default").Objects(5).X="319" States("Default").Objects(5).Y="421" States("Default").Objects(5).AlignHorizontal="center" States("Default").Objects(5).AlignVertical="bottom" States("Default").Objects(5).FontName="Courier New" States("Default").Objects(5).FontSize="18" States("Default").Objects(5).FontBold="Yes" States("Default").Objects(5).FontUnderline="No" States("Default").Objects(5).FontStrikeout="No" States("Default").Objects(5).FontItalic="No" States("Default").Objects(5).ForeColor="black" States("Default").Objects(5).BackColor="white" States("Default").Objects(5).BackStyle="opaque" States("Default").Objects(5).BorderWidth="0" States("Default").Objects(5).BorderColor="black" States("Default").Objects(5).XAlign="center" States("Default").Objects(5).YAlign="center" States("Default").Objects(5).WordWrap=1 States("Default").Objects(5).Name="Text5" Duration="0" JumpLabel="" TimingMode=0 PreRelease="0" OnsetSync=1 OffsetSync=0 Name="Replay" TypeName="Slide" Tag="" Notes="" [Data2] DeviceName="Mouse" DeviceClass="Mouse" AllowableInput="1" CorrectInput="" TimeLimit="-1" MaxCount="1" InputAction=0 SyncOwnerDuration=0 Enabled=1 FlushInputBuffer="Yes" TerminationInput="" UserTag="" [UserScript]