Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Looking for a script

  1. #1
    Join Date
    Jul 2005
    Posts
    14
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Looking for a script

    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.

  2. #2
    Join Date
    Jul 2005
    Posts
    14
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    does anyone have any thought as to how to do this. anyreplies is appreciated

  3. #3
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    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?
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  4. #4
    Join Date
    Jan 2007
    Location
    The stage
    Posts
    568
    Thanks
    23
    Thanked 6 Times in 6 Posts

    Default

    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...

  5. #5
    Join Date
    Aug 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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
    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

  6. #6
    Join Date
    Jul 2005
    Posts
    14
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    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.

  7. #7
    Join Date
    Jul 2005
    Posts
    14
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Does anyone have an idea of how i can do this.

  8. #8
    Join Date
    Oct 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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]
    Last edited by djr33; 10-08-2007 at 07:04 AM.

  9. #9
    Join Date
    Jul 2005
    Posts
    14
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    so nobody have any thought on how i can accomplish this.

  10. #10
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    That's just using CSS and a bit of JS.
    Sample code:

    HTML 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.
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •