A Flash Developer Resource Site

Results 1 to 13 of 13

Thread: Please help me

  1. #1
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19

    Please help me

    i have some problems with opening in fullscreen from flash...
    i want to atribute the action at a frame.. because if i put it on a buton, it is working, but i want to open a fullscreen stand-alone player at the end of a movie... what action do i put on the frame...
    on the opened movie i know i have to put fscommand, fullscreen true...
    but if i put get url, it is opening in browser, and do not respect the fscommand...
    for you to understand what i'm talknig about, see www.dogville.go.ro
    another problem that i have... the loading movie... i make it, but where do i put it? in anotherr scene and atribute that conditioning and give the adress of if... in the other scene?
    thanks
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  2. #2
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    Do you know javascript? Coz thats what you'll need to open in fullscreen.

    XFM

  3. #3
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    Originally posted by Xurion_Flash_Man
    Do you know javascript? Coz thats what you'll need to open in fullscreen.

    XFM
    i don't want to use javascript... because some browsers block the pop-up acces, and till now i have used a scrip..
    please see www.dogville.go.ro and tell me what to do
    al i want is to open in fullscreen from flash, action atribued at a frame...
    and the loading movie, what about it?
    thanks
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  4. #4
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    Its not the flash player that goes fullscreen, its the browser and thats why you need javascript.

    XFM

  5. #5
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    Originally posted by Xurion_Flash_Man
    Its not the flash player that goes fullscreen, its the browser and thats why you need javascript.

    XFM
    could you please gimme an javascirpt that will open in fullscreen in every resolution without modifing the flash docvument proportion and not blocking the pop-up?
    please
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  6. #6
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    I'm not 100% on a piece of script that can over ride the popup blockers...

    XFM

  7. #7
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    Originally posted by Xurion_Flash_Man
    I'm not 100% on a piece of script that can over ride the popup blockers...

    XFM
    at least you can guarantee the proportion in diffenrent resolutions?
    and the quit options atribute at a flash button, it will have effect to close the window?
    please let me know
    but what about what i have heard.. and i have made it, but as an action of a button... to open a fullscreen window, but in stand-alone player... and that's the option that i'd like to use...
    please reply
    thanks
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  8. #8
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    Hi,

    This is how I construct a pop up window function:

    In the html of your page where your swf is located, write in the following javascript function within the head tags:

    Code:
    function openpopup(){
      window.open('www.yourdomain.com/yourpage.htm', 'newwin', 'fullscreen=true');
    }
    And on say a flash button, you can place this code:

    Code:
    on(release){
      getURL("javascript:openpopup()");
    }
    You can't make the actual flash player go fullscreen when your movie is being viewed online.

    XFM

  9. #9
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    thank you very much...
    but what action do i put on a button now, if i want to close the fullscreen window... i guess fscommand quit doesn't work, because that will close just a swf, not a html page...
    i guess my version, about stand-alone player only, it was about configuring your MIME server, and i don't know what kind of script you gotta put on your ftp.. it wasm somethin about a flash dispatcher?
    anyhow, thanks... can't wait using it.. i wil let u know...
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  10. #10
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    Simply add to a button:

    Code:
    on(release){
      getURL("javascript:window.close()");
    }
    XFM

  11. #11
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    i think you didn't get me well...
    the script you give me it opened just a window.. withouit the toolbar, and the maximize option was disabled..
    what i want is a window fullscreen.. you can try my website www.dogville.go.ro
    1024X768 to see what i'm talking about...
    but that script that i have used was not good, so i hope you will help me...
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

  12. #12
    Flashkit Jedi

    Join Date
    Jul 2001
    Location
    Coruscant System
    Posts
    3,426
    Sorry, my bad, here is the correct version of that code:

    Code:
    function openpopup(){
      window.open('www.yourdomain.com/yourpage.htm', 'newwin', 'fullscreen=yes');
    }
    XFM

  13. #13
    Junior Member
    Join Date
    Feb 2004
    Location
    bucharest
    Posts
    19
    i will try
    tanx
    Why does a dog wag its tail?
    Because a dog is smarter than its tail
    If the tail were smarter, the tail would wag the dog

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