Thread: Wraptext 2?
View Single Post
  #11  
Old 09-29-2005, 02:32 PM
Torankusu_2002 Torankusu_2002 is offline
'been round.
Torankusu_2002's Avatar
Join Date: Nov 2001
Posts: 1,246
Torankusu_2002 is on a distinguished road
Here are screenshots of my problem.

First SS:
Both strings display properly, but they aren't maxed out to where they would have to wrap and display both beginning of the string and end.
The string on top is:
client.questtitle=This is a test to see if all of the stuff is working right. aaaaaaaaaaa bbbbbbbbb

Second SS:
The bottom string is still displaying properly, but when I add more text for the wraptext2 to wrap, it WRAPS the text correctly, but it takes away the text above it.

Portion I am using to display the text:
NPC Code:

//Displaying the First String.
for(this.i = 0; this.i < token1.size(); this.i++){
showtext(216,screenwidth/2-210,screenheight/2-80+(this.i*15),"Arial","B",token1[this.i]);
changeimgvis(216,5);
changeimgzoom(216,.6);
}
//Displaying the Second String.
for(this.j = 0; this.j < token2.size(); this.j++){
showtext(217,screenwidth/2-210,screenheight/2-10+(this.j*15),"Arial","B",token2[this.j]);
changeimgvis(217,5);
changeimgzoom(217,.6);
}



Would it be anything wrong with the way I am wraping the text?
NPC Code:

token1 = wraptext2(760,1," ",client.questtitle);
token2 = wraptext2(760,1," ",client.questtitle2);

Attached Thumbnails
Click image for larger version

Name:	guiss.png
Views:	198
Size:	85.0 KB
ID:	33723   Click image for larger version

Name:	guiss2.png
Views:	182
Size:	83.5 KB
ID:	33724  
__________________
torankusu's

Last edited by Torankusu_2002; 09-29-2005 at 02:53 PM..
Reply With Quote