Size requirements for LMS
January 17, 2008 12:00 AM
Hello-I received the instructions below to resize my title to fit our LMS for publishing. Can anyone assist, it is a bit confusing to me.Thanks!CarrieThe best place to call a resize function is the in the onload event in the start up html page. This will set the resolution to the window once and will stay that resolution throughout the course. Here is a chunk of javascript that will resize both IE and Netscape windows:function resizeTo(w,h) { if (parseInt(navigator.appVersion)>3) { if (navigator.appName=="Netscape") { top.outerWidth=w; top.outerHeight=h;} else { undefined You can put a call to it from the onLoad function in the body tag. For example, calling ‘resizeTo(800,660)’ will size your window to 800x660.This will prevent you from having to put the resize code in every page. If you do want every page to be a different size though, the above code will not work. If there is no resize function called, our LMS will default to a 785x540 resolution.
Discussions have been disabled for this post