ELine
unread,Jun 13, 2012, 2:46:30 AM6/13/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to E-Prime
Hi Doug
You can change the background color of the info screen by going into
Edit -> Experiment -> Devices -> choose Display and press Edit ->
Default Background Color.
That will only change the color of the very first screen that is
displayed just before the experiment is run.
Changing the background color of the rest of your experiment can be
done in the individual slides/displays. If you want a special color
which, you can use InLine to set a specific RGB color:
for text displays:
TextDisplay.BackColor = CColor("240,240,240")
for slides:
Dim theState As SlideState
Set theState = mySlide.States("Default")
theState.BackColor = CColor("240,240,240")
I hope you can use it.
Eline