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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need some help please.. 1

Status
Not open for further replies.

coldfused

Technical User
Jan 27, 2001
2,442
US
ok guys have a look at this..

index.html:
<HTML>
<HEAD>

<TITLE>....:::::endangeredgraphics:::..</TITLE>

</HEAD>

<FRAMESET COLS=&quot;144,800&quot;>
<FRAME NAME=&quot;frame&quot; SRC=&quot;frame.html&quot;>
<FRAME NAME=&quot;templet&quot; SRC=&quot;templet.html&quot;>
</FRAMESET>

</HTML>

frame.html:

<HTML>
<HEAD>
<TITLE>frame</TITLE>
</HEAD>
<BODY bgcolor=&quot;#000000&quot; MARGINHEIGHT=&quot;0&quot; MARGINWIDTH=&quot;0&quot; TOPMARGIN=&quot;0&quot; LEFTMARGIN=&quot;0&quot; BOTTOMMARGIN=&quot;0&quot; RIGHTMARGIN=&quot;0&quot; scroll=no>
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--e --><OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
codebase=&quot; WIDTH=100% HEIGHT=100%>
<PARAM NAME=movie VALUE=&quot; <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#3868A0> <EMBED src=&quot; quality=high bgcolor=#3868A0 WIDTH=100% HEIGHT=100% TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;</OBJECT>
</BODY>
</HTML>

templet.html:

<HTML>
<HEAD>
<TITLE>window</TITLE>
</HEAD>
<BODY bgcolor=&quot;#386898&quot; BODY MARGINWIDTH=&quot;0&quot; MARGINHEIGHT=&quot;0&quot; LEFTMARGIN=&quot;0&quot; RIGHTMARGIN=&quot;0&quot; TOPMARGIN=&quot;0&quot; BOTTOMMARGIN=&quot;0&quot;>


<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--/ --><OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
codebase=&quot; WIDTH=100% HEIGHT=100%>
<PARAM NAME=movie VALUE=&quot; <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=exactfit> <PARAM NAME=bgcolor VALUE=#386898> <EMBED src=&quot; quality=high scale=exactfit bgcolor=#386898 WIDTH=100% HEIGHT=100% TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;</OBJECT>
</BODY>
</HTML>


now if you will go to in Netscape you will see my problem..what do i need to do to this script to fix the problem?

working fine in ie..

thanks in advance
e.gif


carlsatterwhite@endangeredgraphics.com
 
Hi,

The difference I see in your code is the following:

frame.html:
Code:
Here you don't have a <PARAM NAME=scale VALUE=exactfit> 
<EMBED src=..... quality=high [b]Here you don't have the scale attribute in the embed-tag[/b]

templet.html:
Code:
<PARAM NAME=scale VALUE=exactfit> 
<EMBED src=..... quality=high [b]scale=exactfit[/b]

Try to put both code also in the frame.html
I'm not sure because I don't have Flash-experience, but this is the first thing I should try if I had to maintain such code.

Hope it helps,
Erik
 
yeh your right about the frame.html..will add exactfit in the embed tag..did not notice that before..now any ideas about the templet.html in netscape it is not filling up the frame like it should..have alook at the site in ie and you'll see what i'm going for..

thanks for the exactfit reference..good eye!
e.gif


carlsatterwhite@endangeredgraphics.com
 
hmmmm,

It looks good to me. I use NN 4.73 and the only difference with IE that I see is a white border (I think only 1 pixel width) around the templet.html-flash-object in NN and that the blue bottom bar with the timestamp is a little bith higher . But that doesn't bother me at all!

You can try to add and experiment with the next attributes:
<frameset framespacing=&quot;0&quot; frameborder=&quot;0&quot; cols=...>
(try also different values in stead of &quot;0&quot;)

<frame src... name=... marginwidth=&quot;1&quot; marginheight=&quot;1&quot; noresize>
(I recomment norize so that the users cannot change the position of the border between the to frames)

(try also different values in stead of &quot;1&quot; for the margins, try &quot;0&quot; but I thought that &quot;1&quot; is the minimum value )

further I see (good eye :)) some differences between the body tags in the 2 fames:
1)Scroll=no is not in templet.html I'm not sure if this is a right body attrubute. Instead you can add the attribute scrolling=&quot;no&quot; in both FRAME-tags.
2) Erase the second word BODY in the templet.html BODY-tag.

By the way. You didn't yet updated the exactfit in the FRAME-code on the serever, is that right?

Hopes this helps you again.

Erik
 
thanks man..and no i havent added the changes yet..but i will i assure you..tonight after school..i'm guessing my biggest problem with netscape was i was using 4.0..just upgraded to 4.7 and like you said everything is almost the same as ie...so this is good ..i will make the changes you suggest and see what happens..4.0 came with my computer and i never upgraded been there for a long time and i never used it untill now..testing site on different browsers was the only reason i ever used it..i guess 4.0 was absolute crap..4.7 seems to be working alot better..

anyway thanks for your help and the suggestions..
e.gif


carlsatterwhite@endangeredgraphics.com
 
well erik i made those changes and unfortunatly none of them worked..there was a reason why i didn't have exactfit in the frame.html it was throwing off the alignment of the swf..i just forgot it had been a while since i put that up..tried the::

You can try to add and experiment with the next attributes:
<frameset framespacing=&quot;0&quot; frameborder=&quot;0&quot; cols=...>
(try also different values in stead of &quot;0&quot;)

<frame src... name=... marginwidth=&quot;1&quot; marginheight=&quot;1&quot; noresize>

but none of that seemed to do much either..what is happening is netscape is throwing that right and bottom gutter in both frames/or cols..i'm stumped..will keep searching though..

e.gif


carlsatterwhite@endangeredgraphics.com
 
Well,

In that case I suggest you make the backgroundcolor in the Frame.html the same as the templet.html :

<BODY bgcolor=&quot;#386898&quot; onstead of #000000

Than the users don't see the black part of the frame in NN.
But what see my sharp eyes :) You use bgcolor=#3868A0 in the EMBED and PARAM tags in the frame.html. Why isn't that the same as in templet.html ????

If you change that, do you have to configure your flash-files in templet.html again ??? You probebly know that better than me.

So have some nice experiments again.

Erik
 
Don't forget the &quot;noresize&quot; attribute in the two FRAME-tags in the index.html

That MUST work !!!

Erik


 
ok erik i changed the backgrounds to match the swf's..that worked for now..was a quick fix..i still wish i knew what caused that problem and how to fix it though..i added the norsize as well to index.html..thanks for your help man..will keep searching for the answer to the gutters..
e.gif


carlsatterwhite@endangeredgraphics.com
 
OK, I can't help you anymore. I don't know where to look.

But if you find the answers please submit it in this thread, so I can read it.

And at the time I start with experimenting with flash I will find you for some help ;-)

Good luck,
Erik
 
indeed..anytime you need it..thanks again..
e.gif


carlsatterwhite@endangeredgraphics.com
 
It's noresize. You forgot the e.
Now it stil isn't working.

And man.. you make a mess of the colors. LOL
You obviously can see a difference of colors in the frame.html in NN.

Why you changed the bgcolor in the <PARAM and <EMBED-tag in the frame.html to #336699 ??

Now you stil have a difference with the bgcolor in the <BODY-tag. I think you must use #386898 here

But for the bgcolor in the <PARAM and <EMBED-tag I don't know. I don't know how that effects on the flash-object.

Erik
 
ok man added the noresize..correctly this time..the colors look fine to me in nn..match up perfectly..
e.gif


carlsatterwhite@endangeredgraphics.com
 
No Carl, there's is a difference in color! Have you been playing around with your brightness level again?
As ErikL pointed out, you should be using the same body background color value as in your swf which is: #336699
Sheeeeeeeeeeeeeeeesh!

;-)
 
lol...now thats funny...thanks alot guys i will fix that right now..
e.gif


carlsatterwhite@endangeredgraphics.com
 
well i changed the body background and now it looks different to me..sheeesh..
e.gif


carlsatterwhite@endangeredgraphics.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top