Javascript  Flyout Menu Misbehaving in IE

Hi all.
The site I am working on is http://www.43rdstnorfolk.com/
I'm pretty good with the html, but a new to javascript. Can anyone offer recommendations as to why my flyout menu is inactive in older versions of IE? Also, in newer versions, I think I need to somehow affect the z-index to solve location issues.
These issues are a little tricky because I don't have easy access to IE.
Any words of wisdom would be appreciated.
Thanks very much,
Mary

I guess what I'm wondering is, if I am trying to create a site that is cross compatible (IE friendly), should I not be using javascript?

Similar Messages

  • Spry Vertical Navigation menu with secondary flyout menu not showing

    I'm using Windows and CS3. I have a vertical spry menu with one of the items opening to a secondary vertical menu. The menu is positioned left and I want the flyout menu to open so it can be seen on top of the central content column. I have a background color on the central div and when I hover over the item on the menu bar, you can't see the secondary menu opening. But I know it is there as I have removed the central div and when previewed in the browser (IE) it works fine. But when I replace the central div, the secondary menu is hidden again. I don't want to play around too much as I know Javascript is involved and I can easily ruin those elements which are now working. I hope someone can suggest something reasonably straight forward to assist.
    The code is the standard stuff - I have only modified colours basicall with one or two other tweaks to fit the space:
    ul.MenuBarVertical
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 200px;
    background-color: #979c9c;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-bottom-width: 1px;
    border-bottom-color: #FFFFFF;
    ul.MenuBarActive
    z-index: 1000;
    ul.MenuBarVertical li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 200px;
    color: #343642;
    ul.MenuBarVertical ul
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: absolute;
    z-index: 1020;
    cursor: default;
    width: 200px;
    left: -1000em;
    top: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 100%;
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
    left: 0;
    ul.MenuBarVertical ul li
    width: 200px;
    ul.MenuBarVertical ul
    ul.MenuBarVertical a
    display: block;
    cursor: pointer;
    background-color: #979c9c;
    color: #343642;
    text-decoration: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    background-color: #343642;
    color: #fff;
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
    background-color: #343642;
    color: #fff;
    ul.MenuBarVertical a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    ul.MenuBarVertical iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    @media screen, projection
    ul.MenuBarVertical li.MenuBarItemIE
      display: inline;
      f\loat: left;
      background: #FFF;
    Thanks.

    Frank,
    The code that you have shown us re SpryMenuBarVertical.css is correct so that we can assume that the problem lies elsewhere.
    Because you have not shown the rest of the code, we can only make assumptions which may or may not help. From the above screen shot, I see that you are using AP's (Absolute Positioned) elements. This is a NO NO!!!
    Have a look at the following wich achieves the same, but without AP's. Just copy and paste in a new document and view in any browser.
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
        margin: 0;
        padding: 0;
    html {
        height: 100%;
        background: #FFC;
    body {
        width: 960px;
        margin: auto;
        background: #060;
    h1, h2, h3, p {
        margin: 0 20px;
    #header {
        height: 95px;
        background: #060;
    #sidebarL {
        width: 160px;
        float: left;
        color: #CCC;
    #content {
        width: 800px;
        float: left;
        background: #FFF;
    #sidebarR {
        width: 200px;
        float: right;
        background: #FF3;
    #footer {
        height: 50px;
        background: #060;
        color: #CCC;
        clear: both;
    </style>
    </head>
    <body>
    <div id="header"><h1>This is my Header</h1></div>
    <div id="sidebarL">
      <h3>This is my sidebar</h3>
      <p>This is where our menu goes</p>
    </div>
    <div id="content">
      <div id="sidebarR">
          <h3>This is my other sidebar</h3>
        <p>Sed do eiusmod tempor incididunt ullamco laboris nisi velit esse cillum dolore. Duis aute irure dolor sunt in culpa lorem ipsum dolor sit amet. Qui officia deserunt consectetur adipisicing elit, ut enim ad minim veniam.</p>
      </div>
        <h2>This is the content</h2>
      <p>Velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, ullamco laboris nisi sed do eiusmod tempor incididunt. Ut labore et dolore magna aliqua. Sunt in culpa in reprehenderit in voluptate ut aliquip ex ea commodo consequat.</p>
      <p>Duis aute irure dolor quis nostrud exercitation lorem ipsum dolor sit amet. Ullamco laboris nisi consectetur adipisicing elit, qui officia deserunt. Ut labore et dolore magna aliqua. Quis nostrud exercitation. Velit esse cillum dolore ut aliquip ex ea commodo consequat.</p>
      <p>Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut enim ad minim veniam. Eu fugiat nulla pariatur. Duis aute irure dolor sunt in culpa lorem ipsum dolor sit amet. Cupidatat non proident, excepteur sint occaecat velit esse cillum dolore.</p>
    </div>
    <div id="footer"><p>and lastly here is my footer</p></div>
    </body>
    </html>
    Gramps

  • Photoshop CC video: Where is the audio flyout menu? I want to set the audio level of a clip but when I click the little triangle the flyout only offers Motion options, no audio.

    I created a video clip by ripping from a (non-protected) DVD & brought it into Photoshop CC for editing. I want the audio to fade in & out but cannot find any audio controls!
    The info I've found online says to click the little triangle at the right end of the clip & I should get the audio flyout menu, but all I get is a menu with "Motion" options.
    Please help!! Where are the audio options I see on the tutorials?
    Thanks ...

    The audio was indeed in there; I could hear it! But I found the fix:
    Some Googling revealed that the timeline video sprites should appear *blue*, not purple as in my screenshot. I'm not sure how that happened, but I scrapped the project & restarted from scratch - and though I can't say what I did differently, this time the video sprite in the timeline was blue, and the audio flyout was there! So it's all good, thanks!

  • Making a javascript jump menu post the parameter value to a jsp

    I have got a HTML page with a javascript jump menu on it which is intended to post the user selected parameter to a jsp. However I do not know how to get the jump menu to post the data in the same way that it is done with a submit button. I don't want to use a submit button, hence the jump menu. Does anyone have an example that they can let me use.
    function jumpPage(form) {
    i = form.SelectMenu.selectedIndex;
    if (i == 0) return;
    window.location.href = url[i+1];
    document.writeln('<FORM><SELECT NAME="SelectMenu" onChange="jumpPage(this.form)">');
    This bit of Javascript just opens the selected window but submits no data to it.
    Any help is greatly appreciated.

    In order to get your data passed through to your second page via parameters, you must do one of two things.
    1) Actually submit the document. Since you don't want a submit button, you can accomplish this with document.form.submit(). However, you must specify a URL in the "action" attribute of your form tag.
    2) Construct the URL with the parameters listed in it. (ie. myJSP.jps?user=foo&password=bar ). This is not too bad if you've only got a few parameters... rather tedious for more than a few.
    What situation are you in where there are multiple parameters to pass with a Quick Jump setup? Usually, all you need to do is determine which page they need to head to, and simply forward. If there are other fields in your form, an automatically forwarding Quick Jump is potentially problematic, since they could select that field before filling out other necessary fields... just something to think about.

  • Need help making javascript thumbnail gallery function in javascript tab menu

    Hello all,
    I have implemented a css/javascript tab menu on one of my html pages thanks to Chris Coyier (http://css-tricks.com/learning-jquery-fading-menu-replacing-content/), and within one of the tabs, which I labeled GALLERY, I am trying to place a thumbnail gallery curtosy of Trent (http://www.twospy.com/galleriffic/).
    Before trying to place it in the menu, I made the gallery on a seperate html page to make sure that I could get it to work.  It does. But when I place it in the menu it shows up on page load under the content of the first tab (labeled TOUR) and not in the gallery tab.  In addition, once I click on the "gallery" tab the other tabs stop showing their content.  I feel like I am missing something obvious. But I just can't figure out what.  If anyone can help I would greatly appreciate it.
    Thanks,
    Natalie
    Below is the code of my whole page:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Tour template</title>
    <!--TABS-->
    <link rel="stylesheet" type="text/css" href="MenuFader/style.css">
    <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>
    <script type="text/javascript">
            $(function(){
                $("#tour-button").css({
                    opacity: 0.3
                $("#gallery-button").css({
                    opacity: 0.3
                $("#page-wrap div.button").click(function(){
                    $clicked = $(this);
                    // if the button is not already "transformed" AND is not animated
                    if ($clicked.css("opacity") != "1" && $clicked.is(":not(animated)")) {
                        $clicked.animate({
                            opacity: 1,
                            borderWidth: 5
                        }, 600 );
                        // each button div MUST have a "xx-button" and the target div must have an id "xx"
                        var idToLoad = $clicked.attr("id").split('-');
                        //we search trough the content for the visible div and we fade it out
                        $("#contents").find("div:visible").fadeOut("fast", function(){
                            //once the fade out is completed, we start to fade in the right div
                            $(this).parent().find("#"+idToLoad[0]).fadeIn();
                    //we reset the other buttons to default style
                    $clicked.siblings(".button").animate({
                        opacity: 0.5,
                        borderWidth: 1
                    }, 600 );
    </script>
    <!--End Tabs-->
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <style type="text/css">
    <!--
    #realtor panel {
        width: 1000px;
    body {
        background-color: #282828;
        margin: 0px;
    .style4 {color: #A1A1A1}
    -->
    </style>
    <!-- InstanceBeginEditable name="Gallery" -->
    <title>Example tour page</title>
    <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>
    <script type="text/javascript" src="Gallery/js/jquery.galleriffic.js"></script>
    <script type="text/javascript" src="Gallery/js/jquery.opacityrollover.js"></script>
    <script type="text/javascript">
                document.write('<style>.noscript { display: none; }</style>');
    </script>
    <link rel="stylesheet" type="text/css" href="Gallery/css/galleriffic-2.css">
    <link rel="stylesheet" type="text/css" href="Gallery/css/basic.css">
    <!-- InstanceEndEditable -->
    </head>
    <!-- InstanceBeginEditable name="body" -->
    <body>
    <div id="realtor panel"><table width="100%" border="0">
      <tr>
        <td width="18%"> <div align="center"></div></td>
        <td width="82%"> </td>
      </tr>
    </table>
    </div>
    <div id="page-wrap">
            <div id="tour-button" class="button">
                <img src="MenuFader/images/TOUR.png" alt="tour" class="button" />
            </div>
            <div id="gallery-button" class="button">
                <img src="MenuFader/images/GALLERY.png" alt="property gallery" class="button" />
            </div>
            <div id="info-button" class="button">
                <img src="MenuFader/images/INFO.png" alt="info" class="button" />
            </div>
            <div id="specs-button" class="button">
                <img src="MenuFader/images/SPECS.png" alt="specs" class="button" />
            </div>
            <div class="clear"></div>
      <div id="contents">
        <div id="tour">
          <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','1270','height','443','src','swf files/Tudor Arms interative floor plan','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','swf files/Tudor Arms interative floor plan' ); //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="1270" height="443">
            <param name="movie" value="swf files/Tudor Arms interative floor plan.swf" />
            <param name="quality" value="high" />
            <embed src="swf files/Tudor Arms interative floor plan.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1270" height="443"></embed>
          </object></noscript>
        </div>
        <div id="property gallery">
             <div id="container">
                    <div id="gallery" class="content">
                        <div id="controls" class="controls"></div>
                        <div class="slideshow-container">
                            <div id="slideshow" class="slideshow"></div>
                        </div>
                    </div>
                    <div id="thumbs" class="navigation">
                        <ul class="thumbs noscript">
                            <li>
                                <a class="thumb" href="Gallery/images/example/apt entrance1.jpg">
                                <img src="Gallery/images/example/Tudor thumbs/apt face1.jpg" alt="apt entrance1" />
                                </a>
                           </li>
                          <li>
                                <a class="thumb" href="Gallery/images/example/apt entrance2.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/apt face2.jpg" alt="apt entrance2" />
                                </a>
                          </li>
                          <li>
                                 <a class="thumb" href="Gallery/images/example/apt entrance3.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/apt face3.jpg" alt="apt entrance3" />
                              </a>
                          </li>   
                            <li>
                                 <a class="thumb" href="Gallery/images/example/apt sign.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/apt sign.jpg"  alt="apt sign" />
                              </a>
                          </li>
                          <li>
                                 <a class="thumb" href="Gallery/images/example/entryway1.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/entry.jpg" alt="entry" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/living room1.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/living1.jpg"  alt="living1" />
                              </a>
                          </li>
                           <li>
                                 <a class="thumb" href="Gallery/images/example/living room2.jpg" >
                                 <img src="Gallery/images/example/Tudor thumbs/living2.jpg" alt="living3" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/living room3.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/living3.jpg"  alt="living3" />
                              </a>
                          </li>
                          <li>
                                 <a class="thumb" href="Gallery/images/example/dining1.jpg" >
                                 <img src="Gallery/images/example/Tudor thumbs/dining1.jpg"  alt="dining1" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/Dining2.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/dining2.jpg"  alt="dining2" />
                              </a>
                          </li>
                          <li>
                                 <a class="thumb" href="Gallery/images/example/dining3.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/dining3.jpg" alt="dining3" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/Kitchen1.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/kitchen1.jpg"  alt="kitchen1" />
                              </a>
                          </li>
                          <li>
                                 <a class="thumb" href="Gallery/images/example/Kitchen2.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/kitchen2.jpg" alt="kitchen2" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/bedroom1.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/bed1.jpg"  alt="bed1" />
                              </a>
                          </li>
                           <li>
                                 <a class="thumb" href="Gallery/images/example/bedroom2.jpg">
                                <img src="Gallery/images/example/Tudor thumbs/bed2.jpg"  alt="bed2" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/bedroom3.jpg" >
                                <img src="Gallery/images/example/Tudor thumbs/bed3.jpg"  alt="bed3" />
                              </a>
                          </li>
                            <li>
                                 <a class="thumb" href="Gallery/images/example/bathroom.jpg">
                                <img src="Gallery/images/example/Tudor thumbs/bath.jpg"  alt="bath" />
                              </a>
                            </li>
                        </ul>
                    </div>
                <div style="clear: both;"></div>
            </div>
        </div>
        <div id="info">
            <p class="style4">Content for info</p>
        </div>
        <div id="specs">
            <p class="style4">This content is for specs.</p>
        </div>
      </div>
    </div>
    <!--script for gallery-->
    <script type="text/javascript">
                jQuery(document).ready(function($) {
                    // We only want these styles applied when javascript is enabled
                    $('div.navigation').css({'width' : '400px', 'float' : 'left'});
                    $('div.content').css('display', 'block');
                    // Initially set opacity on thumbs and add
                    // additional styling for hover effect on thumbs
                    var onMouseOutOpacity = 0.67;
                    $('#thumbs ul.thumbs li').opacityrollover({
                        mouseOutOpacity:   onMouseOutOpacity,
                        mouseOverOpacity:  1.0,
                        fadeSpeed:         'fast',
                        exemptionSelector: '.selected'
                    // Initialize Advanced Galleriffic Gallery
                    var gallery = $('#thumbs').galleriffic({
                        delay:                     2500,
                        numThumbs:                 15,
                        preloadAhead:              10,
                        enableTopPager:            true,
                        enableBottomPager:         true,
                        maxPagesToShow:            7,
                        imageContainerSel:         '#slideshow',
                        controlsContainerSel:      '#controls',
                        captionContainerSel:       '#caption',
                        loadingContainerSel:       '#loading',
                        renderSSControls:          true,
                        renderNavControls:         true,
                        playLinkText:              'Play Slideshow',
                        pauseLinkText:             'Pause Slideshow',
                        prevLinkText:              '&lsaquo; Previous Photo',
                        nextLinkText:              'Next Photo &rsaquo;',
                        nextPageLinkText:          'Next &rsaquo;',
                        prevPageLinkText:          '&lsaquo; Prev',
                        enableHistory:             false,
                        autoStart:                 false,
                        syncTransitions:           true,
                        defaultTransitionDuration: 900,
                        onSlideChange:             function(prevIndex, nextIndex) {
                            // 'this' refers to the gallery, which is an extension of $('#thumbs')
                            this.find('ul.thumbs').children()
                                .eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
                                .eq(nextIndex).fadeTo('fast', 1.0);
                        onPageTransitionOut:       function(callback) {
                            this.fadeTo('fast', 0.0, callback);
                        onPageTransitionIn:        function() {
                            this.fadeTo('fast', 1.0);
    </script>  
    </body>
    <!-- InstanceEndEditable -->
    <!-- InstanceEnd --></html>

    Sure thing:
    http://www.acresllc.net/TA501001.html

  • Tools Panel Flyout menu automatically opens

    Hi, guys. I'm sorry if this has already been answered (I searched (the forum and the Internet), checked the stickies, and looked through this forum.) I found a solution for Windows but not for Mac.
    I'm using Photoshop CS4 Extended on a 2010 MacBook Pro with Mac OS X 10.6.4 and when I click (left click on mouse or physical click on trackpad) any of the tools on the (left) tool bar the hidden tools/flyout menu automatically opens, then I have to select the tool from the menu or click to close it before continuing my work. However, if I single finger tap (not click), it works as I expect (no flyout menu). Is there a way that I can fix this so that when I click (left click on mouse or physical click on trackpad) on a tool, the tool selects and the flyout menu doesn't open until you hold down the mouse/trackpad physical button. (The way it should be/originally was)
    Ex.
    Now: Click the Lasso tool > lasso menu opens (lasso, polygonal, magnetic) > select lasso > work
    Was/What I'd like: Click the Lasso tool > default lasso becomes selected > begin work
    Thanks in advance for any help, I really appreciate it.

    How is slower dragging an improvement? What do we need to do to not make our workflow slower, or at least as fast as it was 10 years ago? Or are we looking at slower processes for the other tools, too, and will it soon take us a minute to draw a circle?

  • HELP: Javascript dropdown menu

    Hi all,
    i am currently developing a website which is all ready to be
    uploaded but
    cant because of a javascript dropdown menu.. I have a flash
    slideshow in the
    center and on the rightside are 6 images (mainlinks) one
    below the other.
    Some of these mainlinks have sublinks which need to be
    displayed as
    dropdowns. The dropdown needs to be as Javascript for easy
    future
    changes/additions and not in flash.
    I visited many websites - javascripts.com / simplythebest /
    dynamicdrive
    /hotscripts and many other sites..but failed to find a
    suitable, easily
    editable and compatible script..
    REQUIREMENT -
    1) dropdown menu on image Mousever
    2) The script should have/allow to set the respective x,y
    (left,top) values
    which some scripts lack.
    3) Compatible for IE and Firefox
    The only 1 compatible and easy editable script i had was
    mm_menu by Andy
    Finnell. But sadly the script is missing something and giving
    errors.
    PLEEASE HELP//
    thanx

    if you're using flash 8 you can use the externalinterface
    class. otherwise, the best you can do is very much browser
    dependent.

  • How to Keep Custom Brushes in the Brush Panel Flyout Menu?

    So I have a set of brushes that I mostly commonly use. However, I still use other brushes on occasion. When I load those brushes, my custom brush set doesn't stay in the flyout menu and I have no choice but to find the brush file and reload it. Every time.
    It's getting to be a pain in the butt, so I'm wondering if there is a way to permanently keep your custom brush set in the flyout menu of the brush panel I've attached a screen shot in case what I wanted wasn't quite clear! I want my custom brushes to go where the green area is point.
    Also I'm running a Japanese version of PS, but I'm pretty sure almost all the menu places remain the same. I translated some of the menu (although it might not be the exact same as the US CS6, but if you give me instructions, I'm pretty sure I can figure it out!)

    Thanks! You're a life saver
    iPhoneから送信
    2014/10/31 16:16、R_Kelly <[email protected]> のメッセージ:
    How to Keep Custom Brushes in the Brush Panel Flyout Menu?
    created by R_Kelly in Photoshop General Discussion - View the full discussion
    Looks like you using mac os x?
    There are two places you can put your brush presets file:
    1. /Macintosh HD /Applications/Adobe Photoshop CS6/Presets/Brushes
    2. /Users/User Name/Library/Application Support/Adobe/Adobe Photoshop CS6/Presets/Brushes
    The difference is that the ones in the cs6 application folder show in your red area and the ones in the library show up below the red area with a separator line
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6886054#6886054
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • ACR and the Custom Settings option on the flyout menu...

    I am currently running the trial of CS4 to see if its worthy of my hard earned cash. I normally run CS3 and an old version of ACR (4.4.1) specifically for the reason that I can mass process a group of images by using the Custom Settings option in the flyout menu. (Select a file, adjust it, export it, select another or 10 from the same group, hit Custom Settings, and viola, all now have the same adjustments)
    Every ACR 'update' since that one took this option away from me.
    So, here's my quandary... Keep CS3 (and my hard earned $'s) using the old ACR... or figure out how to replace the quick adjustment options I had in CS3 with the New-and-Ever-So-Wonderful CS4...
    Any ideas?
    Thanks in advance!
    Dan

    You can open hundreds of files in ACR, slect and adjust the first one, choose sunchronize and apply the adjustment to all open files.  Try looking at the tutorials on AdobeTV etc, and
    here's some essential reading for you [CLICK HERE] .
    PS—I have no stake in whether you upgrade or not.

  • Javascript dropdown menu

    Hi,
    I found a javascript dropdown menu that does what i need for
    this product. I have InterakT for PHP etc but this was to be used
    for a html page only.
    The first dropdown menu gives a few options and of course the
    seconf menu populates from the option of the first.
    What it doesn't do and what I need is that the choice from
    the second menu automically goes to another URL or file path when
    chosen.
    I have attached the code for you to look at please. It's a
    free code so I think its ok to edit it.
    If you can either edit one of the options to go to a url when
    chosen so I can see how it works, or if you have an alternative
    solution, I would appreciate it.
    Cheers

    if you're using flash 8 you can use the externalinterface
    class. otherwise, the best you can do is very much browser
    dependent.

  • Brushes flyout menu

    I was wondering how to get downloaded brushes to show up in the flyout menu. I'm able to get them listed in the swatch, but not on the menu itself. Any ideas would be awesome. Thank you.

    That's not where the Save Brushes command points to by default, that's the location for the brushes that come installed by default with the 32bit version of Photoshop. The correct folder for user brushes for vista+cs4 is this one: c:\Users\<username>\AppData\Roaming\Adobe\Adobe Photoshop CS4\Presets\Brushes\
    You'll probably have to show the hidden files to see that folder:
    http://windows.microsoft.com/en-US/windows-vista/Show-hidden-files

  • HELP: Odd flyout menu issue

    I've suddenly started experiencing an odd system issue. When clicking on anything, I get a little flyout menu that normally would appear when you would option+click on an item. This will happen when clicking on a link on a webpage; sometimes when clicking on an item in the dock I will also get this flyout menu asking if I want to open that program, a new window, etc.
    I can't figure out what I've done to have this start happening...but it's really annoying!
    Can anyone help?

    I believe it's CONTROL+click and not OPTION+click. Press CONTROL and see if that turns things off. Alternatively, try the OPTION or CMD keys.

  • Illustrator CS6 bucket tool has disappeared -- there is no flyout menu on the gradient tool

    This happened suddenly. I've closed and restarted Illustrator several times. Still no paint bucket tool / flyout menu on gradient tool. Any advice?

    Try the Shape Builder tool. Click and hold until the options appear.

  • Mobile flyout menu opens from the wrong side (left to right)

    Hi,
    I'm using this flyout menu by  Muse engineers:
    http://blogs.adobe.com/muse/2013/02/11/create-super-widgets-in-muse-the-mobile-flyout-menu /
    Something strange: my menu doesn't open as smartly as in the sample. It appears from left to right instead of right to left. WTF??
    Obviously, the effect is not the same.
    Is it possible to control it?
    Thanks
    -Paco

    If you animated the start then animate the end. Simple as that.

  • Javascript tree menu not working in portal

    We are evaluating the possiblity of providing javascript tree menu in a portal page, which should work in both IE and Netscape browsers. The javasript tree menu ("COOLjsTree" at http://javascript.cooldev.com/) is working properly in all the browsers when accessed directly as a simple jsp file from the server. But when we create a java portlet of the same jsp file and try to access it from all the browsers, we are not able to see the menu in Netscape 4.75, while it is fuctioning properly in IE 5 and above and Netscape 6 and above.
    We have gone through the note:136120.1 on Supported browser versions for oracle portal.
    The question is why is the javascript not working when put as a portlet in portal on Netscape 4.75, whereas the same piece of code works properly on Netscape 4.75 when accessed as a simple jsp file?
    We want to achieve this functionality and any help/clarification on this particular issue would be greatly appreciated.
    Regards
    Vikram

    I had a similar problem using a different Javascript menu. If you take a look at the HTML generated by the portal and break it down into smaller sections you may find the HTML that is causing your Javascript not to load. It's a tedious task, but not all Javascript is the same. Note, if your javascript is using or manipulating the <div> tag. It must be relative positioned to an image or div or you may run into the problem of the javscript loading and displaying relative to the browser as opposed to your portlets.
    Laith E.H.

Maybe you are looking for

  • Down Payment Balance

    My scenario is as follows: down payment received of $ 1000 Invoice I issued of $200 Invoice II issued of $300 AND allocated to down payment open AR + down payments should show: Down payment (balance)   -700$ (= down payment less invoice II allocated)

  • Script - Paste a Group into a TextFrame

    Very similar to my last question here - http://forums.adobe.com/message/4167532 In Indesign desktop I can copy and paste a group inside a text frame - obviously this can't be done in Indesign server. I have tried looking at the duplicate and move met

  • Display last value from a row or column?

    I'm using Numbers 09 and want to display the last value entered in a column in another table. For example in Table A I have columns set up by date with simple sums at the bottom of each column. I add new sums every day depending on the values from th

  • IOracle Security Alert for CVE-2012-1675 Released April 30th, 2012.

    Kinldy let me know how ill I down load the patch for this . Currently we have Oracle DB on versions 10.2.0.4, 10.1.0 , 11.2.0.3 in RAC. Do we need to apply the patch for all these databases. I have no applied any patches after Oracle is installed , C

  • Can a footnote be spread over two pages

    I dislike having footnotes always keeping together in a block, and shifting to the page following the footnote reference marker in the text. (And it is very problematic to fix this for each individual case especially over a book of 900 pages.) Is the