I've tried to do this, but I'm having trouble with Satan'sTongue, er, I mean, JavaScript.
I have created an HTML file that pops up the Rio Remote window just fine, using the following Javascript syntax:
window.open(url,'rioremote','toolbar=NO,location=NO,directories=NO,
status=NO,menubar=NO,scrollbars=NO,resizable=NO,copyhistory=NO,
width=160,height=252');
This works fine, but the original calling window is still open. So I try to close it with:
self.close();
And this works, but IE puts up an annoying messagebox saying "this window is trying to close, do you want to allow it?" or something like that. Ick.
What I really want to do is just have the window resize itself properly without having to launch Yet Another Window to make the borders and size correct. Like this:
self.location=url;
self.toolbar=NO;
self.directories=NO;
self.status=NO;
self.menubar=NO;
self.scrollbars=NO;
self.resizable=NO;
self.copyhistory=NO;
self.width=160;
self.height=252;
Out of the above, only the self.location command works, the rest do nothing.
God, I hate Javascript. Anyone want to tell me how I can do what I'm trying to do?