Results 1 to 3 of 3

Thread: Flash animations on web

  1. #1
    Join Date
    Dec 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Flash animations on web

    Can anyone advise how to make popup Flash windows while people will browse my site??
    Will be very thankfull!!!!!!

  2. #2
    Join Date
    Nov 2005
    Location
    Austin TX,US
    Posts
    71
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Don't know exactly what you meant. Popup window when someone clicks on a link or automatic popup when someone go to your page?

    Whatever it is, I guess what you need is a javascript code that create the proper popup (tons of them on the net), and just embed your flash in that html file loaded in the popup.

  3. #3
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    this goes in your movie, on a button or what have you:

    Code:
    on (release) {
    	getURL("javascript:popup();");
    }
    and this goes in your head section on the published HTML page:

    Code:
    <SCRIPT LANGUAGE="JavaScript">
    	function popup() {
    	window.open('pagetopopup.html','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=100,height=100,left=200,top=200');
    }
    </script>
    Just change your paramaters in the HTML part for what you want to happen in your pop up.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

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
  •