Back
Login
Register
Login
Register
Millisecond Forums
Home
»
Millisecond Forums
»
Inquisit 4
»
RE: One Letter Answer
One Letter Answer
Post Reply
Like
21
One Letter Answer
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
RSS Feed
Goto Topics Forum
Author
Message
S.Weber
S.Weber
posted 5 Years Ago
ANSWER
Topic Details
Share Topic
Group: Forum Members
Posts: 9,
Visits: 54
Hello,
is it possible to have several textboxes in a row which allow only one letter each as an answer?
For explanation: I have the beginning of a word and I want the participants to complete the word. And I don´t want to limit just one texbox to say four letters.
Example: HOUSE _ _ _ _
In this case I would like four testboxes in a row with only one letter.
Thank you for your help!
Reply
Like
21
Dave
Dave
posted 5 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
S.Weber - 9/4/2019
Hello,
is it possible to have several textboxes in a row which allow only one letter each as an answer?
For explanation: I have the beginning of a word and I want the participants to complete the word. And I don´t want to limit just one texbox to say four letters.
Example: HOUSE _ _ _ _
In this case I would like four testboxes in a row with only one letter.
Thank you for your help!
Yes, you can do that by positioning four <textbox> elements on a <surveypage> as needed.
Reply
Like
25
S.Weber
S.Weber
posted 5 Years Ago
ANSWER
Post Details
Share Post
Group: Forum Members
Posts: 9,
Visits: 54
+
x
Dave - 9/4/2019
+
x
S.Weber - 9/4/2019
Hello,
is it possible to have several textboxes in a row which allow only one letter each as an answer?
For explanation: I have the beginning of a word and I want the participants to complete the word. And I don´t want to limit just one texbox to say four letters.
Example: HOUSE _ _ _ _
In this case I would like four testboxes in a row with only one letter.
Thank you for your help!
Yes, you can do that by positioning four <textbox> elements on a <surveypage> as needed.
I´m sorry I´m a real beginner here. Unfortunatly I have no idea how to place four textboxes next to each other in a size, that only one letter can be typed in. And in additional I want the word "HOUSE" in front of the row.
Could anybody please provide me with an script example?
Help is really appriciated!
Reply
Like
20
Dave
Dave
posted 5 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
S.Weber - 9/4/2019
+
x
Dave - 9/4/2019
+
x
S.Weber - 9/4/2019
Hello,
is it possible to have several textboxes in a row which allow only one letter each as an answer?
For explanation: I have the beginning of a word and I want the participants to complete the word. And I don´t want to limit just one texbox to say four letters.
Example: HOUSE _ _ _ _
In this case I would like four testboxes in a row with only one letter.
Thank you for your help!
Yes, you can do that by positioning four <textbox> elements on a <surveypage> as needed.
I´m sorry I´m a real beginner here. Unfortunatly I have no idea how to place four textboxes next to each other in a size, that only one letter can be typed in. And in additional I want the word "HOUSE" in front of the row.
Could anybody please provide me with an script example?
Help is really appriciated!
<surveypage examplepage>
/ questions = [1=pre; 2=l1; 3=l2; 4=l3; 5=l4]
/ showquestionnumbers = false
/ showpagenumbers = false
/ responsefontstyle = ("Arial", 4%)
</surveypage>
<caption pre>
/ caption = "HOUSE"
/ position = (10%, 30%)
/ fontstyle = ("Arial", 4%)
</caption>
<textbox l1>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (20%, 30%)
</textbox>
<textbox l2>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (24%, 30%)
</textbox>
<textbox l3>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (28%, 30%)
</textbox>
<textbox l4>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (32%, 30%)
</textbox>
Reply
Like
17
S.Weber
S.Weber
posted 5 Years Ago
ANSWER
Post Details
Share Post
Group: Forum Members
Posts: 9,
Visits: 54
+
x
Dave - 9/4/2019
+
x
S.Weber - 9/4/2019
+
x
Dave - 9/4/2019
+
x
S.Weber - 9/4/2019
Hello,
is it possible to have several textboxes in a row which allow only one letter each as an answer?
For explanation: I have the beginning of a word and I want the participants to complete the word. And I don´t want to limit just one texbox to say four letters.
Example: HOUSE _ _ _ _
In this case I would like four testboxes in a row with only one letter.
Thank you for your help!
Yes, you can do that by positioning four <textbox> elements on a <surveypage> as needed.
I´m sorry I´m a real beginner here. Unfortunatly I have no idea how to place four textboxes next to each other in a size, that only one letter can be typed in. And in additional I want the word "HOUSE" in front of the row.
Could anybody please provide me with an script example?
Help is really appriciated!
<surveypage examplepage>
/ questions = [1=pre; 2=l1; 3=l2; 4=l3; 5=l4]
/ showquestionnumbers = false
/ showpagenumbers = false
/ responsefontstyle = ("Arial", 4%)
</surveypage>
<caption pre>
/ caption = "HOUSE"
/ position = (10%, 30%)
/ fontstyle = ("Arial", 4%)
</caption>
<textbox l1>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (20%, 30%)
</textbox>
<textbox l2>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (24%, 30%)
</textbox>
<textbox l3>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (28%, 30%)
</textbox>
<textbox l4>
/ minchars = 1
/ maxchars = 1
/ multiline = false
/ textboxsize = (3%, 5%)
/ position = (32%, 30%)
</textbox>
PERFECT! Thank you so so much!
Reply
Like
14
GO
Merge Selected
Merge into selected topic...
Merge into merge target...
Merge into a specific topic ID...
Open Merge
Post Reply
Like
21
Post Quoted Reply
Reading This Topic
Login
Login
Remember Me
Reset Password
Resend Validation Email
Login
Facebook
Explore
Messages
Mentions
Search