This tutorial uses many of the concepts you've learned so far about E-Prime: Objects, attributes, E-Basic code, and more. It is a summary of everything we've done in the previous tutorials and also applies your learning to something you may do for your research: Creating a scanner-compatible E-Prime experiment.
When a scanner starts acquiring fMRI images, it sends a pulse through a cable that is plugged into the computer running E-Prime. (The setup for this varies between laboratories - for example, you may need to bring your own laptop to the control room and plug in the cable yourself - so you'll need to ask what the procedure is where you work.) It is becoming more common for scanners to run a few "dummy" scans before sending the pulse. During these dummy acquisitions no data is collected. Make sure to ask your scanner technician whether these dummy scans are part of your sequence; if they aren't, you may need to discard the first few images during your analysis.
The first step is to synchronize the pulse with the onset of your experiment. The pulse is typically a number (such as "5") or a special keyboard character (such as the backtick, " ` ", found in the upper left corner of the keyboard). We can create an object that listens for this special character, and which executes a block of InLine code to timestamp when the pulse was sent.
Another feature of many fMRI experiments is "Jitter", or variable duration between trials. Adding jitter to experiments with conditions that are relatively close to each other (e.g., less than 10-15 seconds apart) allows the independent estimation of the hemodynamic response to each condition. We can add this by creating a nested List object called JitterList. This is created through the Nested attribute in a List, and Lists can be nested recursively (e.g., nested Lists can contain nested Lists, with no theoretical upper limit).
Another useful option is to add InLine objects that output the timing information into a text file as the experiment runs. This is easier to manage than sifting through the edat files and trying to reconstruct the timing manually.
And that's it! If you're new to E-Prime, these tutorials should give you the foundation you need to begin creating your own experiments and adapting them to fMRI scanners. Remember that the best way to learn it is to do it: Following along with these tutorials is a good start, and you'll gain an even deeper understanding if you use the same framework to create a new experiment for your own study. Search the Internet for other example experiments, change different settings, and observe what happens. The more you use it, the more fluent you will become.