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!

Similar Messages

  • Creating Links for other Web pages within Flash C23

    Hello Everyone,
    First of all, I'm sure you're tired of answering the
    questions regarding "Links". Although, I'm having a very
    difficult time with this issue. I just purchased Flash C23,
    taken all the tutorials from www.lynda.com, but
    I do not find answers for linking one web page to another
    within Flash C23. I have read all the answers
    on this forum and still can not get my buttons to link up to
    my other web pages.
    I have figured out how to create the buttons, although, I'm
    not doing something right when I try to link up my web
    pages. You have to realize I'm coming from Adobe Golive (no
    need for codes or scripts). I do not want to stop
    using Flash... Can someone help?
    Thank you so much, it's appreciated.

    replace 'siteName' with whatever you use to target your site
    in a browser. 'FranchelleDesigns' is what you named your page in
    GoLive.
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.siteName.com/FranchelleDesigns.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);
    EX: my website is
    http://www.damonedwards.net
    lets say I create some HTML page that I want to link to, and I save
    it as, ContactMe.html... this is what I would use in flash to link
    to it
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.damonedwards.net/ContactMe.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);

  • Launch an URL within same browser window

    Hi ABAP WebDynproExperts,
    Here is a short scenario description what I want to achieve.
    I have a ABAP WebDynpro Component which has "Input-Parameters" (Parameters of the Inbound-Plug - Default). Within the handledefault Method I want to call one of my own Function module which generates another URL.
    Now I want to launch this URL directly in the same browser window directly without putting the URL on an button. So the ABAP WebDynpro Component/Window/View has no UI elements itself - it should just be used to parse the "importing paramaters" via the url parameters to the backend and executing the URL without user interaction.
    Unfortunately I was not able to find a WD specific method how to call a URL in the same browser window? Do you have any ideas?
    Thank you & kind regards,
    Daniel

    Hi again,
    thanks for that. But that was not what I am looking for. Maybe it is unclear what I need.
    I try to reduce my point:
    Simplified I have the following coding in the implementation of Method "handledefault":
    METHOD handledefault .
       DATA: l_url type string.
       l_url = 'http://www.sap.com'.
    ENDMETHOD.
    I am looking for an ABAP WD command with which I can start this URL in the same browser window?
    Thank & kind regards,
    Daniel

  • Help with Flash code in web page

    I have a Flash file in the masthead of my web site that shows
    a slideshow. I want to code the page so that if the viewer doesn't
    have Flashplayer, an alternative jpeg comes up in the masthead
    instead of the file with the flash slideshow. I'm afraid I'm new to
    most of this.... I'd very much appreciate help with the
    programming.
    Thank you!
    Here's the file:
    http://www.ewgaphilly.com/cs3index.html
    (the slide show isn't working at the moment -- a server issue). The
    alternate file I want to put in is:
    http://www.ewgaphilly.com/alternate_mast.jpg

    I'm sorry to be so dull on this, but I'd appreciate if you
    could tell me specifically which is the embed code (the codes in
    the <head>? What to I change here? I really appreciate your
    help.
    Here is what I get when I publish the movie and the open the
    html file:
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>main_slideshow_philly</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 7;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Revision of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash
    Player ActiveX control version information
    Function VBGetSwfVer(i)
    on error resume next
    Dim swControl, swVersion
    swVersion = 0
    set swControl =
    CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
    if (IsObject(swControl)) then
    swVersion = swControl.GetVariable("$version")
    end if
    VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1"
    type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ?
    true : false;
    var isWin =
    (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true :
    false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ?
    true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn
    version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin
    array
    if (navigator.plugins != null &&
    navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] ||
    navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? "
    2.0" : "";
    var flashDescription = navigator.plugins["Shockwave Flash" +
    swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
    versionRevision = tempArrayMinor[1] > 0 ?
    tempArrayMinor[1] : 0;
    flashVer = versionMajor + "." + versionMinor + "." +
    versionRevision;
    } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv")
    != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // If called with no parameters this function returns a
    floating point value
    // which should be the version of the Flash Player or 0.0
    // ex: Flash Player 7r14 returns 7.14
    // If called with reqMajorVer, reqMinorVer, reqRevision
    returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer,
    reqRevision)
    reqVer = parseFloat(reqMajorVer + "." + reqRevision);
    // loop backwards through the versions until we find the
    newest version
    for (i=25;i>0;i--) {
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray = versionStr.split(" ");
    tempString = tempArray[1];
    versionArray = tempString .split(",");
    } else {
    versionArray = versionStr.split(".");
    versionMajor = versionArray[0];
    versionMinor = versionArray[1];
    versionRevision = versionArray[2];
    versionString = versionMajor + "." + versionRevision; //
    7.0r24 == 7.24
    versionNum = parseFloat(versionString);
    // is the major.revision >= requested major.revision AND
    the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum
    >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor
    >= reqMinorVer) ? true : false );
    return (reqVer ? false : 0.0);
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <script language="JavaScript" type="text/javascript">
    <!--
    var hasRightVersion = DetectFlashVer(requiredMajorVersion,
    requiredMinorVersion, requiredRevision);
    if(hasRightVersion) { // if we've detected an acceptable
    version
    var oeTags = '<object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="780" height="444"'
    + 'codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="main_slideshow_philly.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffffff" />'
    + '<embed src="main_slideshow_philly.swf" quality="high"
    bgcolor="#ffffff" '
    + 'width="780" height="444" name="main_slideshow_philly"
    align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="
    http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags); // embed the flash movie
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'alternate.giv';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not
    support scripting
    // or for those that have scripting disabled.
    Alternate HTML content should be placed here. This content
    requires the Macromedia Flash Player.
    <a href="
    http://www.macromedia.com/go/getflash/">Get
    Flash</a>
    </noscript>
    </body>
    </html>
    Here is my existing code in my home page:
    <!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=iso-8859-1" />
    <title>EWGA Greater Philadelphia Executive Women's Golf
    Association</title>
    <style type="text/css">
    <!--
    @import url("/ewgacss.css");
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <style type="text/css" media="screen">
    <!--
    @import url("p7tbm/p7tbm_center_08.css");
    -->
    </style>
    <script type="text/javascript"
    src="p7tbm/p7tbmenu.js"></script>
    </head>
    some other stuff goes in here!!
    then...
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','780','height','444','title','EWGA
    Greater
    Philadelphia','src','/main_slideshow_philly','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','/main_slideshow_philly'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="780" height="444" title="EWGA Greater Philadelphia">
    <param name="movie" value="/main_slideshow_philly.swf"
    />
    <param name="quality" value="high" />
    <embed src="/main_slideshow_philly.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="780"
    height="444"></embed>
    </object>
    </noscript>

  • Invoking  A Href="link to a web page" inside ICE Browser /

    Hello
    I would like to invoke a .
    The doc says that i can use,
    Popups are supported through the Oracle Help popup protocol. For example: Sheet Definition
    The keyword that follows the popup protocol is a topic ID, as specified in the helpset's map file. When the pop-up link is clicked, the contents of the file associated with the topic ID is displayed in a lightweight pop-up window. For example, select this link to display a popup defined as follows: this link
    Yes i tried the above. It was slick, and it showed in a LightWeight Window insider the ICE Browser. But i need an option to again browse that Light weight window that was displayed by the ICE Browser. I dont need the full functionality to work in the resulting LightWeight window, atleast i should be able to click the links ie which have <A Hrefs in the light weight window>
    For instance.
    The and pass the control over there. The users should be able to browse the Admin Guide if they want.
    Is there any work around for this. Please advice if i am following the correct route/approach for this problem.
    The platform this is needed to work are Windows/Aix. Hence is there a solution where, the webpage is displayed in the full ICE Browser viewer instead of the LightWeight viewer ?

    It seems to me that the idea of a <wintype> should provide exactly the mechanisms that kishorekumar wants. By adding this to his map file:
    <mapID target="yahoo" url="http://www.yahoo.com" wintype="external"/>
    It seems to me that a proper <wintype> declaration in the helpset file would allow authors to have what Sun calls "secondary" windows in their JavaHelp application. That is, an actual JFrame object with the HTML display component and the "expected" browser navigation buttons (forward, back, print, etc.).
    However, this only works if the help system is not in "docked" mode. Even then, it has one big problem in that the window containing the link is closed.
    This is one aspect of OHJ that I would really like Oracle to work on. I haven't gotten around to working with this until today, but I think the wintype logic needs the following changes:
    -- Links to pages with different wintypes should work even when the current window is "docked"
    -- Links to pages with different wintypes should not close the current window
    -- If there are multiple entries in the Map file that map a single URL to multiple wintypes (as in the example map file in the documentation), the wintype should be selected as follows:
    1) If the link uses the topicid: protocol, use the wintype specified for that mapID
    2) If the link uses a URL that maps to several ID's, select as follows:
    1) Look for a mapID specifying the current wintype
    2) Look for a mapID specifying the default wintype
    3) Use the first mapID found
    Jeff Beal
    Ansys, Inc.

  • Help centering web pages in all browser windows

    I have searched around and tried out a few code suggestions
    for getting web pages to be centered in all size browser windows,
    but none of them seem to work. I am starting to wonder if it is
    because I used tables to make up my pages- the background stays
    centered, but they do not. Any suggestions? If it is the fact that
    I used layers, is there a quick fix or do I have to start from
    scratch on my pages?
    Thanks!

    http://apptools.com/examples/pagelayout101.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "thetribalsource" <[email protected]> wrote
    in message
    news:[email protected]...
    >I have searched around and tried out a few code
    suggestions for getting web
    > pages to be centered in all size browser windows, but
    none of them seem to
    > work. I am starting to wonder if it is because I used
    tables to make up
    > my
    > pages- the background stays centered, but they do not.
    Any suggestions?
    > If it
    > is the fact that I used layers, is there a quick fix or
    do I have to start
    > from
    > scratch on my pages?
    >
    > Thanks!
    >
    > <html>
    > <head>
    > <title>contact</title>
    > <style type="text/css" media="screen">
    > <!--
    >
    > a:link {color: #CC3300}
    > a:visited {color: #CC6600}
    > a:hover {color: #CC6600}
    > a:active {color: #FFCC66}
    > -->
    > </style>
    >
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > <script language="JavaScript">
    > <!--
    > function MM_reloadPage(init) { //reloads the window if
    Nav4 resized
    > if (init==true) with (navigator) {if
    >
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    > document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    > onresize=MM_reloadPage; }}
    > else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH)
    > location.reload();
    > }
    > MM_reloadPage(true);
    > // -->
    > </script>
    > <style type="text/css">
    > <!--
    > #Layer13 {
    > position:absolute;
    > width:225px;
    > height:400px;
    > z-index:13;
    > left: 421px;
    > top: 137px;
    > visibility: visible;
    > }
    > .style4 {
    > font-size: 9px;
    > color: #964910;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > }
    > .style5 {color: #FF8040}
    > .style9 {
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 16px;
    > color: #964910;
    > }
    > .style10 {
    > font-size: 12;
    > color: #CC6600;
    > }
    > .style11 {font-size: 14px}
    > .style12 {font-size: 24px}
    > .style13 {font-size: 16px}
    > -->
    > </style>
    > </head>
    >
    > <body bgcolor="#000000" text="#000000"
    link='#990000'>
    > <div id="Layer1" style="position:absolute;
    left:658px; top:155px;
    > width:217px;
    > height:40px; z-index:1; visibility: visible;"><a
    > href="product%20belts.htm"><img src="Belts2.jpg"
    width="219" height="39"
    > border="0"></a></div>
    > <div id="Layer2" style="position:absolute;
    left:658px; top:190px;
    > width:223px;
    > height:42px; z-index:2; visibility: visible;"><a
    > href="product%20clothing.htm"><img
    src="clothing2.jpg" width="219"
    > height="39"
    > border="0"></a></div>
    > <div id="Layer3" style="position:absolute;
    left:658px; top:225px;
    > width:227px;
    > height:39px; z-index:3; visibility: visible;"><a
    > href="product%20jewelry.htm"><img
    src="jewelry2.jpg" width="219"
    > height="39"
    > border="0"></a></div>
    > <div id="Layer4" style="position:absolute;
    left:658px; top:260px;
    > width:223px;
    > height:42px; z-index:4; visibility: visible;"><a
    href="schedule.htm"><img
    > src="schedule2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer5" style="position:absolute;
    left:658px; top:295px;
    > width:226px;
    > height:40px; z-index:5; visibility: visible;"><a
    href="Conact.htm"><img
    > src="contact2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer6" style="position:absolute;
    left:658px; top:330px;
    > width:227px;
    > height:40px; z-index:6; visibility: visible;"><a
    href="Links.htm"><img
    > src="links2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer7" style="position:absolute;
    left:133px; top:575px;
    > width:113px;
    > height:23px; z-index:7; visibility: visible;"><a
    > href="product%20belts.htm"><img
    src="Beltsbottom%20copy.jpg" width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer8" style="position:absolute;
    left:234.6px; top:575px;
    > width:134px; height:23px; z-index:8; visibility:
    visible;"><a
    > href="product%20clothing.htm"><img
    src="Clothingbottom%20copy.jpg"
    > width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer9" style="position:absolute;
    left:370.6px; top:575px;
    > width:138px; height:23px; z-index:9; visibility:
    visible;"><a
    > href="product%20jewelry.htm"><img
    src="Jewelrybottom%20copy.jpg"
    > width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer10" style="position:absolute;
    left:495.8px; top:575px;
    > width:139px; height:27px; z-index:10; visibility:
    visible;"><a
    > href="schedule.htm"><img
    src="Schedulebottom%20copy.jpg" width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer11" style="position:absolute;
    left:624.4px; top:575px;
    > width:131px; height:26px; z-index:11; visibility:
    visible;"><a
    > href="Conact.htm"><img
    src="Conactbottom%20copy.jpg" width="125"
    > height="25"
    > border="0"></a></div>
    > <div id="Layer12" style="position:absolute;
    left:759px; top:575px;
    > width:110px; height:24px; z-index:12; visibility:
    visible;"><a
    > href="Links.htm"><img src="Linksbottom%20copy.jpg"
    width="125" height="25"
    > border="0"></a></div>
    > <div id="Layer13">
    > <p> </p>
    > <p><span class="style4"><span
    class="style12">The Tribal
    > Source</span><br>
    > <span class="style11">Karin Hein-Parks and Melanie
    > Wood</span></span></p>
    >
    > <p class="style13"><a
    >
    href="mailto:[email protected]">[email protected]</a></p>
    >
    > <p class="style5"><span
    class="style9">Please contact us for any
    > information
    > regarding in-stock items and special orders. We will be
    happy to email you
    > photos of whatever we currently have in stock. We are
    also very happy to
    > take
    > on special orders if our schedules
    permit!</span><br>
    > </p>
    > </div>
    > <div align="center"><img
    src="page%204-%20links%20copy.jpg" width="775"
    > height="605">
    > </div>
    > </body>
    > </html>
    >

  • Help in linking email to web page in iWeb

    I have previously linked my web hosted email to my web site but cannot do it now. I have on my first page the logo "email me" then go to the inspector to hyperlink the info and the inspector doesn't work. How can I get my web based email address embedded to my page? I guess I'm asking? Just know little about iWeb but like it.

    In iWeb V3, enter the email address in the Site Publish Settings page...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    This will be automatically added to the email me button.
    Otherwise you can delete the email me button and create a text or image (or text and image) hyperlink using the Link inspector and "Link to: An email message".

  • Since upgrading to Firefox 4 I can no longer send a link to a web page. I use Windows XP. Can anyone please help?

    I have used Firefox for some time and have enjoyed the bsend a link feature in the File drop dwon menu. Since installing Firefox 4 this feature no longer works. I click the option and nothing happens. In preferences and applications the mailt0 icon on the far left is not as distinct as it was and the option is set to googlemail which is correct. I have an Apple mac and also installed Firefox 4 and send a link works on the mac with no problem!

    You can try to delete the file mimeTypes.rdf
    See "Reset Download Actions"
    * http://kb.mozillazine.org/File_types_and_download_actions

  • Help with HTML tags and web page creating

    I have a project that is supposed to use an HTML class we make. He has given us the basics but we have to fill it in. My question is: How do you code a value that has been passed to a method into an html tag. For instance we have one that is called makeEmail and it is supposed to place an email address on a webpage. Here is the method, I just need to figure out how to code it correctly. Any suggestions on how to do this?
    public void makeEmail(String address)
    webPage += "" + address + "";
    }

    An email tag in html is very similar to a hyperlink. The string you want the makeEmail method to create is as follows:
    <a href="mailto:(email address")>(email address or description or whatevber you want displayed on screen)</a>So using for example my email address, you use the following line:
    <a href="mailto:[email protected]">Send an email to Mr_Silly</a>It is very much worth looking into an html tutorial, try searching for one on the web, cos there a thousands out there. It is a very simple language to learn.
    :-)

  • Help with links for installing 11.2.0.3 on Windows 64 bit

    Hi
    I downloaded Oracle 11gR2 for 64 bit windows, from oracle website.
    All I could got was as in the link below..
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (x64)
    win64_11gR2_database_1of2.zip (1,213,501,989 bytes) (cksum - 3906682109)
    win64_11gR2_database_2of2.zip (1,007,988,954 bytes) (cksum - 1232608515)
    I installed these and installed database on my TEST NEW DB SERVER .Now my database is 11.2.0.1.0
    I want to have 11.2.0.3
    1)Please give correct links to do the above.
    I have account on My Oracle Support.
    2)Please give link to step by step procedure to do this
    3)I want the database to have latest patchset as well.
    4)Also when I am going to do the install in new LIVE server, please give me the link for the fresh straight install to 11.2.0.3 without having to do twice as I have to do in test:(
    (I only realized later that i have to take link straight from my oracle support, but need to clarify the right link as it is for LIVE)
    Thanks&Regards..
    Edited by: Krithi on 05-Feb-2013 04:36

    Krithi wrote:
    Hi
    I downloaded Oracle 11gR2 for 64 bit windows, from oracle website.
    All I could got was as in the link below..
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (x64)
    win64_11gR2_database_1of2.zip (1,213,501,989 bytes) (cksum - 3906682109)
    win64_11gR2_database_2of2.zip (1,007,988,954 bytes) (cksum - 1232608515)
    I installed these and installed database on my TEST NEW DB SERVER .Now my database is 11.2.0.1.0
    I want to have 11.2.0.3
    1)Please give correct links to do the above.
    I have account on My Oracle Support.Pl see this MOS Doc
    Quick Reference to RDBMS Database Patchset Patch Numbers [ID 753736.1]
    2)Please give link to step by step procedure to do thisThe install process is the same as for 11.2.0.1 - http://docs.oracle.com/cd/E11882_01/install.112/e24186/toc.htm
    3)I want the database to have latest patchset as well.
    See the above MOS Doc - apply the latest PSU patch on top on 11.2.0.3.
    4)Also when I am going to do the install in new LIVE server, please give me the link for the fresh straight install to 11.2.0.3 without having to do twice as I have to do in test:(
    (I only realized later that i have to take link straight from my oracle support, but need to clarify the right link as it is for LIVE)
    See above MOS Doc
    Thanks&Regards..
    Edited by: Krithi on 05-Feb-2013 04:36HTH
    Srini

  • How to Navigate to Printable Page in 'same browser'

    Dear experts,
    Im using Jdeveloper 11.1.2.2
    I tried the following link to get Printable Page in 'same browser',but it is hard to identify the steps.
    (http://www.oracle.com/technetwork/developer-tools/adf/learnmore/95-printable-pages-1501392.pdf)
    Anyone have simple tutorial to do this work?
    Thanks
    Charith

    Hi,
    if you mean to show a printable page in the same browser window (replacing the current form) then
    1. add command button
    2. add af:showPrintablePageBehavior tag (drag and drop from "OPerations" tag in component palette
    Thats it. See also http://docs.oracle.com/cd/E26098_01/apirefs.1112/e17491/tagdoc/af_showPrintablePageBehavior.html
    Frank

  • HT2506 In pages how can I link text within the document? I can find a bookmark option and links only allows me to link to a web page

    Hi all,
    This is my first time using this discussion site! Any help would be great, as I am getting very frustrated with pages!
    What I am trying to do is link text at the bottom of a document to a page at the beginning of the document. I can't find a bookmark option adn when I clink insert link it only provides an options to link to a web page. Help! thanks

    Bookmarks are missing (sadly) and with them, the ability to create an in document link.
    I was looking for this feature in a Table of Contents. When you assign a 'style' to text in a document, you can Insert > Table of Contents. Then Pages will keep the TOC updated and you'll be able to 'link' from the page number in the TOC. (Not much help though, for the OP)

  • I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server wher

    I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server where the PDFs open fine) I get an error 'There was an error processing a page. Invalid function resource' The other one just doesn't open at all. Can anyone help with this please?

    Hello,
    Are the pdf linked correctly in the website? Is this a public website? If yes, please post the link here.
    ~Deepak

  • If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    OUtlook was already set as the mail client for FF, and is my operating system (XP)'s default mail programme. therefore problem not solved at all. what I get whenever I follow a link in a webpage to send an e-mail is a little pop up window asking me to sign in to gmail or open an account. any other suggestions?

  • With no "lock" or "HTTPS" showing up, how do I know in Safari if an online store is actually using a secure link when their web page makes that claim?

    With no "lock" or "HTTPS" showing up, how do I know in Safari if an online store is actually using a secure link when their web page makes that claim?

    The link in your example - https://www.gmx.com/ - is loading non- secure content from http://themes.googleusercontent.com/
    The lock will display only if everything on the page is secure - in this case it's not.
    As Safari has no way of knowing if theme.googleusercontent.com is going to be transmitting or receiving content that should be encrypted, then the overall page is in no way secure, and as such Safari won't display the lock icon.
    This is correct behaviour - it would be dangerous to users to identify pages as secure when they're clearly not.
    Reloading the page above uses cached copies of the fonts, thus no insecure connection is required on the reload. The issue in the link above (GMX) is not a Safari issue, just really bad web development by whomever built the site and mixed secure and insecure content.

Maybe you are looking for

  • Problem with Managed Server pointing to a different JDK

    Hi, My Adminserver is pointing to JDK 1.7 which is shown in the startup, but my managed servers are pointing to a different 1.6_43 . We are running into Java version mismatch problem while deploying our application built with jdk 1.7 onto these manag

  • USB Hard Drive no longer recognized after SW Update

    I just updated Cisco software and my external hard drive is no longer recognized by Cisco.  It is a Seagate drive that is listed on the Cisco tested - passed - approved list.  It worked prior to this update.  I have disconnected the drive.  Reconnect

  • How do I get all attributes set in Skin Editor to show up in generated output?

    Many of the modifications I have made in Skin Editor show on the project. The buttons in the Main Toolbar, however, appear to be set by the items I checked in WebHelp Settings, not the buttons I selected in the Skin Navigation section. Also, breadcru

  • Ending Inventory / Balnce using @Prior

    On 9.3.1 and my time dimension spans two dimensions (Periods and years). Measures in outline: Inventory (LabelOnly) ----OpeningInventory (store) ----Additions (store) ----Sales (store) ----EndingInventory (store) Years (labelOnly) ----2010 ----2011 -

  • Network shares browsing in XFCE

    Is there any way in doing this in arch? I was able to (of sorts) in Xubuntu with fusesmb and also found a little tool called pyneighborhood. I'd really like to stay in XFCE but this missing tool is rather annoying. It seems the thunar dev's don't car