Hi..i made an robot [email protected]
On root blip it asks for username and password for which i have bold
the text. Firstly it was working good but all of a sudden all the text
even in the text field becomes bold by itself.
Similar thing is happening when user login into the account and all
the tweets are shown in bold.
My code for the root blip is
blip2.getDocument().append("\n");
StyledText stuname=new StyledText();
stuname.addStyle(StyleType.BOLD);
stuname.appendText("Enter Username \n");
textview.appendStyledText(stuname);
StyledText stpass=new StyledText();
stpass.addStyle(StyleType.BOLD);
stpass.appendText("Enter Password \n");
FormElement fe=new FormElement(ElementType.INPUT);
fe.setDefaultValue("");fe.setName("aaa");
FormElement fe2=new FormElement(ElementType.INPUT);
fe2.setDefaultValue("");fe2.setName("vvv");
FormView f=textview.getFormView();
textview.appendStyledText(stpass);
f.append(fe2);
And after user is logged in
textview.appendStyledText(stuser1);
textview.append("::");
textview.append(tcontent);
When content is added it is bold by itself....why this is
happening...firstly it was working correctly :(
--
You received this message because you are subscribed to the Google Groups
"Google Wave API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-wave-api?hl=.