|
|
|
Forum Member
      
Group: Forum Members
Last Login: 7/30/2007 6:06:51 PM
Posts: 25,
Visits: 36
|
|
| Hello, I wish to log timing information in an e-basic..... how do I do it ? My guess is that I should do something like c.SetAttrib "Onset time", Clock.Read SlideDisplayStimuli.Run However it seems very complicated and long to add up all the loggable information. Is there a simpler way to do it ?
|
|
|
|
|
Forum Member
      
Group: Forum Members
Last Login: 7/30/2007 6:06:51 PM
Posts: 25,
Visits: 36
|
|
| Wait I think it is more like this right ? : c.SetAttrib "StartTime", SlideDisplayStimuli.StartTime c.SetAttrib "FinishTime", SlideDisplayStimuli.FinishTime c.SetAttrib "OnsetTime", SlideDisplayStimuli.OnsetTime
|
|
|
|
|
Forum MVP
      
Group: Administrators
Last Login: Today @ 5:00:06 PM
Posts: 569,
Visits: 1,238
|
|
| The code you have in your 2nd reply is exactly what E-Prime generates when you tick each property of the Logging property page in the E-Studio GUI for the object. If you are doing something custom, you would use use c.SetAttrib to assign the name/value of whatever entity you wanted log. Clock.Read will provide the timestamp at that moment. -Brandon
|
|
|
|