Keeping all pages in one browser window

I'm trying to figure out how to have all of my pages for my
site open under one browser window instead of opening up a new
window when each button is clicked.
I built Flash buttons for the pages and they work fine...I'm
new at this and haven't figured out how to get the pages to open up
in the main (index.html) browser window. I've tired doing it using
the Add Behaviors, GoToURL selection but it doesn't work...also the
only selection that appears is Main Window*, and I don't know what
the * signifies. I'm sure that this is simple...help please!

> I built Flash buttons for the pages and they work fine
Does the page use Frames?
http://livedocs.adobe.com/flash/9.0/main/00001180.html
note this paragraph:
Security note: In Flash Player 9 and later, when code in a
SWF file that is
running in the local-with-filesystem sandbox calls the
getURL() function and
specifies a custom window name for the window parameter, the
window name is
transfered into a random name. The name is in the form
"_flashXXXXXXXX",
where each X represents a random hexadecimal digit. Within
the same session
(until you close the containing browser window), if you call
the function
again and specify the same name for the window parameter, the
same random
string is used.
so, targeting named frames is effectively broken when viewing
local files
AFAIK.
They should work as intended when uploaded to a server.
If that's not it, url address to the uploaded page please.
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • Opening More Than One Browser Window

    Hi all,
    Mac Newbie here!
    A quick question.
    If i wish to open more than one browser window, how do i do it?
    When i used to use a PC, i just clicked IE everytime i wanted to open another window.
    However, if i try to do that with Safari, nothing happens.
    I have looked through various settings pages but i cant seem to find anything to help.
    Any ideas?
    many Thanks!!!

    Hi Jason,
    Welcome to Apple Discussions & Mac!!
    If i wish to open more than one browser window, how do i do it?
    Under the Safari Menu Bar-> "File" click on the menu item "New window"
    Hope that helps answere your question. Please let us know.
    Eme"~[)
    Helpful.. Solved.....Why Award points?

  • ADF UIX: communication between more than one browser window

    Dear Sirs...
    how can i open more than one browser window using ADF UIX and jdeveloper 10.1.2 such that the data entered in the second window affects the data in the first?
    for example in the date field, a popup window appear that allows me to select the date, and then the selection appears in the first window.
    how can i achieve something similar? i am using UIX not JSP
    thanks for any help in advance
    best regards

    dear sir...
    i am afraid you got me wrong, i am not talking about the database values.
    let me give you an example of what i am trying to achieve:
    1- create a date field, create an input forum to fill that field (uix page)
    2- now you run the application, try to click the icon near the date field, a new popup window will appear, that helps you enter the date value.
    3- when you select the value, the popup window disappears and the date is inserted into the forum
    i am trying to achieve something similar.
    thanks for your previous answer, but you got my question wrong.
    best regards

  • Smartform All pages in one print preview problem

    Hi
         I am displaying the employee data in ALV with checkbox selection.. i put two user defined buttons like print and print preview. when user clicks on print button, smartform will call for very employee in loop and print it employee wise. But my problem is when user clicks on print preview by selecting multiple checkboxes , I need all pages(employee wise like page1,2,3..) in one print preview. I done but for every employee,i have to press the BACK button. But I need all pages in one preview. I'm pasting my code here. Can anyone suggest??
    WHEN 'PREVIEW'.
    w_cparam-no_dialog = 'X'.
      w_cparam-preview = 'X'.
       w_cparam-getotf = ' '.
       w_outoptions-tddest = 'LOCL'.
       w_outoptions-tdnoprev  = ' '.
        w_outoptions-tdimmed  = 'X'.
    * to reflect the data changed into internal table
          IF ref_grid IS INITIAL.
            CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
              IMPORTING
                e_grid = ref_grid.
          ENDIF.
          IF NOT ref_grid IS INITIAL.
            CALL METHOD ref_grid->check_changed_data.
          ENDIF.
    loop at i_data into wa_data where SEL = 'X'.
    MOVE-CORRESPONDING WA_DATA TO WA_PRINT.
      APPEND WA_PRINT TO I_PRINT.
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            FORMNAME                 = 'ZHRF1_PTAR1001'
    *       VARIANT                  = ' '
    *       DIRECT_CALL              = ' '
         IMPORTING
           FM_NAME                  = FM_NAME
    *     EXCEPTIONS
    *       NO_FORM                  = 1
    *       NO_FUNCTION_MODULE       = 2
    *       OTHERS                   = 3
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      CALL FUNCTION FM_NAME
        EXPORTING
    *     ARCHIVE_INDEX              =
    *     ARCHIVE_INDEX_TAB          =
    *     ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = W_CPARAM
    *     MAIL_APPL_OBJ              =
    *     MAIL_RECIPIENT             =
    *     MAIL_SENDER                =
         OUTPUT_OPTIONS             = W_OUTOPTIONS
         USER_SETTINGS              = 'X'
          FR_DATE                    = PN-BEGDA
          TO_DATE                    = PN-ENDDA
       IMPORTING
    *     DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            = T_OTF_FROM_FM
    *     JOB_OUTPUT_OPTIONS         =
        TABLES
          ITAB                       = I_PRINT
    *   EXCEPTIONS
    *     FORMATTING_ERROR           = 1
    *     INTERNAL_ERROR             = 2
    *     SEND_ERROR                 = 3
    *     USER_CANCELED              = 4
    *     OTHERS                     = 5
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    CLEAR: WA_DATA,WA_PRINT.
    CLEAR: I_PRINT.
      ENDLOOP.

    Hi friend sure.
    You need to increment the index only at the loop no where else and the variable for holding the index value is global.
    If you create before the read every time it gets trigerred.
    After each loop you assign the sy-tabix value to that variable.
    Just like this ,
    v_index = sy-tabix.
    Then at the window just read the table as shown
    READ TABLE t_chq INTO x_chq INDEX v_index.
    This will do friend.
    I will update the flow of my code here, then you many understand it much clear.
    Page1
      Main window (below page1)
        Loop (inside Main win)
          program lines. code : v_index = sy-tabix. v_lines =  lines( t_chq ). (inside loop)
          Condition (inside loop)
             True
                check the v_index < v_lines if true break page, for page break create a command and do it (Inside true condition)
             false
               blank.
      Secondary window (below page1)
        program line (inside sec wind)
        Inside program lines the code is READ TABLE t_chq INTO x_chq INDEX v_index. (inside sec wind)
      Secondary window2  (below page1)
         program line (inside sec wind2)
        Inside program lines some other code. (inside sec wind2)
    This is my logic try like this friend.
    I think for other records its coming fine because since it is an local variable its getting updated some where and also showing 1 bec its always initializing.
    Try this you will get if any issues please revert back to me
    Thanks,
    Sri Hari
    Edited by: srihari.kumar on Jan 6, 2012 11:04 AM
    Edited by: srihari.kumar on Jan 6, 2012 11:05 AM

  • Can I access my husband's iTunes acct. from my iPad?  I have his permission & pass code.  We want to keep all music in one place & family accessible.

    Can I access my husband's iTunes acct. from my iPad?  i have his permission & pass code.  We want to keep all music in one place & family accessible.

    If you log into his account and download some of his past purchases on your iPad then you risk tying your iPad to his account for 90 days : iTunes Store: Associating a device or computer to your Apple ID
    But it looks like that might change when iOS 8 is released in the Autumn (no date has been announced yet) : http://www.apple.com/ios/ios8/family-sharing/
    If you have his content in your computer's iTunes library then you could sync it from there instead of risking the 90 days association on your iPad. If you don't then you could copy it from his computer and then sync it to your iPad e.g. copy his music to a flash drive and then add it to your library via File > Add To Library

  • How to keep all developments in one package

    Hi
    I have a requirement
    In my company one new training server was installed for which all developments should be copied from other servers client.
    For this i have to keep all developments in one package.
    Can anyone suggest me how to do this
    urgent plz
    thanks in advance
    sateesh

    Hello Sateesh
    In the transport organizer (<b>SE10</b>) you can create a workbench request of the following type: <b>Relocation of objects with package change</b>
    That's the documentation of this request type:
    Select relocation of objects with package change
        Relocations of objects with a package change are transports with which
        o   you change the original location of the objects entered and
        o   reassign the objects to an appropriate new package.
    Use
        The package change means that you can automatically adjust the transport
        attributes of the objects to the new development system. This means that
        you edit the objects immediately after they have been imported into the
        target system.
    I have not yet used this kind of request but with some playing around you should easily find out how it works. I am sure this is (one of the possible) solutions to your problem.
    Regards
      Uwe

  • Is it possible to see all pages in one document at once?

    Hey.
    So I can't figure out if it's possible to see all pages in one document at once, so that it's all on screen at the same time.
    Is it possible and if it is then how so?
    Thanks in advance for any kind of help

    Wouldn't that depend on how many pages there are, how large your screen is and how small you were willing to put up with in the thumbnails?
    Peter

  • Linking a page as a browser window from a drop-down menu item

    I have tried to link from a drop-down menu item to link to a small browser window instead of a full page.  I tried using the "behaviors" but I got both the regular page and the browser window.  Is there a way to make it just the browser window.
    Thanks.

    I tried that target=_Blank" but I still got the regular page plus the small browser window .  I got rid of the Behavior for now.  My aim is to would display the page in a simple 450 wide x 450 long browser window with a scroll bar with nothing else.  If you can give me a code hint to do that, It would be appreciated.  I'll figure out the rest.
    My HTML coding skills are limited, as I'm used to using FP.(FP seems to be to the Web circles as the Bard's Scottish Play is to the theatrical world)

  • How to copying all pages at one shot?

    Does anybody know of a way of copying all pages at one shot, under a tabset in an application in a workspace to another application in the same workspace instead of doing it page by page?

    There is no Select All option, but you can do it a little faster than opening each email and tapping the Trash icon. In the top rightcorner of the list of email is an edit button. Tap Edit.
    You can then tap each email in the list to select it for deleting and then tap the Delete button at the bottom of the list.
    These screenshots are from my iPad, but it works the same on my iPhone.

  • How to close one browser window and return to a named anchor on a page in another window

    I'm working on a website that has several book images at the bottom of each page. I have set it up so when the user clicks on a book another smaller browser window opens up with a description of the book. At the bottom of book description window, I have a close button which I added the window.close() behavior to. But I'd like to not just have the window close but return the user to the bottom of the original page where I have the books, an area that I have applied a named anchor to. Any ideas on how I can get this done.
    I'd appreciate any and all help.

    I haven't tried to customize this lightbox extension much.  But I'm pretty sure the size of the box is pre-determined by image size.  Bigger image, bigger box.  And that is coded into one of the Lightbox javascript libraries.
    As to placing a link in the caption, sure.  Just paste your html link code into the Lightbox Caption Panel like so.
    <a href="http://amazon.com"> Buy now from Amazon</a>
    There is much more detailed information about Lightbox and how it works at the huddled together website.
    http://www.huddletogether.com/projects/lightbox/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Centering a page in a browser window.

    A friend called me up over the weekend wondering how to get a page to center in a browser window. I was caught off guard and told him I would have to call him back (Not working with Dreamweaver or HTML on a daily basis can cause the simplest things to become foggy or lost.) The best I could tell from one of my Dreamweaver books is that you need to set all of the margins to zero in the property inspector. This should make sure all of the areas around the page are equal.
    I want to make sure so I come here seeking the final answer. Was I correct with the margins to zero answer?
    Thanks,
    Ken

    This gets asked a lot.  You really only need 3 things to center a page.
    1) a valid document type declaration on the top of your page.  DW does this for you when you open a new HTML document.
    2) A declared container width in pixels, ems or percentages.
    3) Margin-left and margin-right set to auto.
    CSS Code:
    #container {
    width: 900px;
    margin: 0 auto; /**this centers container in modern browsers**/
    text-align: center; /**this centers container in old browsers**/
    HTML Code:
    <body>
    <div id="container">
    your page content goes here
    </div>
    </body>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • I click on a link or start typing text in a box on a webpage, any page, and the browser window either randomly changes size, reduces & goes to the toolbar, or some other strange random thing occurs. Why is this?

    Whenever I am using Firefox, when I am on a webpage (any webpage) & I either click on a link in that page, start typing in a box, click on a button, or click on a tab, the browser window either reduces to the toolbar, or just changes size, usually from full-screen to 2/3 of its size. I reinstalled Firefox (downloaded from the web) after wiping my hard drive because I was having so many problems from my browser constantly crashing, to the computer itself crashing often, to the computer running exceptionally slow. At first everything seemed fine. But then after having opened my computer a few times, a few different windows began to freeze, then that stopped, then this thing with the browser started a few times later after opening it. Now it does it every time I open it. Also, whenever I try to click on a button on other windows on my computer, I get the 'warning' sound, nothing happens, then after a couple more tries, the button works. All of this is just weird. I had antivirus protection on my computer, but it apparently did not catch whatever virus infected my computer, or the damage was already done when it did get it. I thought once the hard drive was wiped, that everything would be ok, but then these weird things began to start up, and now I am wondering.... Of course, it could also be something wrong with the browser, too. I've also had some trouble getting my printer to working again, but I've managed to solve that problem.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Help with linking to a web page within same browser window

    I just upgraded my Flash MX to CS5.5 and am completely stumped at what would appear to be the most basic of functions.
    I have a small Flash movie that is embedded on a site. At the end of the movie, there is a call to action to click to another page on that site. However, it appears the only action in the Code Snippets panel is for an action that opens a new browser window. I miss the basic actions panel! Am I missing something here? How do I accomplish what I need to? I tried changing the code to "_self" instead of "_blank" but that doesn't work
    Here's the code:
    button_5.addEventListener(MouseEvent.CLICK,fl_ClickToGoToWebPage_9);
    function fl_ClickToGoToWebPage_9(event:MouseEvent):void
        navigateToURL(new URLRequest("purchase.html"), "_blank");

    You know, I tried that twice, and it didn't work...now it worked. Go figure
    Must have had something else wrong in the code.
    Thanks!

  • How to include a common java script in all pages to prevent browser closure

    We have already implemented a script to prevent accidentally browser closure. The script has been included in a js static file and loaded in APEX 4.01.
    There is a way to make the script available to all pages without including it in all pages ?
    Ad example to make an item available to all pages is sufficient to include it in page 0 there is somethings similar for java script
    Txs
    Giuseppe.

    Reference the script via a <tt>script</tt> element in the Header section of utilised page templates.

  • Keep Website Centered in Web Browser Window

    Hi
    Im using Dreamweaver CS4 and I was wondering, how can I make it so that whatever size you make your web browser window it stays in the middle? E.g. touchthisgames.com Its simple like my website will be but it all stays in the centre no matter what size your browser window is. Any help much appreciated, thanks.

    See the following link and view source code in browser.
    http://alt-web.com/TEMPLATES/Basic-1-col-fixed.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

Maybe you are looking for

  • How do I utilize multiple instances of firefox utilizing different credentials, and retain full functionality.

    Recently my company made some "in the name of security" changes. One of these was to give local IT two windows accounts, one for e-mail and day to day activities, and the other for when administrative privileged is required. I have been using Firefox

  • Email client problem with 11.0.3

    I recently upgraded to Reader 11.0.3 and evertime I lauch the application I get an error message along the lines: "This application has failed to start because GAPI32.dll was not found.  Re-intalling the application may fix this problem", followed by

  • QueryString issues with Query Builder and Search Box

    Hi Guys, I've got the following scenario (Issues are bolded for quicker reading): I have a search results pages named results.aspx I have a page, named messages.aspx, with a webpart that display messages from a specific folder (which can be changed i

  • Purchase Order Response BUS2232

    We are using SRM-SUS and I am looking to create a Purchase Order Response )aka PO Confirmation) from a SUS supplier to the original PO. But I cannot see where in the Supplier users access this document is created. The documentation discusses setting

  • Problem deleting pdfs

    I am trying to delete pdfs from our website which we manage via Contribute CS5 . I can delete a word doc by choose file, select doc, OK then File - Actions - delete page. With a pdf I get a message that 'you can't use Contribute to edit this type of