Flash Site, Full Screen

Hi,
I wanted to know how can i get a full screen option with my flash websites.
Example on the link below, full screen on top right corner.
http://www.cartoonsmart.com/photo_video_template/index.html
Thanks

full screen .. in browser ???
you need to use javascript ...
rename your index.html file to eg photo.html
create a new index.html file as outlined below .. height and width would be needed to be set to your desired ...
down side to this is that this is a pop up ..
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script>
window.open("photo.html" , "_blank", "status = 0", "menubar = 0", "resizable = 0", "scrollbars = 0", "height = 768", "width = 1024");
</script>
</body>
</html>

Similar Messages

  • Help:How to publish a Flash with full screen HTML

    Please, guys, be kind enough to teach me how to publish a
    Flash with full screen size in HTML. I have tried to search the
    board, but so far no luck.
    Originally, I want my .SWF to keep changing its background.
    The solution I got was placing colored stage-sized rectangles on
    the bottom layer. Then I don't want the viewers to see the HTML
    area where I cannot seem to control smooth color changes.
    So, after I construct a Flash file with backdrop-color
    changing by the method I mentioned above, how do I publish it with
    full screen mode in HTML, as you can see
    here? Help!
    Thanks in advance, guys.

    Here's an AS2 and a AS3 version I got from David Stiller
    2 small details you have to add 1 in publish settings set Dimensions to percent 100 100
    and in the html set <style>body {margin: 0; padding: 0}</style>
    // AS2
    import flash.display.BitmapData;
    Stage.align = "TL";
    Stage.scaleMode = "noScale";
    var tile:BitmapData = BitmapData.loadBitmap("tile");
    function fillBG():Void {
      beginBitmapFill(tile);
      moveTo(0, 0);
      lineTo(Stage.width, 0);
      lineTo(Stage.width, Stage.height);
      lineTo(0, Stage.height);
      lineTo(0, 0);
      endFill();
    fillBG();
    var listener:Object = new Object();
    listener.onResize = fillBG;
    Stage.addListener(listener);
    // AS3
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    var bmp:Tile = new Tile(50, 50);
    var tile:BitmapData = new BitmapData(50, 50);
    tile.draw(bmp);
    function fillBG(evt:Event = null):void {
      graphics.beginBitmapFill(tile);
      graphics.moveTo(0, 0);
      graphics.lineTo(stage.stageWidth, 0);
      graphics.lineTo(stage.stageWidth, stage.stageHeight);
      graphics.lineTo(0, stage.stageHeight);
      graphics.lineTo(0, 0);
      graphics.endFill();
    fillBG();
    stage.addEventListener(Event.RESIZE, fillBG);
    David Stiller
    Co-author, ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/dpsAS3QuickReferenceGuide
    "Luck is the residue of good design."

  • How I can allow always and for all sites full-screen mode?

    How I can allow always and for all sites full-screen mode?
    And I want choose anywhere option "never show notification about full-screen mode" (screenshot attached)
    RUS
    Как я могу всегда разрешить и для всех сайтов полноэкранный режим?
    И я хочу выбрать где-нибудь опцию "никогда не показывать уведомление о полноэкранном режиме" (скриншот приложен)

    There is a preference setting on the <b>about:config</b> page that is meant for developers and testers to make this possible, but it is not meant for normal users.
    *full-screen-api.approval-required = false
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • Loadmovie for flash mobile full screen?

    I tried using flash mobile full screen with flash lite 2.1.
    How do I load a movie?
    I tried to embed a FLV, but when I tried to publish it I got
    an error.
    It said :
    WARNING: This movie uses features that are not supported in
    the Flash Lite 2.1 player
    Scene=Scene 1, layer=Content, frame=1:VP6 Codec requires
    Flash Player 8 or higher
    I tried it by creating the video as an swf, then using
    loadmove to play it but that did not work in
    the windows browser, using flashplayer 9. Would it work on a
    mobile phone, or
    is there something else I have to do.

    Hi Travistee,
    You can load a movie with a embed video using
    movie_mc.loadMovie("file.swf").
    Did you try to encoding the video with Sorenson Spark video
    codec? The error was the video encode feature.
    Try this sequence:
    1. File > import video
    2. Press Next
    3. Select the video
    4. Press Next
    5. Chose embed video in SWF and play in timeline
    6. Press Next
    7. Press Next again
    8. On encoding step click in 'Show Advanced Settings', select
    the video codec Sorenson Spark.
    9. Press next and finish.
    You can find video playback issues on the QTek 8310, 9000,
    9100 and i-Mate MP5 devices.
    Regards,

  • Problem viewing flash videos full screen

    When I go into full screen mode, the video freezes but the audio continues. The only way to fix this is to view it in "normal" mode and to refresh the page. When I right click on the video to access the settings in order to disable the acceleration, "settings" is not clickable. Help??
    Win7 64 bit
    FF 3.6.15
    Adobe Flash 10.2.152.32

    You can try to disable the hardware acceleration in the Flash Player.
    See [[Cannot view full screen Flash videos]]
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • How to keep Flash in Full Screen on Dual Monitors

    Hi,
    I have a simple question. What should I do, to make my application (written in Flex SDK 4.5.1) staying in Full screen when I work in 2nd monitor - like Youtube and Euronews player (http://www.euronews.com/news/streaming-live/) ?
    I don't know, how should I embed my application correct or add something to source code to make it work? My application is working correct in Full screen mode, I can use keyboard etc. but I'm not able to make this working - it's always going back to normal when it loose focus.
    I have read many topics on this forum and internet, so I'm not interested in solutions like: http://flash-full-screen-multiple-monitor.clangen.com/en/ or .dll tricks like http://lifehacker.com/5419028/keep-flash-videos-in-full-screen-on-dual-monitors
    If Youtube and Euronews is working with normal Flash (my current 11.9.900.117) there must be a way?
    If someone can type code examples (like for a total dummy ), it will be great.
    Thank you.

    You'd want to ask in the Flex forum or Flash Professional forum, since you CANNOT edit ANY Flash content with Flash Player.

  • Image blinks/ flashes during full screen

    The clips in my movie seem to flash for a fraction of a second when i play them in full screen.. has anyone else had this problem? if so, what should i do about them?
    thanks!

    LOL! Translation:
    Delete the transition.
    That part you got...:)
    Then step frame-by-frame through your rendered Ken Burns effect towards the end of the first clip you're transitioning from.
    Hit the right arrow key until you have scrolled through the clip before the transition.
    You'll notice a white blank frame at the end of the clip.
    You will finally come to a place in the clip where a small white clip is hiding.
    Do an Apple-T (separate clip at playhead) and snip off the end that includes the white frame.
    Go to Edit / Split Clip at Playhead to separate the white area from the clip. Then highlight that clip and delete it.
    Apply your cross-dissolve, and the problem should go away.
    Re-apply whatever transition you were using and all should be good.
    :)Sue

  • MacPro 7300GT and 20 in lcd flashing after full screen app quits.

    hi all
    Just got this problem today.
    When an app changes from full screen back to the finder my Apple 20 in lcd starts to flash black-blue, power light goes full on too.
    A reset solves the problem until another app quits from full screen.
    For a split second I could see the finder - in a blue hue.
    No force quit or quit could get back to the finder.
    Any help? 10.4.8 8L2127

    Any news on this one?
    I've got the same problem: Sometimes if an application tries to change the resolution (e.g. redline but happens with other games too) it will start to show a blue screen for two seconds then switch off the display for two seconds.. in what appears to be an infinite loop. Mac Pro, 7300 Gt, 10.4.8 8L2127 and a 23" cinema display

  • Any solution for flash 10 full screen crashes?

    I have a Win7 64-bit system with ATI 5770 board, latest ATI drivers.  Since installing Flash 10, any full screen display of Flash content leads to blue screen, while in window content runs fine.  I've turned off Flash hardware acceleration and it makes no difference.
    I've downgraded to Flash 9 and full screen content runs correctly, i.e., w/o blue screening, but, of course, this means that some Flash 10 content isn't available.
    All other full screen content--Real, DVD, Windows Media runs fine.
    Any solutions?

    The current version out works fine with Lion.

  • Flash exe Full Screen Load?

    I am trying to launch my flash output file in exe and have it
    launch full screen. Does anyone know how to do this?

    Shatai -
    Hey, if you want the app to go fullscreen as soon as it's
    opened, put this command into the first frame of the movie. This
    can also be attached to a button, or a function, or wherever it's
    needed.

  • Making a flash object full screen and proportionate to a file's dimensions

    When a flash file is opened in a browser to be viewed in full
    screen, off-screen objects that should not be seen are often
    displayed because the dimensions of the browser window are not
    proportionate to the dimensions of the flash file.
    I would like to create a page with a flash object that
    preserves the proportion of the dimensions of a dynamic flash file.
    Is this a feasible concept, and if so, how can I make it
    happen?
    (scripting language: PHP)

    please sombody Give answer for this

  • Flash .swf full screen?

    i have a .swf file in the index.html, i want to have full
    screen of the swf file from the web page. how to do that? alsoi
    need to use KEYBOARD in the full screen,. (i mean i will type
    something on search / text box)
    Is there any sample code to do?

    You need to use a % for the width and height embed.
    If you want it to fill the screen, change the width and height both to 100% instead of the pixel dimensions.  This way it will fill the screen, and the scaleMode will shrink/stretch it accordingly.

  • Flash player Full-screen !!

    I was playing a flash video from a video host site .. when my browser (google chrome) crashed ..
    then I can't use fullscreen any more ... it just gives me a black screen or white screen !!
    I re-installed flash player many times .. in vain
    any help ??

    John Joslin wrote:
    Nobody reads post #1!    
    I did http://forums.adobe.com/message/3021673#3021673

  • Creating a Flash site in Full Browser Screen

    I am really new to flash design and was wondering if someone
    could help me with a few quick questions...
    1. I am looking to learn a few things about flash, and try
    designing a site for fun. When I start a new flash file, it asks
    you how big you want to make it... (pixels/pixels). I was just
    curious how I specify to make a site full screen. Like the ones
    that I've seen. ...like where an animation can move from one side
    of the screen, all the way to the other. Like this one.
    www.firstbornmultimedia.com
    2. I only have photoshop. I understand a little bit about
    graphics in Bitmap, and Vector. I understand that obviously vector
    is the best (maybe only way?) way to go in Flash. So that you can
    zoom, and slide, and magnify etc. Right? ....my question is, how do
    I make these Vector graphics in Photoshop? Everything I seem to
    make, gets fuzzy when I change it's size, and that won't work.
    Thanks
    I would really love your help. That would be great. I
    sincerely appreciate it.

    Here is some code that you want to put in the head section of
    your html. This will allow your flash site to be "fullscreen" It
    actually allows the site to adjust to the size of the browser. Here
    is an example: www.ri-designs.com This is my personal site. If you
    adjust the browser size the flash scrolls with the browser. This
    works for all browsers.
    <style type="text/css">
    html {
    height:100%;
    body {
    height:100%;
    </style>
    Hope that this helps
    Rich

  • Firefox page stop refreshing(drawing) when the flash plugin exit full screen mode.

    While watching youtube video from youtube.com in full screen mode (this is flash player full screen mode, not browser full screen mode), if you exit the full screen mode, some times the original page when the full screen was started from would stop drawing, not responding to the mouse click in the page area. The page will go back to normal if you click and drag the firefox browser title bar or just resize the browser window.
    I initially found this issue with our company's browser plugin product when testing on Firefox 4. Then I went on trying the same scenario with youtube flash player, it is the same behavior.
    It is not difficult to reproduce, if exiting full screen works fine, move the browser window a little bit and try it again. I can reproduce this once every 5 - 10 times. It is very annoying.
    The same test case works on Safari, Google Chrome without any problem. Please fix this!

    Try to disable the hardware acceleration in the Flash Player.
    See:
    * https://support.mozilla.com/kb/Cannot+view+full+screen+Flash+videos
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

Maybe you are looking for

  • Objects alv grid

    Hi, I need to avoid the displaying the Crystal Report Functionality which is present in the drop down functionality of Excel Icon on ALV grid using object methods . Am using call method grid1->set_table_for_first_display        exporting             

  • When open a new tab, I want the home page to come up, but it's something else. How do I change this? Thanks!

    If I click the + to open a tab, it comes up to a browser window that I don't want. I have changed the "home page" to what I do want, that didn't seem to work, even when I restarted Firefox. How can I change the screen that comes up when I select a ne

  • Need help with dependent lists boxes with ADF.

    Hello, I am doing a project that use tree dependent list boxes. Ex. State----> College----> List of courses of the college chosen above-----> The way this should work is when I select the state automatically I want it to change to the correspondent l

  • Flash  workflow method

    I have a few questions about Adobe Flash and i'm hoping you guys could help me out. One of my assignments is to find a better way to develop and structurize Flash applications (animations/motion graphics/ websites). I'd like to know if there is a way

  • Can Photoshop elements 13 be downloaded on 2 computers?

    can Photoshop elements 13 be downloaded on 2 computers?