I`m trying to download some images, but the page that contains the image has a radio button to select what size you want (400px or 600px), it defaults to 400px. I have OE set to only download a minimum width pictures... but I need it to load the 600px pictures.. which you select with a radio button! ;(
Is there a way to have it submit the form on every page so it loads the 600px? Kinda like what you would do to enter your username and password in the address field (POST=UsrN=foo&Pwd=bar)
This is the code the page uses below. I know that
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
theform = document.form;
}
else {
theform = document.forms["form"];
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}
// -->
<input id="ss_rdoPrvw400" type="radio" name="ss:grpPrvwSz" value="rdoPrvw400" checked="checked" onclick="__doPostBack(`ss$rdoPrvw400`,``)" language="javascript" /><label for="ss_rdoPrvw400">400 px</label>
<input id="ss_rdoPrvw600" type="radio" name="ss:grpPrvwSz" value="rdoPrvw600" onclick="__doPostBack(`ss$rdoPrvw600`,``)" language="javascript" /><label for="ss_rdoPrvw600">600 px</label>
I found a cookie in firefox as follows:
.wireimage.com TRUE / FALSE 1206236784 ImgRsltnVw 600
I put this into OE:
Cookie=ImgRsltnVw=600
But OE still only sees the 400px pictures, why doesn`t the cookie work in OE? :(