Hide init and exit

Home Forums Support Hide init and exit

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #8917
    Peter Szecsi
    Guest

    Hi,

    I would be greatful is someone could help me with my javascript problem.

    I would like to run a stroop test like test. My main problem is that the init and the exit questions are displayed, because I would like to create more than one block, and i want just the stimuli to be displayed over and over again without any blank interval. I have tried to hide them in the following way:

    Init:

    QRTE.Init({
    // should correspond with Embedded Data field names
    blockData: ‘${e://Field/QRTE_blockData}’,
    idData: ‘${e://Field/QRTE_idData}’,
    columnData: ‘${e://Field/QRTE_columns}’,
    exitQuestions: ‘${e://Field/QRTE_exitQuestions}’,
    exitItemTag: ‘ExitQ’, // DO NOT FORGET TO CHANGE FOR NEW BLOCKS
    blockId: ‘Deafult Question Block’, // DO NOT FORGET TO CHANGE FOR NEW BLOCKS
    onLoadFn: function() {
    // set trial configuration for the screens
    QRTE.setConfig(‘Smiley’, ‘duration’, 2000);
    QRTE.setConfig(‘StroopItem’, ‘duration’, 6000);
    QRTE.setConfig(‘StroopItem’, ‘allowable’, ‘xm’);
    QRTE.setConfig(‘StroopItem’, ‘EndAction’, ‘TERMINATE’);
    // save trial configurations for later analysis
    QRTE.setTrialData(‘StimulusSimely’, ‘${lm://Field/1}’);
    QRTE.setTrialData(‘Piconright’, ‘${lm://Field/2}’);
    QRTE.setTrialData(‘Piconleft’, ‘${lm://Field/3}’);
    this.questionContainer.style.display = ‘none’;
    },
    interTrialDelay: [1000] // set interTrialDelay
    });
    onLoadFn: (function()
    {
    this.questionContainer.style.display = ‘none’;
    });

    Exit:

    QRTE.Exit();
    Qualtrics.SurveyEngine.addOnload(function()
    {
    this.questionContainer.style.display = ‘none’;
    });

    I don’t know much about javascript, so maybe the solution is very easy.

    I am greatful for any help,
    Peter Szecsi

    #8923
    Denise
    Guest

    Hi Peter,

    I’m having the same issue – did you manage to sort it out yet?

    Thanks
    Denise

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Support’ is closed to new topics and replies.