I need to grab the width2 and height2.
// JScript File
// JScript File
iframeW = parseInt(width) + 10;
iframeH = parseInt(height) + 10;
width2 = parseInt(width) + -9 ;
height2 = parseInt(height) + 2;
document.write('<ifr'+'ame width='+iframeW+' height='+iframeH+' scrolling=no frameborder=0 scrolling=no allowtransparency=true src=http://zzzz.zzzz-zzzzzz.com/embed.php?id='+file+'&width='+width2+'&height='+height2+'&key2=1114></ifr'+'ame>');
Originally width=600
and height=400
when it runs in the browser. It comes out as width=591
and height=402
. The problem is it almost changes daily.
http://zzzz.zzzz-zzzz.com/embed.php?id=channel1&width=591&height=402&key2=1114
and so it messes up my regex, since it keeps changing the width and height. Anyway how I can grab this automatically with either regex or python.
Sorry, newb at this...slow learning process :(
Thank you.