A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: problems with URL in browser

  1. #1
    Junior Member
    Join Date
    Jan 2010
    Posts
    6

    problems with URL in browser

    Hello everybody,

    I am using the older version of 3D Flash Animator and have this following problem:
    When I add the action OPEN URL for example to one of the buttons in menu, play the animation in the 3D FA program and click on the button, it opens the browser and display the site normally...but when I export the movie, play it in my internet browser and click on the button it does nothing.
    Could you help me please?

    Thank you very much!

    Kvint3

  2. #2
    Senior Member zoranvedek's Avatar
    Join Date
    Aug 2001
    Location
    Wagoner OK
    Posts
    893
    ....are your files uploaded or are you pulling them from your harddrive? Have you checked that the path names are correct? Could be any number of things....

  3. #3
    Junior Member
    Join Date
    Jan 2010
    Posts
    6
    I want to redirect to another webpage and it doesn't work neither. But only in browser...it works normally in project.

  4. #4
    Member
    Join Date
    Jul 2007
    Posts
    91
    PHP Code:
    button.onRelease = function() 
    {
    getURL("http://www.3dfa.com/""_blank");
    }; 

    Check your security option and select:

    - Local content only

  5. #5
    Junior Member
    Join Date
    Jan 2010
    Posts
    6
    Where should I place this PHP code? I am using 3DFA 3.72.
    Thanks

  6. #6
    Member
    Join Date
    Jul 2007
    Posts
    91
    This is a AS2. Use this script in a "Movie script".

    Code:
    button = element ("button");
    
    button.onRelease = function() 
    { 
    getURL("http://www.3dfa.com/", "_blank"); 
    };

  7. #7
    Junior Member
    Join Date
    Jan 2010
    Posts
    6
    I cannot see the "Movie script" button in my 3DFA 3.72.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center