Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 11-13-2006, 03:56 PM   #1
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
The GFY FLASH overlay ( ie7 problems)

when you go to close the flash overlay it tells you in ie7 your trying to close the browser window

and p.s. there a way around the "click to activate this control) in ie7 you should use it , notice how the banners dont have that ..
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 03:59 PM   #2
Scott McD
Too lazy to set a custom title
 
Scott McD's Avatar
 
Join Date: Nov 2002
Location: Glasgow, Scotland
Posts: 67,795
Quote:
Originally Posted by SmokeyTheBear View Post
when you go to close the flash overlay it tells you in ie7 your trying to close the browser window
Yeah noticed this 2mins ago...
__________________


I Buy My High Quality Traffic Here, You Should Too!

Scott McD is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:02 PM   #3
Waveu6410
Confirmed User
 
Join Date: Jan 2005
Location: Clearwater, FL
Posts: 4,038
That's the first problem I've heard about with IE7. Since I started using it 2 weeks ago I feel it's the best browser out yet.
Waveu6410 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:23 PM   #4
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
i dont think its an ie7 problem its a flash designers problem
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:32 PM   #5
Fucksakes
Shit... Fuck! What the Hell?
 
Fucksakes's Avatar
 
Industry Role:
Join Date: Dec 2003
Posts: 7,567
how do you get rid of that click to activate this control? i got the same shit on my site now, and its annoying.
Fucksakes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:35 PM   #6
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by Fucksakes View Post
how do you get rid of that click to activate this control? i got the same shit on my site now, and its annoying.
use document.write in a script not on the page..

like if you had <object src=file.wmv><param blah></object>

you would do <script src=blah.js></script> then in blah.js do

document.write('<object src=blah etc etc ></object>');
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:38 PM   #7
Fucksakes
Shit... Fuck! What the Hell?
 
Fucksakes's Avatar
 
Industry Role:
Join Date: Dec 2003
Posts: 7,567
thanks smokey
Fucksakes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:41 PM   #8
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
heres a loader for most movie types so you dont have to make a seperate js file for every movie works in both firefox and ie

save this as movie.js

Code:
function iemov( WIDTH, HEIGHT, URL)
{
document.write('<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="' + WIDTH + '" height="' + HEIGHT + '">');
document.write('<param name="URL" value="' + URL + '">');
document.write('<param name="autoStart" value="true">');
document.write('<PARAM NAME="invokeurls" VALUE="true">');
document.write('<PARAM NAME="stretchToFit" VALUE="true">');
document.write('<PARAM name="uiMode" value="mini">');
document.write('<PARAM name="PlayCount" value="9999">');
document.write('<param name="background-color" value="white">');
document.write('<param name="ShowStatusBar" value="0"></object>');

}
function ffmov( WIDTH, HEIGHT, URL)
{
document.write('<object data="' + URL + '" type="video/x-ms" width="' + WIDTH + '" height="' + HEIGHT + '">');
document.write('<param name="src" value="' + URL + '">');
document.write('<PARAM name="uiMode" value="full">');
document.write('<PARAM name="PlayCount" value="9999">');
document.write('<param name="autoStart" value="true"></object>');

}
change the params how you see fit


then to load movies into it just call it like this
first put <script src=movie.js></script> in your head then to call movies do this

Code:
<script>
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4){
     iemov( "684", "495", "http://file.com/file.wmv")
  }
else {
ffmov( "684", "495", "http://file.com/file.wmv");
} </script>
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:43 PM   #9
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
basically it just detects if your using firefox or ie then picks whatever routine is applicable and embeds the video..

saves you on code too
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 04:44 PM   #10
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
if you want to use flash with it just modify the params inside the movie.js to whatever code your using now and call it the same way
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 05:44 PM   #11
High Plains Drifter
Confirmed User
 
High Plains Drifter's Avatar
 
Join Date: Jun 2005
Location: ♠ ♣ ♥
Posts: 2,341
Quote:
Originally Posted by SmokeyTheBear View Post
basically it just detects if your using firefox or ie then picks whatever routine is applicable and embeds the video..

saves you on code too
You could save some more code by putting the browser check in movie.js
High Plains Drifter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 05:57 PM   #12
Mutt
Too lazy to set a custom title
 
Mutt's Avatar
 
Industry Role:
Join Date: Sep 2002
Posts: 34,431
i've been doing it with seperate javascript files and was hoping i'd figure out how to do multiple Flash movies on one page with just on js file. now if yours' works i have it

thanks Smokey
__________________
I moved my sites to Vacares Hosting. I've saved money, my hair is thicker, lost some weight too! Thanks Sly!
Mutt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-13-2006, 06:02 PM   #13
marketsmart
HOMICIDAL TROLL KILLER
 
Industry Role:
Join Date: Dec 2004
Location: Sunnybrook Institution for the Criminally Insane
Posts: 20,419
strange, im not using ie7 yet tho...
marketsmart is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.