Aborting batch element based on computer.platform


Author
Message
laurataglioni
laurataglioni
New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)New Member (4 reputation)
Group: Forum Members
Posts: 1, Visits: 3
I am trying to run an experiment that should only be done on computer devices, so I’m trying to include something in my script to prevent participants with mobile or tablet devices from entering the study. Since I am running a series of scripts, I currently have a batch element that lists the various files used in the experiment. I tried to add “/ onscriptbegin = [if (computer.platform == "ios" || computer.platform == "and") script.abort(); ]”, but I am somehow still able to access the experiment from iOS and Android devices.
What can I add so that Inquisit will filter through participants’ computer devices like so:
- If computer.decive is “mac” or “win”, access study
- If compiter.device is “and” or “ios”, exit study.

This is the entire batch element I am running:
<batch all>
/ groups = (1 of 1)
/ groupassignment = random
/ file = "consent_task_questionnaires.iqx"
/ file = "modified_trust_instructions.iqx"
/ file = "treasure_hunt_game.iqx"
/ file = "feedback.iqx"
/ onscriptbegin = [if (computer.platform == "ios") script.abort(); if (computer.platform == "and") script.abort(); ]
/ onscriptend = [
  if (batch.all.currentscript == "modified_trust_instructions.iqx") {
   parameters.playerAvatar = values.avatar;
  } else if (batch.all.currentscript == "treasure_hunt_game.iqx") {
        parameters.avatarNeutral = values.avatarNeutral;
   parameters.avatarLow = values.avatarLow;
   parameters.avatarHigh = values.avatarHigh;
    }
]
</batch>

Thank you!

Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 106K
laurataglioni - 4/1/2025
I am trying to run an experiment that should only be done on computer devices, so I’m trying to include something in my script to prevent participants with mobile or tablet devices from entering the study. Since I am running a series of scripts, I currently have a batch element that lists the various files used in the experiment. I tried to add “/ onscriptbegin = [if (computer.platform == "ios" || computer.platform == "and") script.abort(); ]”, but I am somehow still able to access the experiment from iOS and Android devices.
What can I add so that Inquisit will filter through participants’ computer devices like so:
- If computer.decive is “mac” or “win”, access study
- If compiter.device is “and” or “ios”, exit study.

This is the entire batch element I am running:
<batch all>
/ groups = (1 of 1)
/ groupassignment = random
/ file = "consent_task_questionnaires.iqx"
/ file = "modified_trust_instructions.iqx"
/ file = "treasure_hunt_game.iqx"
/ file = "feedback.iqx"
/ onscriptbegin = [if (computer.platform == "ios") script.abort(); if (computer.platform == "and") script.abort(); ]
/ onscriptend = [
  if (batch.all.currentscript == "modified_trust_instructions.iqx") {
   parameters.playerAvatar = values.avatar;
  } else if (batch.all.currentscript == "treasure_hunt_game.iqx") {
        parameters.avatarNeutral = values.avatarNeutral;
   parameters.avatarLow = values.avatarLow;
   parameters.avatarHigh = values.avatarHigh;
    }
]
</batch>

Thank you!

Create a script that checks the relevant properties and calls the script.abort() function if applicable. Run that script as the first in your batch.

<block platformCheck>
/ onblockBegin = [
    if (computer.platform == "ios" || computer.platform == "and") {
        return script.abort(true);
    }
]
</block>


with

<batch all>
/ groups = (1 of 1)
/ groupassignment = random
/ file = "platformcheck.iqx"
/ file = "consent_task_questionnaires.iqx"
/ file = "modified_trust_instructions.iqx"
/ file = "treasure_hunt_game.iqx"
/ file = "feedback.iqx"
/ onscriptend = [
    if (batch.all.currentscript == "modified_trust_instructions.iqx") {
        parameters.playerAvatar = values.avatar;
    } else if (batch.all.currentscript == "treasure_hunt_game.iqx") {
        parameters.avatarNeutral = values.avatarNeutral;
        parameters.avatarLow = values.avatarLow;
        parameters.avatarHigh = values.avatarHigh;
    }
]
</batch>

Attachments
platformcheck.iqx (2 views, 152 bytes)
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search