Bridge ratings lost when switching to filter tab

I lose my ratings when I switch to the filter pane of bridge, This has happened after running all of the most current updates including reinstalling software. Editing twice on several thousand images is no fun. The ratings, stars, show up in the file but when switching to the sort by filter tab they vanish about every other edit. ???? Thanks

I apologize. I forgot to add the application details. I am using sqldeveloper version 1.5.0.52 build MAIN-52.03 using JDK 1.6.0_05 on a WinXP SP2 laptop.

Similar Messages

  • Dreamweaver 6.1 - JavaScript error when switching between open tabs

    When switching between open tabs a sequence of javascript
    errors occurs. I had not used Dreamweaver for about 2 weeks, and
    last time I used it with no problems.
    I have tried uninstalling it, OKing removal of all files when
    asked, re-installing it and updating with dwmx61_updater.exe, but I
    still get the same errors.
    This has rendered the software virtually unuseable, so any
    help would be greatly appreciated, as I'm working to a
    rapidly-approaching deadline.
    "While executing Browse_Back enabled in toolbars.xml, a
    JavaScript error occurred"
    followed by
    "While executing Browse_Forward enabled in toolbars.xml, a
    JavaScript error occurred"
    followed by
    "While executing Browse_Stop enabled in toolbars.xml, a
    JavaScript error occurred"
    The relevant code seems to be :
    <!-- Browser nav toolbar -->
    <toolbar id="Browser_Toolbar" platform="win"
    label="Browser Navigation" container="document"
    initiallyVisible="false">
    <button id="Browse_Back"
    image="Toolbars/images/MM/back.gif"
    disabledImage="Toolbars/images/MM/back_dis.gif"
    tooltip="Back"
    label="Back"
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('back')"
    command="dw.getDocumentDOM().browser.backPage()"
    update="onEveryIdle"/>
    <button id="Browse_Forward"
    image="Toolbars/images/MM/forward.gif"
    disabledImage="Toolbars/images/MM/forward_dis.gif"
    tooltip="Forward"
    label="Forward"
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('forward')"
    command="dw.getDocumentDOM().browser.forwardPage()"
    update="onEveryIdle"/>
    <button id="Browse_Stop"
    image="Toolbars/images/MM/stop.gif"
    disabledImage="Toolbars/images/MM/stop_dis.gif"
    tooltip="Stop"
    label="Stop"
    enabled="dw.getDocumentDOM().browser.getPageBusy()"
    command="dw.getDocumentDOM().browser.stopPage()"
    update="onBrowserPageBusyChange"/>
    <button id="Browse_Refresh"
    image="Toolbars/images/MM/browserRefresh.gif"
    tooltip="Refresh"
    label="Refresh"
    enabled="true"
    command="dw.getDocumentDOM().browser.refreshPage()"/>
    presumably the next error is caused by the previous ones
    failing :
    "While executing getCurrentValue in AddressURL.htm, a
    JavaScript error occurred"
    the relevan tcode :
    function getCurrentValue()
    var dom = dw.getDocumentDOM();
    var value = dom.browser.getURL();
    if (value && value.length)
    //check if is it not a temp file
    //extract the tail of the url
    var filename = value;
    var slashIndex = filename.lastIndexOf("/");
    filename = filename.substring(slashIndex+1);
    var tempIndex = filename.indexOf("TMP");
    if (tempIndex != 0)
    addRecentAddress(value);
    return value;

    You can try this simple fix -
    Quit DW.
    Find this folder -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "earthdoctor" <[email protected]> wrote in
    message
    news:[email protected]...
    > When switching between open tabs a sequence of
    javascript errors occurs. I
    > had
    > not used Dreamweaver for about 2 weeks, and last time I
    used it with no
    > problems.
    >
    > I have tried uninstalling it, OKing removal of all files
    when asked,
    > re-installing it and updating with dwmx61_updater.exe,
    but I still get the
    > same
    > errors.
    >
    > This has rendered the software virtually unuseable, so
    any help would be
    > greatly appreciated, as I'm working to a
    rapidly-approaching deadline.
    >
    >
    > "While executing Browse_Back enabled in toolbars.xml, a
    JavaScript error
    > occurred"
    > followed by
    > "While executing Browse_Forward enabled in toolbars.xml,
    a JavaScript
    > error
    > occurred"
    > followed by
    > "While executing Browse_Stop enabled in toolbars.xml, a
    JavaScript error
    > occurred"
    >
    > The relevant code seems to be :
    >
    > <!-- Browser nav toolbar -->
    >
    > <toolbar id="Browser_Toolbar" platform="win"
    label="Browser
    > Navigation"
    > container="document" initiallyVisible="false">
    >
    > <button id="Browse_Back"
    > image="Toolbars/images/MM/back.gif"
    > disabledImage="Toolbars/images/MM/back_dis.gif"
    > tooltip="Back"
    > label="Back"
    >
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('back')"
    > command="dw.getDocumentDOM().browser.backPage()"
    > update="onEveryIdle"/>
    >
    > <button id="Browse_Forward"
    > image="Toolbars/images/MM/forward.gif"
    > disabledImage="Toolbars/images/MM/forward_dis.gif"
    > tooltip="Forward"
    > label="Forward"
    >
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('forward')"
    > command="dw.getDocumentDOM().browser.forwardPage()"
    > update="onEveryIdle"/>
    >
    > <button id="Browse_Stop"
    > image="Toolbars/images/MM/stop.gif"
    > disabledImage="Toolbars/images/MM/stop_dis.gif"
    > tooltip="Stop"
    > label="Stop"
    > enabled="dw.getDocumentDOM().browser.getPageBusy()"
    > command="dw.getDocumentDOM().browser.stopPage()"
    > update="onBrowserPageBusyChange"/>
    >
    > <button id="Browse_Refresh"
    > image="Toolbars/images/MM/browserRefresh.gif"
    > tooltip="Refresh"
    > label="Refresh"
    > enabled="true"
    > command="dw.getDocumentDOM().browser.refreshPage()"/>
    >
    >
    >
    > presumably the next error is caused by the previous ones
    failing :
    >
    > "While executing getCurrentValue in AddressURL.htm, a
    JavaScript error
    > occurred"
    > the relevan tcode :
    >
    >
    > function getCurrentValue()
    > {
    > var dom = dw.getDocumentDOM();
    > var value = dom.browser.getURL();
    > if (value && value.length)
    > {
    > //check if is it not a temp file
    > //extract the tail of the url
    > var filename = value;
    > var slashIndex = filename.lastIndexOf("/");
    > filename = filename.substring(slashIndex+1);
    > var tempIndex = filename.indexOf("TMP");
    > if (tempIndex != 0)
    > {
    > addRecentAddress(value);
    > }
    > }
    > return value;
    > }
    >
    >

  • How to prevent video playback from getting paused when switching to another tab on Firefox for Android?

    In Firefox for Android 27.0, if you play video in one tab and while it's playing you switch to another tab, the video gets paused. I want the video to continue to play while I'm viewing another tab (so I can at least hear its sound!).
    How can I do that?
    How can I prevent Firefox for Android from pausing video playback when switching to another tab?
    Thank you very much.

    Hi hamid_ss,
    Currently Firefox for Android does this by default with embedded players. Some sites go automatically to full screen too which may be what you are running into. Try it.

  • Display lost when switching virtual consoles (xorg 1.12.1-1)

    Hi all,
    About a week ago I noticed that I will sometimes be left with a black screen when I switch between virtual consoles using Ctrl+Alt+F8, etc. The system is still running, and can be communicated with over the network, but, short of rebooting via ssh or killing X, there seems to be nothing I can do to get the screen working again. It seems especially common when switching between F7 and F8 (both graphical) but sometimes occurs when switching from a graphical to a text based console (F1-F6).
    I have downgraded from recent versions of xorg-server, xorg-server-common and the nvidia drivers to see if the problem would go away, but without success.
    Thanks for your thoughts!
    Last edited by conn-fused (2012-04-22 05:22:28)

    Well, many 20-nvidia-conf files later, the problem persists.
    Not only that, but the number of jumps between virtual consoles before failure seems to be perfectly consistent. I login as one user (a GUI session on tty7), then switch user to open a new GUI session on tty8. Now, (using Ctrl+Alt+F7 or F8, as appropriate), I switch back to the first user (enter a password because opening the new session locks the first one), switch back to the second user, back to the first, and then try switch back to the second ... and all is lost. The fifth switch fails: every ... single ... time.
    I'd appreciate it if someone else using an Nvidia card and the proprietary drivers would try this procedure and see if they too face the black screen after the fifth switch. If you do, it's not something I've misconfigured on my own, but an issue with a package (probably nvidia's) that I suppose I'll just have to wait for a fix for.
    Thanks!

  • EA1: BUG: View Table Data: Filter gets lost when switching tabs

    Hi,
    open a table, choose the data tab and enter a filter condition. The data is filtered.
    Bug is
    a) choose e.g. constraint tab for the same table and then again the data tab. Data remains filtered, but filter is not displayed
    b) pin the table, open another table, navigate back to the previous table. Data remains filtered, but filter is not displayed.
    Regards
    Stephan

    The issue was reported already and will probably be fixed in EA2...
    Regards,
    K.

  • Word Wrap Lost When Switching Between XML and Author Views

    I compose DITA topics in the XML view with the word wrap option selected. If I switch to the Author view to check something and then return to the XML view, my nicely formatted XML view with all the happy element-nesting tabs goes away. I wind up with an ugly chunk of flush-left code and text that's difficult to read. Is there a reason why FM can't remember the tabs and word wrap when I return to the XML view?
    I'm relatively new to using FM's structured side for DITA, so perhaps I'm missing the obvious solution to this problem. If you know the answer, I'd appreciate if you'd clue me in.
    Thanks!

    Sarah,
    When you switch from XML to Author (or WYSIWYG) view, FM does not "remember" the XML document at all. Instead, internally it creates a structured FM document with the same element structure (possibly modified by the underlying XML application). When you switch back to XML view, it creates a new XML document from the current element structure, thereby preserving any changes you made in Author View. FM is very conservative about writing white space to XML in order to avoid inserting unwanted significant space.
    If you do all your editing in XML View and want to inspect the formatted version of the document without making changes to white space, always make a copy of the XML document (with File > Save As) and use the copy in Author View.
    --Lynne

  • Monitor settings lost when switching user accounts.

    Hi! I just recently noticed that every time i switch user accounts, my monitor settings get corrupted.
    There are 2 user accounts in my ibook. One account is used for work while the other one is used for home purposes. The work account has a specific monitor setting which is calibrated to our workstations. The other account has default settings on it.
    My question is that when I switch users, the settings for my work account gets corrupted. I also can't change the settings without having to restart the book.
    I already repaired permissions and zapped the pram. The same thing still happens.
    Thanks in advance!

    Hello Chuck!
    I've had this problem too. Like you, I managed to navigate to do a restart, but nothing else would make the mouse cursor reappear.
    Bruce, I wasn't using Biggy, PinPoint or any of the other mouse visibility things, simply the magnification provided by System Preferences.
    I put it down to a fault on 10.4.4—a very buggy release— and haven't yet been able to reproduce it on 10.4.5.
    I suggest you send a fault report to Apple ([email protected]), explaining all the circumstances. Try always undoing the cursor zoom before switching users (yes, that's a pain too!!!). And if I manage to reproduce the problem, I promise I'll send in a fault report too!
    HTH
    Archie

  • After Effects CC not saving ram preview when switching to different tab.

    Okay so just recently upgraded to CC and have been experiencing some ram preview problems.
    What happens is I will do a ram preview, watch it, then switch to a different window (Chrome, word, etc)
    and when I go back to AE and do a ram preview it does it all over again even though i haven't changed anything in the comp.
    I dont believe this was a problem in CS5.
    Any help on what settings i should check or if its a coding problem would be appreciated.
    Some specs:
    16gb ddr3 ram
    AMD FX-6300
    Radeon R7 250
    Everything Program/Cache is on SSD and the project file/video files are on Ext HDD

    Okay it's kind of fixed. (it isnt deleting it like it used too)
    i cleared my cache which was about 30gb, but I still had about 20gb of free space when i cleared it
    but Now I am getting some crashes and other stuff (colored bars, i already read thats getting fixed though)
    Do you think lowering the CPUs used to 3 will help?
    Ill update if it does it again when the cache is getting close to full

  • PSE6 Star ratings lost when photos reconnected

    I recently lost all of my photos from my external hard drive (I had back ups of the original photos but not of PS files).
    The photos were all organised within albums, and had star ratings which remained in the catalogue although all files were missing.  I uploaded the original files again and reconnected to the catalogue, the albums have all remained but all the ratings have reverted to 0 - is this something I can restore somehow or will I have to go through them all again?

    I don't know the answer to your question, but in the future, you need to back up your PSE catalog file as well. It makes no sense to back up the photos and not back up the catalog file.

  • Sound is lost when switching from SD to HD

    I have this issue where I lose sound when I switch channels from SD to HD. I have Vizio VL420M. The issue is fixed temporarily when, either, I reset the HD STB or turn off TV and STB when on a HD channel. When I re-start the STB and TV, the sound comes back. Its been a week since installation but issue is not going away. According to Verizon it is a known issue in my neigbourhood so they won't give me new STB or send a technician.
    Do you think I have a faulty STB? Or I need to change some setting on the TV. I am connecting the STB to TV via HDMI cable.
    Solved!
    Go to Solution.

    Read this ... in particular, my instructions (written under the name "ravioli" during a time when I was temporarily unable to login to my account) on changing the audio settings on the STB.  This could be an HDMI handshake issue with it sensing the encoding technique it should be using for audio.
    http://forums.verizon.com/t5/FiOS-TV-Technical-Ass​istance/No-sound-on-HD-Channels/m-p/212632#M20815

  • YouTube fullscreen mode lost when switch to another window

    How can I save fullscreen mode in YouTube videos after swith to another window?

    Hi Serializable,
    Currently this is not possible. There is theater view however if you click on the theater button of Youtube.

  • Flash player reloads when switching javascript tabs

    When switch between javascript tabs ... the Flashplayer will reload contain, even when going back to a previously opened tab.
    IE and Chrome does not exhibit this behavior

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Filter is blank after switching to another tab and then back

    I perform a lot of filters using the data view for tables/views. However, when I switch to another tab (query editor) and then back to the data view, the filter is first executed (explanation in next sentence) and then blanked out. I was creating a filter and entered the string "<column_name> = '' " and then switched to a query editor to get the correct spelling of the value to fill in the quotes. When I switched back to the data view the filter had been executed using the null quotes (resulting in the previous values being lost) and then was blanked out. This gets a little annoying when a long filter is being built.

    I apologize. I forgot to add the application details. I am using sqldeveloper version 1.5.0.52 build MAIN-52.03 using JDK 1.6.0_05 on a WinXP SP2 laptop.

  • Bridge Filter Tab - Color Profile

    I have an iMac (Mountain Lion OS X
    10.8.4) Nikon NX2, Nikon
    D800E camera, and  Photoshop CS6. 
    Most of the 100 or so photos I
    have transferred to my Mac by (USB  and
    also card) are RAW NEF at approx. 40MB a file.    (Lossless compression)   Most all of these pictures  are in Color Space Adobe RGB, because that is
    what I set up on the camera. 
    When in Bridge  > Filter Tab > Color Profile >  [this says that the majority of the NEF
    photos , in the camera’s Color Profile Space of Adobe RGB, are not in this
    color space, but the color profile of “UNTAGGED!”  I’ve studied all the preferences and options of
    Bridge and I am not 100% that I know what to change so these photos will show
    in the color space I want them to and I don’t want to make a mistake by
    clicking something that I can’t undo so…
    How do I
    get these photos (which I guess are showing up in Bridge as sRGB color space)
    to show up in Adobe RGB.  And if I can
    change this, what could be the good or bad consequences of changing to Adobe
    RBG?
    There is
    also a Thumbnail  Option – “Generate 100%
    previews.  Will checking this  show the previews at 100%?  And what consequences does using this have?
    Thank You Very Much For Your Help,
    Thank You,
    Sandy

    I looked at my canon raw files and they also say untagged. So Apparently the color profile does not get saved in the side car file. Which maybe a good thing. The raw file is suppose to be your negative, in that it doesn't need any color profile until you do something with it in another file format that does support color profiles.
    The generate previews will use up more drive space to speed up previewing them. But in general, I never really needed it. So it boils down to what type of system do you have, ex. plenty of drive space, speed of cpu, amount of ram, etc.

  • Text converts to Myriad when switching between tabs

    I've had an ongoing problem since our office upgraded to Illustrator CC. I will select a line of text with the open arrow, copy it and switch to another tab to place it into another file. I hit paste and go back to the original tab. The text, still selected with the open arrow will lose its font spec and change to Myriad in front of my eyes. Undo does not fix it. It is as though the file has lost any idea of what the font had been, and in order to fix it, I need to reassign the font in the character palette, or go into the document I'd pasted it into and copy and paste it back into the original file.
    The consistent aspects of the this glitch are that the text has not been in a text box, the text is selected with the arrow – not highlighted, and I'm switching back and forth between tabs – not simply clicking out of Illustrator and back into it.
    This issue hasn't been repeatable when I've tried to show people in the office so I don't think uploading a file will help.
    It's driving me nuts and I've had to remember to hit save before switching to another tab, or always deselecting the text after copying and jumping to another tab. Very disruptive to my workflow, if I can even remember to do either of these things.

    Please temporarily disable your Avast extension to see if this has to do with this.
    Then try Firefox Safe Mode:
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

Maybe you are looking for