All fields with the same name share THE SAME VALUE. As push-buttons have no value, sharing the name has no impact on your code. (if you did something within javascript, it would affect them all, (at least most of the time)).
Appearances of fields with the same name is Not Shared. Text fields can have different format scripts and present different "views" of the same data, with different fonts, colors, and so forth. In your case, that means you have to set the icon for each button independantly. I strongly recommend you share the image instance across all your buttons, as I don't think iText is clever enough to catch the reuse otherwise. --Mark Storer Senior Software Engineer Cardiff.com #include <disclaimer> typedef std::Disclaimer<Cardiff> DisCard; ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.1t3xt.com/docs/book.php Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
