Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 105K
|
+x+x+x+x+x+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page. Then you need two survey pages, with the text on the first and the image on the second. Run them in the desired order via a <block>'s /trials or a <survey>'s /pages. <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") / imagesize = (75%, 75%) </image> <survey testimony> / pages = [1=witness; 2=White] </survey> So I did this, and it says it could not locate element 'White'. Is there something I am missing? An <image> is not a surveypage. You need a surveypage that displays the image, as explained in my first response. Oh okay, got it, thank you! Great! Allow me to point you to some additional resources: (1) https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf as general background and intro to Inquisit's language and way of doing things. (2) https://www.millisecond.com/support/docs/current/html/tutorials/demographic_survey/surveytutorial.htm if you're specifically interested in the survey features.
|
|
|
thesandyxie
|
|
Group: Forum Members
Posts: 5,
Visits: 12
|
+x+x+x+x+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page. Then you need two survey pages, with the text on the first and the image on the second. Run them in the desired order via a <block>'s /trials or a <survey>'s /pages. <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") / imagesize = (75%, 75%) </image> <survey testimony> / pages = [1=witness; 2=White] </survey> So I did this, and it says it could not locate element 'White'. Is there something I am missing? An <image> is not a surveypage. You need a surveypage that displays the image, as explained in my first response. Oh okay, got it, thank you!
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 105K
|
+x+x+x+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page. Then you need two survey pages, with the text on the first and the image on the second. Run them in the desired order via a <block>'s /trials or a <survey>'s /pages. <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") / imagesize = (75%, 75%) </image> <survey testimony> / pages = [1=witness; 2=White] </survey> So I did this, and it says it could not locate element 'White'. Is there something I am missing? An <image> is not a surveypage. You need a surveypage that displays the image, as explained in my first response.
|
|
|
thesandyxie
|
|
Group: Forum Members
Posts: 5,
Visits: 12
|
+x+x+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page. Then you need two survey pages, with the text on the first and the image on the second. Run them in the desired order via a <block>'s /trials or a <survey>'s /pages. <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") / imagesize = (75%, 75%) </image> <survey testimony> / pages = [1=witness; 2=White] </survey> So I did this, and it says it could not locate element 'White'. Is there something I am missing?
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 105K
|
+x+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page. Then you need two survey pages, with the text on the first and the image on the second. Run them in the desired order via a <block>'s /trials or a <survey>'s /pages.
|
|
|
thesandyxie
|
|
Group: Forum Members
Posts: 5,
Visits: 12
|
+x+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image> Thank you! Is there a way that I can have the picture on the next page? This shows it on one page.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 105K
|
+xHi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help! Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage> <image White> / items = ("Slide2.jpeg") </image> However, when I run, the picture doesn't show up. Thanks! An <image> element is to be displayed on a surveypage per the page's /questions attribute: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / questions = [1=white] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") / imagesize = (50%, 50%) </image>
|
|
|
thesandyxie
|
|
Group: Forum Members
Posts: 5,
Visits: 12
|
Hi everyone! I'm trying to insert a picture into my script but it is not loading and I would appreciate some help!
Here is what I have so far: <surveypage witness> /caption = "This first task will ask you to read a testimony given by an expert witness on the next page and to answer some questions regarding the expert witness and testimony. Please read the testimony carefully and answer the questions to the best of your ability." / fontstyle = ("Arial", 3.5%, false) / showpagenumbers = false / showquestionnumbers = false </surveypage>
<image White> / items = ("Slide2.jpeg") </image>
However, when I run, the picture doesn't show up. Thanks!
|
|
|