How exactly does one resize a Boxy.load()? I can resize using: var tmp = new Boxy(); tmp.resize(40,40);
But if I then try to use tmp.load('somefile.php'); it states that tmp.load is not a function. I've also tried:
var tmp = Boxy.load('somefile.php'); tmp.resize(100,100); // Says that tmp.resize is not a function.
How can I resize a boxy window after it has been created using Boxy.load(). Thanks in advance.