Hi everyone,

I'm fairly new to itext and I've just created an Acroform with submit
buttons.  I've noticed that when I mouseover the buttons I get the
following:

"send the data to http://...my url"  

is there any way of changing the text of this?

Thanks in anticipation of your help

My current code snippet is:

                        button = new PushbuttonField(writer,
                                        new Rectangle(200, 0, 300, 60), "Exit");
                        button.setText("Exit");
                        
button.setOptions(PushbuttonField.VISIBLE_BUT_DOES_NOT_PRINT);
                        button.setBackgroundColor(Color.GRAY);
                        button.
                                
setBorderStyle(PdfBorderDictionary.STYLE_BEVELED);
                        submit = button.getField();
                        submit.setAction(PdfAction.createSubmitForm(
                                        topLevelPath+"//default",
                                        null, PdfAction.SUBMIT_HTML_FORMAT | 
PdfAction.SUBMIT_COORDINATES));
                        submit.setTitle("my title");



I've tried using setTitle but this doesn't do it.





Ernest.
-- 
View this message in context: 
http://www.nabble.com/acroform-button-alt-tag---title-text-tp20464887p20464887.html
Sent from the iText - General mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php

Reply via email to