Is it possible to insert a bit of code into a webpage (iframe) that will stop you from being able to scroll up and down using the mouse?
was it something like this you was thinking aboyut? <iframe src="" scrolling="no" height="296" width="396"></iframe>
Similar (i think) If I've got this right then putting scrolling="no" will stop the scrollbars from appearing but scrolling with the middle button of the mouse will still make the page move up and down. I was hoping there was some code that code be used to stop this like there is that stops you from right clicking.
You'll probably need to enter the world of javascript for that tends to get a bit messy...to be honest i would try and refrain from using iframes as well but I'm a bit of a purist when it comes to stuff like that.
Not really got much choice but to go for an iframe I don't think. The page i'm trying to put the stuff on doesn't allow certain codes so the only way to get it to show is by hosting it in a different page and displaying it on the original in an iframe I think.
No idea what i'm doing with flash to be honest. It looks a little too complicated for little old me lol Thanks anyway
RE: Similar (i think) You could try putting a style="overflow:hidden" on the iframe. It would need an explicit height setting though. This would work on a normal html element, but am not sure that iframe would support it. Might be worth a try though.
<font face="Times New Roman" size="3">You may want to try catching the jscript events and return false on the body tag - e.g.,</font></p> <font face="Times New Roman" size="3"><body onselectstart="return false" ondragstart="return false" onscroll="return false"></font></p> <font face="Times New Roman" size="3" /></p>