We have run into this problem several times when moving experiments to
Windows 10. And when we fix the "32-bit Color Bit Depth required"
issues, we almost always then get a message about Display Flipping
required, so be ready for that one too.
Whenever feasible, of course, we go into the .es2 file and update the
appropriate settings for the Display Device. When not feasible, we may
get around the problem using a StartupInfo file, but this works *only*
if the experiment was generated using the Professional format, not the
"Standard" (i.e., what I call "base") format. If your experiment was
generated using the Standard format then I do not think you can do
anything about it, but you could always check with PST Support to make sure.
So here is how to correct this using a StartupInfo file:
- Open the StartupInfo File Editor (e.g., from the Windows Start menu,
or from Cortana, or from the StarupInfo tab of the Experiment Object
Properties dialog of E-Studio).
- Add two rows for the following two Property Name / Value pairs:
- Display.ColorDepth 32
- Display.FlippingEnabled Yes
- Save this as a .startupInfo file. If you give it the same name as
your experiment file (e.g., "MyExpt.startupInfo") and place it in the
experiment folder, the settings will apply to that experiment; if you
give the file the name "Global.startupInfo" and place it in the "My
Documents\My Experiments" folder then it will apply to *all* experiments
for that logon account (and only that account).
Here is how this works -- when E-Run starts, it looks for a .startupInfo
file with the same name as the experiment file, and a Global.startupInfo
file, and creates the attributes given in those. Then code in the
generated experiment program looks for some specific attributes at
startup, and uses those attributes to override any other settings for
that run. You may see this in the generated code of any EP2 experiment
program.
Again, the StartupInfo file works *only* for experiments generated in
the Professional format. For more information, please see the "New
Features Guide" that came with EP2, and articles available at the PST
Support website.
-- David McFarlane