logo SmartSurvey / Scripting Docs
Back to Docs
Question Type
6 Image Media *IMAGE *PICT

Displays a still image (JPEG, PNG, etc.) to the respondent as a visual stimulus without capturing a response. The image filename is specified in double quotes after *PICT. Typically placed immediately before a related question to ensure the respondent views the stimulus before answering.

Type ID 6
Directive *IMAGE *PICT
Category Media
Script Definition
script definition (.q)
-- Display an image stimulus before a related question.
-- *IMAGE declares this as an image question; *PICT specifies the image file.
*QUESTION Q1 *IMAGE *PICT "Ad0241.jpg"
Q1. Now we will show you some advertisements which were displayed recently. Please observe carefully.
Use in Expressions
expressions
-- No expressions available for *IMAGE *PICT questions.
-- This type is display-only and stores no response data.
Cannot be referenced in come-logic or check conditions — it has no response value.
*IMAGE declares the question type; *PICT provides the filename of the image to display. Both keywords are required together on the *QUESTION line.
Place the image question immediately before the question that asks about it, so the stimulus is visible to the respondent when they answer.
The image file must be uploaded to the project media library before the script is published. The filename in *PICT must match exactly (case-sensitive).
Related