Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

tables within a framset

Status
Not open for further replies.

houstonfour

Technical User
Jan 22, 2002
4
US
i've got a webpage that lets people watch films that we've made. it works great with 1024x768 resolution, but when viewecd with 800x600 the viewer cannot see much of the video, much less the controls. i've tried placing the video within a table with 100% height and width settings....but it still runs out of the frame. i'm wondering how to fix this problem.

for reference go to

i've tried to open the frame size up as much as possible, but i really can't push it anymore.

PLEASE HELP!!

-houston
houstonfour@hotmail.com
 
yeh i used to display the films in a popup window...but i didn't like it...

i want them to play within the page itself.

-houston
 
I know,
i'm just telling you to open a fullscreen window(like i did) when you enter the site, then you'll have enough space to do what you want within it.

Hope it'll help MORE this time... ;-)
Have Fun...

Sharky99 >:):O>
 
Detect Screen resolution using this script :
<script>
<!--
if (screen.width==800||screen.height==600) //if 800x600
w=&quot;x&quot;
h=&quot;y&quot;
)

else if (screen.width==1024||screen.height==768) //if 1024x768
w=&quot;a&quot;
h=&quot;b&quot;)

else //if all else
window.location.replace(&quot;nogood.html&quot;)

//-->
</script>

change dynamically based on the feed back the w & h attributes of the movie.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top