PDA

View Full Version : Window Size in Dreamweaver


Lars Rønne
02-24-2004, 09:07 AM
Hi there....

How do I resize my pop-up window in Dreamweaver or is there a code???

Lars:confused:

ucm
02-25-2004, 04:10 AM
myWinRefVar = window.open( blah blah )

myWinRefVar.resizeTo(219,178)
myWinRefVar.moveTo(219,178)


also there's resizeBy and moveBy

there's also: scrollTo() and scrollBy()

have fun ;)