Flash help needed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hamlet
    Confirmed User
    • Jun 2002
    • 702

    #1

    Flash help needed

    I am trying to have an intro flash piece set so that once it finishes, it will load a link that is embedded in the html (needs to be embedded in the html so it can be changed quickly and easily). Does any one know the best way to do this?

    Thanks in advance.
  • Hamlet
    Confirmed User
    • Jun 2002
    • 702

    #2
    ...bump

    Comment

    • MarkTiarra
      Confirmed User
      • Aug 2002
      • 3833

      #3
      You can do it by pulling a link out of a simple one line text file. Would that work okay for ya?

      Retired Pornosticator

      Comment

      • bhutocracy
        Not making A Comeback
        • Dec 2001
        • 10218

        #4
        use a javascript function that the flash triggers, same way you'd launch a sized pop-up etc.

        like this (did a quick search cut and paste - needs modifying - but you get the idea) :

        in the html
        PHP Code:
        <script language="JavaScript"> 
        function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
        newWindow=window.open(URLtoOpen, windowName, windowFeatures); } 
        </script> 
        
        in the last frame:

        getURL ("javascript:openNewWindow
        ('yourpage.html','thewin','height=300,width=400,to olbar=no,scrollbars=yes')");
        Last edited by bhutocracy; 01-20-2003, 11:08 PM.

        Comment

        • Turboface
          Back in Black
          • Mar 2002
          • 9976

          #5
          ICQ: 143702021
          Search Engine Optimization Services for Adult Sites

          Comment

          • flashfreak
            Confirmed User
            • Jun 2002
            • 4396

            #6
            Originally posted by bhutocracy
            use a javascript function that the flash triggers, same way you'd launch a sized pop-up etc.

            like this (did a quick search cut and paste - needs modifying - but you get the idea) :

            in the html
            PHP Code:
            <script language="JavaScript"> 
            function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
            newWindow=window.open(URLtoOpen, windowName, windowFeatures); } 
            </script> 
            
            in the last frame:

            getURL ("javascript:openNewWindow
            ('yourpage.html','thewin','height=300,width=400,to olbar=no,scrollbars=yes')");
            this one works, I had something like that in my portfolio presentation.

            however there's one inconvenience: there are people that use popup blockers, in this case it won't work.
            I had 2 clients which had popup blockers, so I'm using now the standard geturl, without jcalling a avascript.
            Last edited by flashfreak; 01-21-2003, 12:27 AM.
            SEO Mogul | ICQ: 163671223

            Comment

            • Hamlet
              Confirmed User
              • Jun 2002
              • 702

              #7
              You can do it by pulling a link out of a simple one line text file. Would that work okay for ya?
              Yes Mark this is exactly what i am trying to do - can you tell me how it is done? (i tried contacting you via icq but it did not go thru for some reason - my icq is 96653071)

              Thanks everyone

              Comment

              Working...