CS6 ScriptUI Scrollbar issues

We're working on building a palette with a scrollbar. However, we're running into an issue with the display in CS6. We've gotten it to display correctly on Windows and Macs in previous versions of Bridge, but CS6 seems to have a bug even after the most recent update (version 5.0.1.21).
The scroll bar appears as below.
When we changed the dimensions of the scrollbar, we found that not only was the scrollbar distorted but it's actually oriented horizontally to control the vertical position.
We've tried nesting the scrollbar in a group or giving it a separate panel, as well as giving those panels and groups a specific column orientation, but nearly all of those results give us something like the following:
The following code was our last iteration that gives the above output:
#target bridge
if (BridgeTalk.appName == 'bridge')
    // dimension and font variables
   var fF = ['fill', 'fill'];
   var fT = ['fill', 'top'];
   var lblSize = [60, 15];
   var lblBounds = [5, 10, 60, 27];
   var etFont = ScriptUI.newFont ("Arial", 11);
   var etBounds = [10, 10, 200, 27];
    // Create the TabbedPalette object, of type "script"
    var tbPalette = new TabbedPalette( app.document, "CSU Metadata", "CSU_Metadata", "script", "right", "bottom");
    // Create a ScriptUI panel to be displayed as the tab contents.
    var panel = tbPalette.content.add('panel', "x:0, y:0, width:300, height:500", "");
    var tbPanelSbGrp = tbPalette.content.add('panel', "x:302, y:0, width:200, height:500", 0, 0, 20, 500);
    tbPanelSbGrp.orientation = 'column';
    var tbPanelSb = panel.add('scrollbar', "x:302, y:0, width:40, height:500");
    tbPanelSb.stepdelta = 10;
    tbPanelSb.jumpdelta = 40;
    tbPanelSb.onChanging = function() {
     var scrollVal = Math.round(this.value);
    this.value = scrollVal
Has anyone found a work around for this problem? I've seen the same problem mentioned elsewhere but without a solution:
http://www.ps-scripts.com/bb/viewtopic.php?f=9&t=4915
http://feedback.photoshop.com/photoshop_family/topics/extendscript_ui_not_drawing_correctl y_in_bridge?from_gsfn=true

I have given up on this.  More than a year has passed and the Bridge ScriptUI is still non-functional.  I am looking for another solution for my workflow so I can ditch Bridge/Photoshop and find a vendor that supports their products.

Similar Messages

  • Why does CS6 keep having issues with QT32 Server?? Im on a MAC and cannot uninstall QuickTime...

    This is not the first time that CS6 has had issues with the QT32 Server.
    When opening PP,  it stalls on ExporterQuicktimehost.bundle, same for AE and Encoder.
    How can i get rid of this issue!!!!

    No i don't. It seems to be connected with all the QT and h.264 codecs. But i need those codecs for my work...

  • Just tried to trial the Adobe Photoshop CS6 as having issues trying to use disks...

    Downloaded fine but no matter what version I try downloading I seem to get message setup.xml could not be loaded.  File corrupt?  Help please am no techie and been on it all morning using vista home basic service pack 2 if it helps?  Thanks.

    Will give the link a go, thankyou...
    Date: Fri, 9 Nov 2012 12:15:06 -0700
    From: [email protected]
    To: [email protected]
    Subject: Just tried to trial the Adobe Photoshop CS6 as having issues trying to use disks...
        Re: Just tried to trial the Adobe Photoshop CS6 as having issues trying to use disks...
        created by Jeff A Wright in Trial Download & Install FAQ - View the full discussion
    It is possible the download was corrupted.  You can try following the steps listed at http://forums.adobe.com/thread/981369 to initiate a direct download of the software.
         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 http://forums.adobe.com/message/4835721#4835721
         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: http://forums.adobe.com/message/4835721#4835721
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4835721#4835721. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Trial Download & Install FAQ by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Bridge open in Layers PS CS6/CC 2014-issue

    Hi there. I am currently using PS CC 2014 but still have PS CS6 an my HDD. As soon as I try to open several pics into layers from Bridge, CS6 NOT CC starts to do so...?!
    I have a 2012 MacBook Pro with Mavericks installed.

    Oh.
    As mostly the simpliest Answer ist the best.
    Of course I did NOT have Bridge CC installed. I must have assumed, it would
    be installed together with PS CC in a Bundle...
    Thank you very much
    Best
    2014-07-28 22:39 GMT+02:00 R_Kelly <[email protected]>:
        Bridge open in Layers PS CS6/CC 2014-issue  created by R_Kelly
    <https://forums.adobe.com/people/R_Kelly> in Photoshop for Beginners - View
    the full discussion <https://forums.adobe.com/message/6591821#6591821>

  • Need help with premiere pro cs6 having performance issues please help

    need help with premiere pro cs6 having performance issues please help

    Welcome to the forum.
    First thing that I would do would be to look at this Adobe KB Article to see if it helps.
    Next, I would try the tips in this ARTICLE.
    If that does not help, a Repair Install would definitely be in order.
    Good luck,
    Hunt

  • Ie scrollbar issue

    my internet explorer (mac) gives me unwanted scrollbars on my
    flash movie.
    i read this:
    http://blog.deconcept.com/2005/01/
    and tried the script at the end. basically in the style tag...
    html, body, div {
    height: 100%;
    overflow: hidden;
    this solves the scrollbar issue but my movie doesnt show up,
    screen is just black! (my background colour). it's fine in
    safari/firefox
    is there a better way of removing the scrollbars???
    cheers in advance.

    Hi,
    remove the overflow rules from the html element. The should be only applied to the document.body.
    these are the interoperative idioms to calculate the width and height of a viewport in a framed window.
    function getAvailHeight(){
    if(document.body && document.body.offsetHeight){return document.body.offsetHeight;}
    if(window.innerHeight){return window.innerHeight;}
    if(document.compatMode=='CSS1Compat' && document.documentElement && document.documentElement.offsetHeight){return document.documentElement.offsetHeight;}
    function getAvailWidth(){
    if(document.body && document.body.offsetWidth){return document.body.offsetWidth;}
    if(window.innerWidth){return window.innerWidth;}
    if(document.compatMode=='CSS1Compat' && document.documentElement && document.documentElement.offsetWidth){return document.documentElement.offsetWidth;}
    Regards.
    to avoid confusion please include a link to your website or mashup with your questions.
    Rob^_^

  • [PC / Mac] Modal vs. Non-modal ScriptUI windows issue

    Hi,
    in Photoshop ScriptUI 'dialog' Windows are supported (they're modal windows), while 'palette' Window's behavior is peculiar (they're non-modal, and as long as there's something going on in the script, they keep displaying - otherwise they automatically close). Apparently, this is different in InDesign (for instance), where palettes can stay idle - at least this is what I've been told.
    I've found a couple of workarounds to work with palette Windows (my goal is to show them in order to let the user interact with either PS and the script's GUI - just like you'd do with regular panels and extensions - that is: to work with them as non-modal, idle palettes that mimic extension behavior), namely:
    // usual Window stuff
    win.show()
    while (isDone === false) { // isDone is set true in win.onClose() etc.
      app.refresh();
    or
    var s2t = function(stringID) {
      return app.stringIDToTypeID(stringID);
    var waitForRedraw = function() {
      var d;
      d = new ActionDescriptor();
      d.putEnumerated(s2t('state'), s2t('state'), s2t('redrawComplete'));
      return executeAction(s2t('wait'), d, DialogModes.NO);
    // Window stuff
    while (isDone === false) { // isDone is set true in win.onClose() etc.
      waitForRedraw()
    The problem is as follows:
    1. They both work on Mac, either CS5 and CS6
    2. app.refresh() seems to work on PC + CS5, but not PC + CS6
    3. waitForRedraw() fails on both PC + CS5 and PC + CS6.
    Mind you: When I wrote that the workarounds fails in CS5 and/or CS6 on PC, I mean that the 'palette', idle windows are modal and not non-modal as it is on Mac (which is my main coding platform).
    [EDIT] Further testing has shown that PC palettes are... halfway between modal and non-modal. For instance, you can click on menus, but not select a Tool; you can collapse or drag a panel, but not access its content. You can't absolutely click on the image - for instance I'm desperately trying to enable panning on PC palettes: no way, you can't have the Hand tool to click&drag the image. For some reason, a "soft-scrolling" is enabled (on my MacBookPro, two fingers scrolling in all directions in the trackpad - but how to mimic this behavior in a desktop PC with no trackpad I don't know). Weirdly enough, the trackpad's "soft-scrolling" works in all directions on PC + CS5 64bits only, either CS5 @32bits, CS6 @32/64bits goes up and down only, no left/right allowed - frankly, to deal with platform-dependent issues is one thing, to take into account 32/64bits too is... ehm...
    So, to sum up there are big differences in the ScriptUI behavior depending on how platform and PS version are combined:
    PC, 'palette' Window:
    CS5 + waitForRedraw() = modal
    CS5 + app.refresh() =  non-modal
    CS6 + (app.refresh() OR waitForRedraw()) = modal
    Mac, 'palette' Window:
    (CS5 OR CS6) + (app.refresh() OR waitForRedraw()) = non-modal
    Is there any... "working workaround" to make on PC CS6 a 'palette' ScriptUI Window to keep a non-modal, idling behavior? (the unasked question is: why is that palettes are behaving as non-modal in CS5 and not in CS6?! )
    Thanks in advance!
    Davide
    Message was edited by: DBarranca - added blue text, further testing comparing 32/64bit versions

    In the meantime, I've published two posts either describing in detail my issues:
    ScriptUI Window in Photoshop - palette vs. dialog
    and testing a workaround:
    ScriptUI - BridgeTalk persistent window examples
    Hopefully they may be useful to others as well.
    Regards
    Davide

  • Problem with panelbox and af:table scrollbar issue and panelstretchlayout

    Hi,
    <af:panelStretchLayout >
    <f:facet name="center">
    <af:panelSplitter orientation="vertical" positionedFromEnd="true" inlineStyle="vertical-align:inherit;">
    <f:facet name="first">
    <af:subform default="false" id="xyz">
    <af:panelBox background="light" text="Advance Search" inlineStyle="color:InactiveCaption;" type="default">
    <af:panelGroupLayout layout="scroll">
    <af:commandButton text="Search" id="advSearch" actionListener="#{ADFStandardsLeftMenu.getAdvancedSearchData}"/>
    <af:spacer width="20"/>
    <af:commandLink text="Search Tips" id="searchtips2" inlineStyle="font-weight:bold;" partialSubmit="true" clientComponent="true">
    <af:showPopupBehavior triggerType="click" align="afterEnd" popupId="advSearchPopupId"/>
    </af:commandLink>
    </af:panelGroupLayout>
    </af:panelBox>
    </af:subform>
    </f:facet>
    <f:facet name="second">
    <af:panelBox background="light" text="Basic Search" inlineStyle="color:InactiveCaption;" type="default">
    <af:spacer height="20"/>
    <af:panelGroupLayout layout="scroll" >
    --- some inputtext command buttion, dropdowns...selectonechoice..are there inside this
    </af:panelGroupLayout>
    </af:panelBox>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    </af:panelStretchLayout>
    problem:
    (we have 2 panels) of vertical
    when i run this application it is working fine. But when we minimise the browser(half size) or if we add more no of toolbars in browser (important) obviously browser size will decrease,
    that time 1 panel getting decreased second panel is maintaing fixed size, not resizing.
    I tried to give fixed size (percentage) for both panels wt ever the operation does.
    and 2nd issue
    ========
    <af:panelStretchLayout>
    <f:facet name="center">
    <af:panelSplitter orientation="vertical"
    positionedFromEnd="true" >
    <af:panelBox background="light" text="Search For Standards" inlineStyle="color:InactiveCaption;vertical-align:50%;" >
    <af:table value="#{ADFStandardsLeftMenu.mostCommonAgencySelectedList}"
    id="t1" width="100%" var="stdURL"
    emptyText="<html><b><font color='red'><center>No Records Found</center></font></center></b></html>"
    disableColumnReordering="true"
    columnSelection="multiple"
    rowSelection="multiple"
    inlineStyle="text-align:left;"
    verticalGridVisible="true"
    horizontalGridVisible="true">
    <af:column>
    </af:column>
    ---- we have more 8-10 columns
    </af:table>
    </af:panelbox>
    </af:panelsplitter>
    </f:facet>
    </af:panelstretchlayout>
    problem: that time im getting by default horizontal and vertical scrollbar, but if user add toolbars in browser (view->customize)add toolbar no of say 10-15 that time window size decreasing
    so, table size is crossing panelbox size, and bottom scrollbar is not visible (hiding under site bottom layout say site is divided into 4 parts (leftmenu, body(2 panels), right, bottom) (im not using any right layout)
    regards,
    sandeep

    Hi,
    if minimises browser window(half) or by adding more no of toolbars, i given an option as panelgrouplayout layout=scroll.
    it is working fine for 1st panel.
    but 2nd panel scrollbar not coming.
    thanks in adv.
    regards,
    sandeep

  • Can't run the indicPreferences.js in InDesign CS6 and hyphenation issues with Malayalam

    I am not able to run the indicPreferences.js in InDesign CS6 in Mac OS X 10.10.2.
    But all the apple script is working fine, Also there is a red cross mark is seen next to the script icon (image attached)
    I am trying to use Malayalm Unicode fonts with InDesign and it is giving me lot of hyphenation issues, How can I make the text flow with proper spacing in between characters? is this normal when I use justify all?
    Suggest me a quick fix please.

    Which hyphenation dictionary are you using? I have found that in many languages, there is enough divergence in spelling that some words simply cannot be hyphenated, because the hyphenation dictionary expects one spelling and Every Single Speaker of X Language On The Planet expects another.
    Also, sometimes InDesign has a hard time recognizing a term typed with combining marks as the same word with precomposed characters.
    Lastly: Have you used the settings in the Hyphenation pane to try to force different breaks? I think that the default settings are not appropriate for Malayalam, and I would myself only hyphenate long words. So the default settings are, I think, to hyphenate no fewer than two letters away from a word boundary, in any word with more than five letters. I'd bump that up to words of no fewer than, perhaps, seven to nine letters? And increase the letters-from-word-boundary to 3 or 4. That way only long words get hyphenated.

  • Audition CS6 deleting/trimming issues

    Hi All,
    I'm experimenting with CS6 in an effort to replace Audition 3.0 which crashes all the time lately. I noticed that several features work different and I can't find the way to make them work correctly.
    - In waveform mode, if I trim a recorded audio file (e.g. cut the first few and the last few seconds of silence), CS6 deletes this time frame in the multitrack session also ("pulls" the file left), thus messing up the file's timing totally. Is there a solution to solve this? Audition 3.0 didn't work like this, and it is very annoying, completely makes impossible to fine-trimming the files. I tried to split the file in multitrack mode and then save it, but CS6 ignores this and leaves the file unchanged. I'm stuck with this problem and no matter what I flag or de-flag in the options, it won't go away. I simply want the program to delete the selected part in the editor mode and leave the rest of the file as it was and where it was timewise. Is it possible?
    - Also in waveform mode, if I save a recorded file on a different name, the program doesn't renames and changes the file in the multitrack session. In the file list the name changes, but I have to manually delete the old file and replace it with the new one in the session, which is simply ridiculous (again something that Audition 3.0 did well and CS6 does a stupid, illogical way). is there a chance to make the program do it as it should work?

    All the information you need about gathering the crash information is in the two FAQs I've linked below, and I'd be inclined to do what it says here before running the cleaner tool. The cleaner tool often clears up installation issues, but as the last line of the introduction says, 'It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.' Which means that it won't help you with specific crash situations. The information in the FAQs will, though:
    Audition Crashed.  Now what?
    steps to troubleshoot and get past common problems with Audition

  • Photoshop CS6 file permissions issue with file created with Photoshop CC

    In our studio we have several capture stations and work stations all connected to one file server. An issue occurs when a user of CC creates a file and saves it to the server and a user of CS6 opens the file. The CS6 user cannot save the changes he just made to the file that was created in CC. The CS6 user can do a Save As with no issue. There is also NO problem if the file that was created in CC is transferred to a new drive using the Finder in Mac OS X.
    Has anyone else had a similar issue or know of a solution?
    Here is a screen cap of the error:

    We have solved our issue.
    After running Adobe updates on machine that uses CS6 and then re-starting that machine, our issue seems to have disappeared.
    Hope this helps others.
    Best of luck.

  • Scrollbar issues in a Datalist

    I have a created a datalist with a horizontal scrollbar and associated left/right buttons. When I created the scrollbar I am making the thumb and track invisible so that only the left/right buttons are visible for navigation through the datalist. I don't think this matters for the issue I am experiencing though I thought I would mention it. When I run the project and click on the left/right buttons, the images/text I have placed in the datalist move a few pixels upon the first click, and then fully move to the proper position on the second click. I'm not sure why it would do this. I want the images/text to move to the proper position upon the first click of the left/right buttons. Right now it takes two clicks of the button to advance through the datalist. Any thoughts? Thanks in advance.
    Ryder

    Any information from folks who have experience with this would be great. Thanks

  • Saving down to Illustrator 10 EPS from CS6 and CC issues

    Hey All,
    Hearing from people in Forums (and personal experience) that CS6 and CC are both having issues saving down files to AI 10 EPS.  Currently CS5 can save an Illustrator file with effects like Drop Shadows and Transparencies and maintain those as vector elements when saved to AI 10 EPS.  CS6 and CC turn those elements into Raster graphic elements.  My work requires me to save files down to EPS 10.  Currently using both CS6 and CC for the many new features they offer.  Really don't want to go backwards! 
    Please pass along any info you have for this issue.
    Thanks!

    That's not an issue, that's just how things work.
    The gaussian blur has been redesigned form the ground up and is not downwards compatible any more.
    Gaussian blur is used in drop shadows, soft edges and glows as well.
    So if you need to save down to EPS 10 you need to use an older version than CS6.

  • Bc and dreamweaver cs6 site import issues

    - issues importing BC sites in Dreamweaver cs6
    - manage sites dialog, 
    - flash loader spinning,  "Retrieving site definition..." endlessly.

    Thanks Brad. It is happening only for the sites that aren't set up in the manager. the few that are (after a fresh os 10.6.8 install and a fresh cs6 install) are fine. The ones that aren't working are all the rest. So, about 4 that connect and show business catalyst as the "type" in the manager, 1 (my main rebraded partner site) that shows as type "dreamweaver" and then maybe 15 I can't import. The reason for the dreamweaver type is that I used the ftp creds to set it up so that I could use it rather thna letting dreamweaver sniff out the creds and serve up my login cred screen to tie it together. I only did that since I was desperate to edit. It's a workaround.
    I spent a long time on chat yesterday with Adobe Support.  Deleted prefs, deactivated dreamweaver, restarted, same issues. They filed a support ticket. I'll try to keep this updated if anyone else would like to know. As always, thanks for the help. - T

  • Illustration CS6 Registry Association Issues

    I have the CS6 Suite and I have been experiencing issues every time I start the application. I get a pop up message indicating the following: "Adobe Illustrator has detected some registry association issues, which need to be rectified for Illustrator to work properly. To fix this, right-click Illustrator.exe and select "Run as Administrator" to have the required privileges. Illustrator will attempt to correct this problem".
    Well... I have done just that and every time I start the application, I get that message. I have seen the same question, unanswered on the forum. So, I would really appreciate getting this issue fixed as it's becoming really anoying. I have never had issues with the previous version (CS5)... only since I have upgraded to CS6.
    Thanks for your support!
    Manon

    that is exactly what i did. I uninstalled the adobe cc illustrator and photoshop after i installed the new 2014 versions. and my extension manager won't upgrade either

Maybe you are looking for