One Letter Answer


Author
Message
S.Weber
S.Weber
Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)
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!
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: 12K, Visits: 98K
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.

S.Weber
S.Weber
Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)
Group: Forum Members
Posts: 9, Visits: 54
Dave - 9/4/2019
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!


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: 12K, Visits: 98K
S.Weber - 9/4/2019
Dave - 9/4/2019
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>



S.Weber
S.Weber
Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)Respected Member (379 reputation)
Group: Forum Members
Posts: 9, Visits: 54
Dave - 9/4/2019
S.Weber - 9/4/2019
Dave - 9/4/2019
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!
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search