Does anyone know how to insert a dropdown list in MS Publisher?
D DavidF Dec 20, 2007 #2 Use the insert html code fragment tool. Here is some sample script: <form name="dropdown"> <label>Search <u>E</u>ngines</label> <select name="list" accesskey="E"> <option selected>Please select one</option> <option value="http://search.msn.com/">MSN Search</option> <option value="http://www.google.com/">Google</option> <option value="http://www.search.com/">Search.com</option> <option value="http://www.dogpile.com/">Dogpile</option> </select> <button onclick="goToPage(document.dropdown.list.options( document.dropdown.list.selectedIndex).value)">Go</button> </form> Or perhaps check this out: http://www.htmlbasix.com/dropmenu.shtml DavidF
Use the insert html code fragment tool. Here is some sample script: <form name="dropdown"> <label>Search <u>E</u>ngines</label> <select name="list" accesskey="E"> <option selected>Please select one</option> <option value="http://search.msn.com/">MSN Search</option> <option value="http://www.google.com/">Google</option> <option value="http://www.search.com/">Search.com</option> <option value="http://www.dogpile.com/">Dogpile</option> </select> <button onclick="goToPage(document.dropdown.list.options( document.dropdown.list.selectedIndex).value)">Go</button> </form> Or perhaps check this out: http://www.htmlbasix.com/dropmenu.shtml DavidF
B Bindy Dec 21, 2007 #3 Thank you, David. That's helpful. I'm sure you can tell I'm a beginner just trying to complete a simple school project. Thanks for your patience. All the best, Bindy
Thank you, David. That's helpful. I'm sure you can tell I'm a beginner just trying to complete a simple school project. Thanks for your patience. All the best, Bindy
D DavidF Dec 21, 2007 #4 You are welcome, but don't forget that Google is your friend: "javascript drop down list" or "drop down list code", or.... And try searching for key words in this group...lots of FAQs. Try Google Groups...could save you lots of time: http://groups.google.com/group/microsoft.public.publisher.webdesign/topics DavidF
You are welcome, but don't forget that Google is your friend: "javascript drop down list" or "drop down list code", or.... And try searching for key words in this group...lots of FAQs. Try Google Groups...could save you lots of time: http://groups.google.com/group/microsoft.public.publisher.webdesign/topics DavidF