How to align an all Flash site to top of page

Yep I'm a newbie and I'm assuming this is pretty easy. How do
I eliminate the top border to the following site?
http://totalscript.com/newsite/ts.html
I’m using an HTML with an embedded SWF.
Thank you,
Alex

That top border is in your swf. If you right click in there
you get the flash right click menu.
Since it looks like you are publishing for player 7, I can
assume it is AS2. Try going into your code and adding:
Stage.align = "TC";
This will auto-align the content to the top center of the
player region.

Similar Messages

  • Convert all-Flash site into html?

    I have an all-flash site (www.CBRTA.org). For the benefit of
    certain clients who won't install the Flash plugin, I have to
    create a mirror html site. Does anyone know how I go about
    converting an all-Flash site into html? And quickly? I have access
    to Dreamweaver 8 and Flash 8.

    Sorry... unless you've separated the content out already,
    like into a
    database, you're going to need to cut/paste etc... there's no
    easy way if
    the site is all inside of Flash.
    Dave -
    Head Developer
    www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • How to capture the current info in the top-of-page event in Reuse block dis

    How to capture the current info in the top-of-page event in Reuse block dis

    Hi Geetha,
         If you don't have any information to pass the Heading Block, then why you are using this event ?
         please comment/ remove that TOP_OF_PAGE code. and use subtotal code in field catalog block.
          you can use below code for subtotal. 
          FORM field_catalog .
                    gs_fcat-do_sum = &2.
              fcat : 'WRBTR' '15' 'X' ' ' ' ' 'WRBTR' 'Amount',
           ENDFORM.
           Regards,
           Kunjan

  • How do I import document from my desk top into pages on my ipad?

    How do I import document from my desk top into pages on my ipad?

    Files Sharing
    http://support.apple.com/kb/ht4094

  • How can I resize my Flash site to fit any screen resolution?

    I built a 100% flash site with tiled framing but I have a
    problem. My flash was built 766 x 750 pixiels. When viewed at
    resolutions greater than 1024x768 the webpage looks great but
    anything less than that it looks like @#$@. I know most people
    probably view at 1024 x 768. Is there anyway to auto resize based
    up on screen resolution or something to detect the screen size and
    adjust the webpage accordingly.
    www.platlimosvc.com
    Below is my html (index.html) for my flash movie:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>Untitled</title>
    <meta http-equiv="content-type" content="text/html;
    charset=UTF-8">
    <link href="style.css" rel="stylesheet"
    type="text/css">
    </head>
    <body>
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:100%">
    <tr>
    <td valign="top" style="width:100%" height="750">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:100% " align="center">
    <tr>
    <td valign="top" width="234" style="height:750px ">
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swfl
    ash.cab#version=6,0,29,0" width="766" height="750">
    <param name="movie" value="flash/xxxx_main.swf">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <!--[if !IE]> <-->
    <object data="flash/xxxx_main.swf"
    width="766" height="750"
    type="application/x-shockwave-flash">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="pluginurl" value="
    http://www.macromedia.com/go/getflashplayer">
    FAIL (the browser should render some flash content, not
    this).
    </object>
    <!--> <![endif]-->
    </object>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" style="width:100%; height:1px;
    background-color:#6C6C6C">
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:1px">
    <tr>
    <td valign="top" style="width:50%;
    height:1px"></td>
    <td valign="top" style="width:766; height:1px">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:1px ">
    <tr>
    <td valign="top" width="766" style="height:1px
    "></td>
    </tr>
    </table>
    </td>
    <td valign="top" style="width:50%;
    height:1px"></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" style="width:100%; height:100%">
    <table cellpadding="0" cellspacing="0" border="0"
    style="width:100%; height:100%">
    <tr>
    <td valign="top" style="width:50%;
    background:url(images/bottom-3.gif) top right;
    height:100%"></td>
    <td valign="top" style="width:766;
    background-image:url(images/bottom-5.gif); height:100%">
    <table cellpadding="0" cellspacing="0" border="0"
    width="766" style="height:100% ">
    <tr>
    <td valign="top" width="766" style="height:100%
    "></td>
    </tr>
    </table>
    </td>
    <td valign="top" style="width:50%;
    background:url(images/bottom-4.gif) top left;
    height:100%"></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </body>
    </html>

    tlcarl,
    > I know most people probably view at 1024 x 768.
    You think so? Even if they have their resolution that high
    (which is
    fairly standard, nowadays), do you think most people maximize
    their browsers
    to fill that whole area?
    > Is there anyway to auto resize based up on screen
    > resolution or something to detect the screen size and
    > adjust the webpage accordingly.
    There is, indeed. :) Check out the Stage.onResize event in
    the
    ActionScript 2.0 Language Reference. That event is dispatched
    when the
    browser (or whatever container) is resized -- in cases where
    the SWF is
    embedded with percentages. If that's your aim, you'll need to
    code against
    that event, which can be done like this ...
    http://www.quip.net/blog/2006/flash/how-to-position-movie-clips-browser-resizing
    It can take a bit of thought, depending on the complexity of
    your goal,
    but the result is usually worth it. The site in your URL is
    already built,
    so this wouldn't do much of anything without opening the
    hood, so to speak,
    and completely rebuilding the engine. A Flash movie has to be
    designed and
    programmed to respond to the Stage.onResize event.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • How do I get the Flash site to work on the server

    Hi,
    I'm a beginner working with Studio 8. I have the Flash site
    working as desired from my desktop, but I have issues once loaded
    to the server. Hopefully someone here can point me in the right
    direction.
    Firstly, I would like the site to work within a non-sizeable
    browser window. I am not sure how to do this.
    Secondly, when I try to visit the uploaded site, it appears
    not to load properly. I see an isolated movie clip loaded on the
    screen, but my pre-loader never displays, and there is no animation
    at all.
    I am not sure where to start looking, but if you do, please
    share - grateful, I will be.
    -Brian

    ok - here is an update.
    For reasons unknow to me, the Flash site works on my pc now
    that I re-published the html. Unfortunately, everyone else that I
    ask to visit have to refresh their browser before they see it
    animate and work.
    *sigh*

  • How to insert videos in flash site

    hi
    you might have seen on many sites the affect in which small
    video clips of real people are imported into flash movies. e.g on a
    site some people are working in office and that video is loaded
    into the flash site but the people matches with the design of the
    site without their actual background etc.
    how this kind of video import is done? where i can upload my
    own video into flash site's some scene.
    thank you

    Hi
    thanks for your reply. I am not sure really how should I
    classify the videos I am taking about but let me try to explain...
    You might have seen NIKE websites about football and
    merchandise etc. On those website you will find a footballer
    playing with foot ball or if you have seen a site of an energy
    drink where there are few dancers, you need to answer few questions
    to get to the dance movie of a dancer.
    What I want to do is that I want to design a 3D environment
    for my flash website where I want to show some people working in
    office in a section of the site. For that I will make a video with
    my digital camera and will use it in the site. Similarly I want to
    show my own videos merged with the website design. So it sounds
    like I am acting within the wesite design environment.
    I hope I am clear enough now..

  • My HP1610 all in one prints top of page, unable to read faint printing on majority of page.New cartr

    I have installed a new black cartridge in my 1610 All in One, Previous cartridge was low on ink when it stopped printing the majority of the page. Print test on new cartridge is fine. Top of page and all of line border is fine. From 1 1/2 inch from top printing is too faint to read. Line border prints completely. Bottom of page prints faintly but enough to read. What now?

    Welcome to the HP Community , I read through your post about the printing issues you have been having, and I hope to help you! Seeing how the printer will make copies and test print tells us that the printer itself is fine and there is no hardware issues. However, seeing how printing from two different computers will not work, flags a software problem on the computers. Please try out the steps below and get back to me with the results and we will go from there. If you did not install the Full Driver, run the HP Printer Install Wizard for Windows to search and install the complete driver and software. This will need to run on both computers individually. Manually restart the print spoolers on the computers:1. Click Start
    2. Type "Services" in the search field.
    3. Open SERVICES
    4. At the bottom, click "Extended View"
    5. Search for Print Spooler
    6. Right-click it and choose Properties
    7. Select as Automatic in the drop down box, close the Window
    8. Right click on Print Spooler and choose "Stop", wait until it stops and then right click again and "Start".
    9. Close out of Services and try printing from Notepad.10. Try printing from a web browser now, if there is a problem with the print, try a different web browser.  Show thanks for my reply to help you today by hitting the "thumbs up" icon below!I hope to hear from you, good luck! 

  • How to count number of raw & put result top of page?

    I try to count number of table raw it work fine  but when I wont to put result top of page it dose not work
    only count one table raw
    REPORT  ZTEST.
    DATA: it_sflight TYPE TABLE OF Sflight WITH HEADER LINE  .
    DATA counter TYPE i VALUE 0.
    start-of-SELECTION.
    SELECT-OPTIONS: carID for it_sflight-carrid.
    SELECT-OPTIONS: connID for it_sflight-connid.
    SELECT * FROM Sflight INTO CORRESPONDING FIELDS OF TABLE it_sflight 
    WHERE carrid IN carID and connID IN connid.
    loop at it_sflight .
      counter = counter + 1 .
      write: /5 it_sflight-carrid,sy-vline,
               30 it_sflight-connid,sy-vline,
                  45 it_sflight-fldate,sy-vline,
                    60 it_sflight-currency,sy-vline.
    ULINE.
    endloop.
    end-of-SELECTION.
    TOP-OF-PAGE .
    *START-OF-SELECTION.
    WRITE:  'Total Rows : ', counter.
    ULINE.
    WRITE: /5 'Carrid',sy-vline,
            30 'Connid',sy-vline,
            45 'Fldate',sy-vline,
              60 'Currency',sy-vline.
    ULINE.
    how can I solve this problem ?

    Hi
    Instead of using counter in a loop use describe statement.
    Describe it_sflight.
    the no of rows will get populated in the system variable sy-tfill.
    DATA: it_sflight TYPE TABLE OF Sflight WITH HEADER LINE  .
    DATA counter TYPE i VALUE 0.
    start-of-SELECTION.
    SELECT-OPTIONS: carID for it_sflight-carrid.
    SELECT-OPTIONS: connID for it_sflight-connid.
    SELECT * FROM Sflight INTO CORRESPONDING FIELDS OF TABLE it_sflight
    WHERE carrid IN carID and connID IN connid.
    DESCRIBE TABLE it_sflight.
    loop at it_sflight .
      counter = counter + 1 .
      write: /5 it_sflight-carrid,sy-vline,
               30 it_sflight-connid,sy-vline,
                  45 it_sflight-fldate,sy-vline,
                    60 it_sflight-currency,sy-vline.
    ULINE.
    endloop.
    end-of-SELECTION.
    TOP-OF-PAGE .
    *START-OF-SELECTION.
    WRITE:  'Total Rows : ', sy-tfill.
    ULINE.
    WRITE: /5 'Carrid',sy-vline,
            30 'Connid',sy-vline,
            45 'Fldate',sy-vline,
              60 'Currency',sy-vline.
    ULINE.
    Thanks
    Rahul jain
    Edited by: Rahuljn on Feb 2, 2011 10:58 AM

  • How to put a push button in the top of page of ALV

    Hi at all,
    I need to put a push button in TOP OF PAGE .
    My code is below and i'd like to put a push button to do something.
    FORM top_of_page USING r_ddoc TYPE REF TO cl_dd_document.
      DATA: text TYPE sdydo_text_element.
      DATA: text_table TYPE sdydo_text_table.
      CALL METHOD r_ddoc->initialize_document.
    Title
      text = text-301.
      CALL METHOD r_ddoc->add_text
        EXPORTING
          text          = text
          sap_style     = 'HEADING'.
      CLEAR text.
    endform.
    Thanks at all.
    ENDFORM.

    Hi Domenico,
    For pushbuttons on Dynamic Documents please refer to this link:
    http://help.sap.com/saphelp_nw70/helpdata/EN/b6/ab3a7503ac11d4a73f0000e83dd863/frameset.htm
    Regards
    Marcin

  • How do you stop the flash player when you change pages on a web site

    Hi all;
    I'm building a website in flash using my limited understanding of action script.  Everything was progressing very well until I found that if I go to one of my example pages of my web site and play the flash video (with audio) and click back to my "home" button, the audio will continue to play.  If I go back to the example page, the video is off and when I start the video, it plays again with the other audio.  I hear the audio twice! I know there is an action script to handle this but, I can't figure it out.
    My question is, How do I stop the audio when I click away from the example page back to the home page or any other page?
    Thanks in advance for your help.
    I'm usinf Flash CS4 and a Mac OS operating system.

    The problem is most likely in your Action Script. Therefore this question should be posted in the Action Script forum. This forum only deals with the Flash Player, which, in this case is running the script as it is written, and therefore, working properly.

  • How can I get all new sites to open in a new tab rather tnan replacing the site in the existing tab?

    When I click on most, if not all, of my bookmarks, the new site opens in the tab from which I was open. I would like the new site to open in a new tab (unless I type in the name where the address was. How do I get this done.
    Jerry Kersten

    Middle-click ''(press down mouse scroll wheel)'' <br />
    or <br />
    {Ctrl + Click} <br />
    or <br />
    Right-click and use '''''Open in a New Tab'''''

  • How do I get the flash site to load an XML without security

    I made a music mp3 player but now the XML wont load and the
    music player says undefined. I changed security settings in Adobe
    Flash Player. But I dont want to have everybody who views it have
    to change settings. Is there some type of ActionScript code that
    will allow the XML to load without security problems. I have the
    XML on the same server folder as the .SWF file. The site url is :
    www.eternityfocus.com/test_flash.html

    you should use a crossdomain.xml policy file.

  • HELP!! How do I centre a flash site

    I have created a demo site in flah pro 8 but I am
    unable to center the window in a browser??
    tried using text edit and amending the code but the text
    editor loads the html window and says "get flash"
    Help please?
    I can supply the index.html if required!

    this might help
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_12701
    tip: I searched google with
    flash html parameters
    to find this page
    John Pattenden
    Screentime Media - Flash Tools since 1997
    http://www.screentime.com

  • Flash Sitting on top of .html

    Hello - I have seen on the front page of Yahoo - on their
    advertising section on the right of the page flash movies that when
    you mouse over them they spread over to take up a large section
    sitting over .html of the page. How is this done? I did a search
    for "flash on top of html" - but nothing came up, so I hope I am
    not asking a redundent question - if I am I apologize.
    Thanks - Eric

    eLoCas wrote:
    > Hello - I have seen on the front page of Yahoo - on
    their advertising section
    > on the right of the page flash movies that when you
    mouse over them they spread
    > over to take up a large section sitting over .html of
    the page. How is this
    > done? I did a search for "flash on top of html" - but
    nothing came up, so I
    > hope I am not asking a redundent question - if I am I
    apologize.
    The effect you describe it done with Layers which are quite
    easy if you familiar with Dreamweaver.
    Let me elaborate.
    You can not get beyond flash to animate beyond the canvas
    boundaries (the movie size defined in your
    object embed tags). These are movies that are actually with
    transparent background, using WMODE parameter
    to achieve that, it makes them appear like they fly all over
    the HTML document while they actually just
    large movies with no background. Another way to do it, is to
    use Wmode and animate the layer itself
    rather then making a huge movie canvas to cover the space
    WMODE however is known to cause problems, from crashing
    browsers to disabling actions ,screwing up buttons
    etc... So be aware of it, if suddenly some of the features
    stop working, you know what's the reason behind
    it. That's why it's commonly use for ads only, minimum user
    interaction.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

Maybe you are looking for

  • Annotation field locked and subsequent digital signatures

    Hi all, i'm testing my PAdES digital signature library in Obj-C and i encountered this kind of PDF file http://dl.dropbox.com/u/3995257/PDF/Locked.pdf Acrobat Reader tells that the document is locked by a signature (Signature2). As far as i know lock

  • Tax component in down payment request

    Hi Gurus, Following is my doubt. I have a sale order. Material A price is 1000. Tax is 10% - which is 100. Total amount is 1100. The Billing Plan is Milestone type. I create 4 down payment requests - each 25%. But in the down payment request, the amo

  • HQ and Remote Wired Guest VLAN

    Hello all, I am having trouble to create a standard condition for Policy Authorization.  Basically there are HQ and remote locations configure for guest access. Each location has its own guest vlan.  On ISE the standard rule are: Standard Rule 1 if U

  • Why my Toshiba mobile hard drive (1TB) can not be used in the macbook air?

    Why my Toshiba mobile hard drive (1TB) can not be used in the macbook air?

  • Difference between diff ., P.O.

    Hi guru's Can anybody clarity that is there any difference between raw material procurement, Normal P.O. for traded goods while creating P.O., MIGO & MIRO. Please its urgent. regards tuljasingh,