How do I Link to _blank window without headers?

I am creating a page that links to a flash slide show. When
the user clicks on the link to the slideshow, I want the flash
movie to open up in its own window, without all of the usual
Explorer toolbars and menus at the top of the page. I set the link
to _blank, so I do get a separate window. Now, what is the trick to
getting rid of the junk at the top of the page?
I know it can't be very difficult, but I'm puzzled.
Thanks!

This is a problem with your brother's browser. The code is
correct.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"janeinpa" <[email protected]> wrote in
message
news:fbi8g5$med$[email protected]..
> Hi, Murry...
>
> Your solution worked great on most of the computers I
tried. However, I
> was
> just at my brother's house & tried to click the link
that opens just the
> slide
> show. I got an error -- something about no object at
line 2. It wouldn't
> open
> the slideshow, but opened a big, blank window. I thought
maybe he needed
> Flash
> Player 9, so I downloaded it, but it still didn't work.
He's using IE 7.
> I
> also turned off his pop up blocker, but that didn't help
either. Any
> ideas? I
> came home & it works great on my computer! You can
see it at
> www.allisonwebcreations.com/africa/slideshow.htm The
link at the bottom
> opens
> the show in its own window.
>

Similar Messages

  • My macbook froze up. Finger gestures work, but I cant close out of any windows. How do I close out the windows without using the track pad?

    My macbook froze up. Finger gestures work, but I can't close out of any windows by clicking on the red "X". How do I close out the windows without using the track pad?

    Command + W will close a window. Command + Q will quit a program.

  • How to open a new browser window without toolbar, location, and menu bars from AIR?

    I have the following problem in my Flex+AIR application. I need to embed an ActiveX component that has JavaScript API inside my application. I tried to embed it inside <mx:HTML> component but unfortunately, AIR doesnot support plug-ins or ActiveX controls. So I've decided to open it in a new browser window. I tried navigateToURL(...) method but it has two problems - it is opening a new tab in the existing browser window and there is no way for me to configure the new browser window appearance, like removing toolbar, menu bar, location bar, etc. Then I tried to open a new window from JavaScript running inside <mx:HTML> component using window.open(...) API but it doesn't open a new window at all.
    Is there any way for me to open a new browser window without toolbar, location bar, etc. (which will run ActiveX control, so it cannot be AIR window) from inside AIR?
    Best regards,
    Arkady.

    Is it possible to open a new browser window using JSP?a JSP page is also an HTML page, this is client side stuff, you can do it with JavaScript.

  • How to open link in new window using Mountain Lion

    When I upgraded to Mountain Lion, opening a link closes the window I'm in when it opens the new one.  Example, I'm in email, click on a link, and then have to reopen email.  The back button doesn't work.  Where is the setting to change this so my current window remains open?  I use Safari.

    The option to open in a new tab or new window is in Safari > Preferences > Tabs > Open pages in tabs instead of windows: Never, Automatically, or always.

  • How to open iWork 08 blank file without headers?

    Hi, couldn't find an answer for my question on the forms, so here it goes...
    Is there a way to set Numbers '08 to open new files without Column and Row Headers? I know how to remove and/or delete them, but this is not what I'm looking for. I want to start all new documents without the headers. Is it possible?
    Thanks, Vlad.

    Hello Vlad,
    Whenever you begin a new document, you are opening a Template. Often we use the blank template provided with Numbers, but we are free to make our own templates without Headers and with any settings we find convenient. Prepare a document that is just the way you would always like to begin your work and then File > Save as Template.
    When you want to start a new document, File > New from Template > My Templates, choose your special template.
    Regards,
    Jerry

  • For a SharePoint list LVWP - how to open links in new window? (Without SPD - Without access to server)

    Hi there,
    I canNOT use SharePoint Designer nor do I have access to server to change any 14 hive files.
    I have a SharePoint 2010 List with a field of type Hyperlink. I need these links to open in New Window. Only links with-in this LVWP should open in new window (and not links on Quicklaunch or top nav).
    Any clues how to achieve this please? JS is okay.
    Thanks.

    Hello,
    The good news is that you're not the first to have those requirements!
    Here's the JavaScript:
    <script>
    var allLinks = document.querySelectorAll("table.ms-listviewtable tr td a");
    for(var i=0; i<allLinks.length; i++){
    if(allLinks[i].onclick == null){
    var targetUrl = allLinks[i].href;
    targetUrl = targetUrl.indexOf("?") > -1 ? targetUrl + "&isDlg=1" : targetUrl + "?isDlg=1";
    allLinks[i].href= "javascript:var options = {width:500, height:300, url:'"+targetUrl+"'}; SP.UI.ModalDialog.commonModalDialogOpen('"+targetUrl+"', options);";
    </script>
    This script can be saved to a text file and uploaded to a document library. You can then add a content editor web part below your list view web part (so that it doesn't execute until after the list view has loaded) and set the "content link"
    property of the web part to be the path to the uploaded text file.
    The solution was originally posted here:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8ca275df-1d9c-4d0f-a624-c0531fda069a/how-to-open-model-dialog-onclick-of-list-item-hyperlink-column?forum=sharepointdevelopmentprevious

  • List - Navigation Outline - how to open link in new window/tab?

    I have created Navigation Outline but would like to open links in the new window or tab.
    We are using single sign-on within our intranet therefore the links looks like that: f?p=105:1:&SESSION..
    Does anybody have any ideas how to open new window, I have tried this: target="_blank" but it doesn't work.
    Thanks in advance.
    Robert

    Where exactly are you building this link to open a new window? Are you builidng it inside the query? a column link? I'm just curious; as it would make a slight difference in syntax, or where to escape, or whether or not you need to escape or not. But anyways, you could look into the javascript:popupURL syntax.
    So if you were building a link inside a query, the syntax would look similar to:
    '<a href = "javascript:popupURL(''f?p=&flow_id.:101:&session.::&debug.::&P101_ITEM:&P99_MATCH_ITEM.'')">Link</a>'
    Those are two single quotes that start and end the ....f?p-url-part....I.e., escaped.
    But thats just an example. Hope that helps.

  • How to make SAP Instance on Windows without SAPinst (manually)

    Dear colleagues!
    On unix platform It's usually more convenient for me to make an additional sap instance by manually copying of sapmnt, usr and a couple of others folders, making links, editing /etc/services. It's faster than running SAPINST (for me).
    So the question is - how and what should I perform for making an instance, central instance as well on WINDOWS platform.
    with best regards,
    Vladimir

    Hi,
    It is not recommended way to install SAP System without following Standard Installation Method. Please read concerned Official SAP Installation Guide and follow the standard procedure without inviting more complexities and headache.
    Regards,
    Bhavik G. Shroff

  • How to reinstall Palm desktop for Windows without losing all my desktop data

    I use a Palm T|X and Windows XP Pro.  I was using Palm Desktop 4.x but decided to upgrade to the latest version. 6.2.2.  I have had a lot of problems since then, HotSync does not work properly with CalorieKing and Palm Desktop complains about "switching users" each time I try to open Contacts.
    I want to uninstall Palm Desktop 6.x and reinstall Palm Desktop 4.x.  I know that my data will be safe if after the new install I tell HotSYnc to have the handheld overright the deaktop.  However, what about the programs?  Will they also get transferred from the Palm back to the desktop?   Will the conduits be set up correctly for Documents to Go, CalorieKing and my other applications, or will I have to reinstall them?
    Post relates to:

    The programs are still in place, but how does the "new" copy of Palm desktop know they are there?  Also, there are copies of the programs that are installed only on the Palm but not the Windows machines in one of the Palm desktop folders that use used to restore data to the Palm T|X. How do I save that data, without having to install all those programs yet again, even though they already exist on the palm?.
    Post relates to:

  • How to check links on a page without creating a site?

    Setting up a site in Dreamweaver is a chore when all I'm developing is one html landing page, an html email, mockup presentation, testing source code, ...
    Is there a any way Dreamweaver can check absolute urls to external sites or local relative image urls aren't broken without having to config a site?
    Or maybe there's a service I can paste the html into and it'll tell me if links are broken?
    Thanks,
    DAN

    Link Validators
    http://www.lithopssoft.com/hlv/index.html
    http://www.linxexplorer.com/linxexplorer.html
    Nancy O.

  • How to open links in same window, another tab (by default)?

    I think the users have been asking this question for more than two years. Is there a way to open links in the same tab automatically? Its annoying when I am using apple products and have to click three times for a task that is easily made with a single click in other products (chrome, firefox....).

    Hi ...
    Not in the same tab but a new one yes. Command + click
    Check the Safari Extensions gallery...
    From your Safari menu bar click Safari > Safari - Extensions.
    Try the Productivity category.

  • How to screencapture CONTENTS of a window, without title bar?

    I've been trying to find a solution to doing a screen capture but NOT the window title bar, just the CONTENTS of the window. For example, in Photoshop, I only want the image IN the window, not the bits with the 3 coloured blobs in the upper left of all windows and the document title
    All the references I've foiund talk about capturing the wndow, but no-one talks about the contents of the window.
    Am I trying to invent a wheel here?
    Any advice gratefully received.

    Are you asking about screenshots in general? You have three choices: the entire Mac's screen, an entire window including the title bar, or a selection created by dragging a selection rectangle.
    http://support.apple.com/kb/PH11229
    To take a screenshot for posting on this site hold ⌘ Shift 4 to create a selection crosshair. Click and hold while you drag the crosshair over the area you wish to capture and then release the mouse button. You will hear a "camera shutter" sound. This will deposit a screenshot on your Desktop.
    If you can't find it on your Desktop look in your Documents or Downloads folder.
    When you post your response, click the "camera" icon above the text field.
    This will display a dialog box which enables you to choose the screenshot file (remember it's on your Desktop) and click the Insert Image button.
    ⌘ Shift 4 and then pressing the space bar captures the frontmost window.
    ⌘ Shift 3 captures the entire screen.
    Drag the screenshot to the Trash after you post your reply.

  • Hyperlink on Crystal Report: how to popup a window without menubar?

    Hyperlink on Crystal Report: how to popup a window without menubar?
    Hello Experts!
    I'm using VS2003 with Crystal Reports for VS2003.
    I need to show a popup window clicking a hyperlink text object on my crystal report.
    On the CrystalReportViewer I have set up HyperlinkTarget=_blank, and it's working fine.
    But when I click on the hyperlink and shows the popup window, how can I show the popup window without menubar, toolbar, directories, etc.
    Something like:
    window.open('../MyPage.html?id=id001" + Cad + "',null,'menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=yes,status=yes')

    Adam is correct. The closest you can get is setting the CrystalReportViewers HyperlinkTarget to _blank. It was seen as a potential security vulnerability to allow you to run scripts from a Crystal Reports. In our Enterprise product you can use a reg key called EncodeHTMLForSingleLineFieldObjects to control whether this can be turned on or off.
    Unfortunately this was never ported over to our .NET CrystalReportViewer.
    This is referenced in notes 1202803, 1219298, and 1219301.
    https://www.sdn.sap.com/irj/sdn/businessobjects-notes
    Edited by: David Hilton on Jul 16, 2008 4:17 PM

  • URL iView doesn't open link in new window

    Hi All,
    I'm have an URL iView that I want to display in the portal content area but whenever the user clicks on a hyperlink on that iView launch a new window for the link.
    I've tried using the 'Open iView links in new window' without any success. Is this supposed to work or this property is for another purpose...? Can someone point me to a solution.
    Thanks

    Hi Detlev,
    I checked what you said. I've already looked at that page but didn't saw that important disclaimer. My problem was that I didn't had a captured area-URL iView but a full page-URL iView as it says:
    +These properties are relevant in the following instances only:
    §         The iView content is displayed in its source format. The rendering type must be defined as Keep Source Formatting. See Defining the Look and Feel of the iView Content.
    §         The iView content displays a captured area, and not the entire Web page. See Selecting the Capture Area.+
    I only had to change the 'Open iView links in new window' to Yes after capturing a part of my page and it started working.
    Thanks for sharing

  • How do I get all Finder windows to open in spatial view?

    How do I get all Finder windows without special view options set to open in the 'spatial' mode (without the toobar or sidebar)? The ones I specifically change stay that way, but I want all new and old folders to be like that too.

    That's called the simple Finder mode. You would need to configure that as part of Parental Controls in the Accounts preferences. To make any Finder window appear that way jut click on the gadget in the top right corner of the Finder window.

Maybe you are looking for

  • When I try to update iTunes 10.3, Insufficient Privileges error. C:\programData\{429CAD59-35B1-4DBC-BB6D-1DB24-6563521}\x86\DIFxAPI.dll

    When I try to update iTunes 10.3, the installer finishes downloading but then this message appears "errors occured while installing updates. If the problem persist, select Tools, "just download" and instal them manually" so I go and do that, select T

  • Total page no in Report

    Hi, i want to total page no in my report. I am printing total 5 page in the report so i want to print Page 1 of 5 Page 2 of 5 ' So how to print this type of msg in the report. Please help me its very urgent...... Thanks in advance. Kumar AT.

  • Insert record - works in FF and Safari, but not IE

    I think this is an odd one - I have a site which uses a fairly standard form to add a record to a database. I changed the input code to have an image as the button to : <input type="image" name="New Vehicle" id="New Vehicle" value="Insert record" alt

  • Jittery display due to network delay for streamType=live

    Hi, We are using OSMF(Strobe Media Player) that becomes jittery as the network delay between the player and the publisher of the livestream increases. A Red5 media server publishes the RTMP stream produced by an ffmpeg instance to the player. When th

  • Export Data Source Transport Problem

    Hi All, I have IO FI Super Number - did export data source for that and generated 8zfssupno for myself BW system in Dev system. Used that export DS for another MD Account and created transfer rule. Now when i try to transport the Request to QA env. t