View Full Version : Looking for a script
silvito
09-13-2007, 05:59 PM
Hello everyone,
i am looking for a script that does the ads that you sometime see on msn that plays a dynamic ad on top of the browser and then shrinks into an ad on the page. Any thought as to where i can get a hold of such a script.
Thanks.
silvito
09-19-2007, 05:10 PM
does anyone have any thought as to how to do this. anyreplies is appreciated
djr33
09-19-2007, 05:23 PM
Please use a descriptive title for your posts. "looking for a script" does NOT help.
This can be accomplished in several ways. What format are your ads in? Flash? Images? Javascript can be used on images to make them move, or you can use flash to do various movements.
Details?
Rockonmetal
09-19-2007, 05:54 PM
Yeah, details man... do you want it to fade or slide down into the page???
What script can you use...PHP, Javascript, flash??? please be very discriptive.. like djr33 said... Please extend you though it helps us and helps you...
rr_6cruiser
09-20-2007, 04:29 PM
You may want to run a general ad manager in PHP or something, and than have it load specific ads using javascript or most likely flash to create the effect youre talking about.
check out a script directory (http://www.codango.com/, for example) to find a good ad manager to work with first. It'll probably save you some effort from hand coding every ad into your pages down the road.
Here is a link directly to the ad management stuff...I'm assuming you'll be using PHP...hopefully I'm right :p
http://codango.com/php/dir/webapps/admanage/
thats my $0.02 anyway....for what its worth... (two cents i guess, right? lol)
I dont know much about flash or javascript, so my help ends there. Maybe someone who does will be correcting everything I've said? lol
silvito
09-27-2007, 07:58 PM
check this link and you will see an example of the pop up that i would like to create URL: http://wowpopup.com/ (click where it says "CLICK HERE TO SEE AGAIN"). i am looking for something similar to this but more dynamic where the pop up has some animation. i'm preety sure you've seen pop ups like this before.
silvito
10-03-2007, 08:36 PM
Does anyone have an idea of how i can do this.
carlocodamus
10-08-2007, 03:14 AM
hey, im also looking for a code that is the same as dyn-web's sliding layer onclick. im having problems with positioning. id appreciate anything that you can find. much thanks.
[SIGNATURE AGAINST TOS REMOVED BY MODS]
silvito
10-18-2007, 04:46 PM
so nobody have any thought on how i can accomplish this.
tech_support
10-20-2007, 10:49 AM
That's just using CSS and a bit of JS.
Sample code:
<style type="text/css">
#mybox {
position:absolute;
top:100px;
left:100px;
width:300px;
height:300px;
display:none;
background-color:#FFFFFF;
border:solid 1px #000000;
}
</style>
<div id="mybox">Hi.</div>
<script type="text/javascript">
function removeAd() {
document.getElementById('mybox').style.display="none";
}
setTimeout(removeAd,3*1000);
</script>
Replace 3 with whatever number of seconds you want before the pop-up disappears.
Medyman
10-21-2007, 06:20 AM
If you (or anyone else) are looking for one of those flash expanding ads which actually vary in size (not just appear/disappear)...
I posted an example in the flash forum. A search might turn up something useful.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.