Chinese in keywords

Hi, seems like I'm having an issue inserting and using foreign characters - specifically Chinese characters - as keywords in LR 5.5. Is there an issue with LR and Adobe (referring specifically LR and Bridge) products in this regard?
Cheers - Rogan

You can specify a stoplist in Chinese. Please refer to the documentation for more information about the CTX_DDL.CREATE_STOPLIST procedure and for the Chinese lexer.

Similar Messages

  • Simplified Chinese search in RH9 is partial, non-existent in RH8

    I notice the adobe marketing literature states RH9 is fully searchable with simplified chinese character sets but my company's testing shows otherwise.  The search results do not pick up all keywords in the topics.  In fact, the search results are minimal to the reality of what is in the project.  I am not proficient in simplified chinese but my colleagues are and they assure me the feature is not usable for an online help delivery.  This is a let down for us because simplified chinese in RH8 did not yield any search results at all in RH8.  RH9 is a step forward but not god enough for delivery of a professional product.
    Another bug report to adobe is forthcoming.  Please advsie if you have similar or contrary experiences.  This is not a browser issue whatsoever so that argument won't qualify to address the problem.
    Thanks,

    Hi there
    Try this. Click Tools > Options... > File Association.
    Configure "Use Default Editor" as shown below.
    (You may need to click the image to view at full size)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Does the portal support chinese content search?

    I just installed iAS 1.0.2.2.1 on a 8.1.7 DB(with 8.1.7.1
    patch),and my DB character set is UTF8.
    But I found that the portal interMedia context searching could
    not find out the item by using chinese keyword,It only work use
    english keyword.so I just find the index only do the english
    index,not any chinese character.
    does Anybody try the chinese character to work in portal?

    This is not supported in the current release ..

  • Oracle Text for Traditional Chinese

    I would like to ask how can i specific keywords in Chinese and whenever i type sometimes in Chinese, the Oracle Text's token is indexed very interested and the stop word is definite not sometimes rational in Traditional Chinese. Anyone can help? (DR$xxx$I)

    You can specify a stoplist in Chinese. Please refer to the documentation for more information about the CTX_DDL.CREATE_STOPLIST procedure and for the Chinese lexer.

  • Problem deleting multiple keywords in lightroom 5

    I am importing about 20,000 pictures from Flickr. they are all creative commons, and the end result will be the use of approximately 4000 of these in an online sign language dictionary.
    I use Bulkr to import them and this process imports the tags as well as other information such as the photographers name and url.  Many of these photos arrive with hundreds of tags, so that the total number of tags might be 20000 or more.  I need to assign my own tags and delete all the tags that the photo arrived with.  I use the lightroom batch delete to do this (the little minus sign at the top of the keyword list).  i select a keyword, hold down the shift key and scroll down.  the problem is that i cannot just scroll down to the bottom of the list.  There appear to be unpredictable keywords that cause the shift-select process not to work.  if i scroll back up and then carefully scroll part of the way back down, then there will be a point at which shift-select stops working and above that it works. 
    The end result of this is that it takes numerous shift-select-scroll down-select to delete everything so that what should take maybe 2 minutes takes 20 minutes or more. 
    The problem may be related to foreign language keywords especially chinese characters, but even what looks like a perfectly ordinary keyword can stop it.  Two recent examples: travellers cheque  and Київ. In all cases, the words can be deleted when i click directly on them.  you just cant shift-select THROUGH them.
    A separate annoyance that i will just grumble about is that i was forced to put these pictures in a separate catalog because there is always the risk that i could manage to delete my own keywords while batch-deleting everyone elses, and there is no simple way that i know of to undo this. with the separate catalog at least i wont delete all the keywords for my own pictures.

    With respect to problems deleting multiple keywords: On Windows, since at least version 3, LR has had basic bugs when you have more than about 1600 keywords showing.  (Hard to believe it isn't fixed by now.)   A simple workaround for you situation is to filter the keywords one letter at a time and then select the subset of keywords that are showing -- e.g. filter all keywords with the letter "t", then all keywords with the letter "b", etc.
    With respect to not getting the keywords into your catalog in the first place: You can define a Metadata Preset that will clear the keywords on import:

  • How to display Chinese language?

    There is a plan text file: article.txt, this file includes an Chinese article (Chinese Language).
    The web server is English system.
    Now I use a jsp file to display the content of this file, I use BufferedReader class to read the content of the file, then display it.
    I use contentType="text/html;charset=gb2312" also, but it cannot display Chinese Character correctly.
    Can anyone tell me how to display it?

    Hi i am having the same problem....how did you do it...can please help me
    <pre>
    <%@ page import="java.util.*,java.io.*,java.text.*,java.sql.* " %>
    <%@ page language="java" contentType="text/html; charset=UTF-8" %>
    <% response.setContentType("text/html; charset=UTF-8"); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>
    </title>     
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />     
    <meta name="Generator" content="TextPad 4.0" />
    <meta name="Author" content="" />     
    <meta name="Keywords" content="" />     
    <meta name="Description" content="" />
    </head>
    <body bgcolor="#ffffff" background="" text="#000000" link="#ff0000" vlink="#800000" alink="#ff00ff">
    <%
    request.setCharacterEncoding("UTF-8");
    String str1 = "\u7528\u6237\u540d";
    String name = request.getParameter("name");
    if(name != null) {     
    // instead of setCharacterEncoding...     
    name = new String(name.getBytes("ISO8859_1"), "UTF-8");
    System.out.println(application.getRealPath("/"));
    System.out.println(application.getRealPath("/src"));
    %>
    req enc: <%= request.getCharacterEncoding() %>
    rsp enc: <%= response.getCharacterEncoding() %>
    str1: <%= str1 %>
    name: <%= name %>
    <%
    BufferedReader in = null;
    ArrayList str = new ArrayList(100);
    try {  
         in = new BufferedReader(new InputStreamReader( new FileInputStream("c:/Chinadescription\\coldtofu.txt"),"UTF-8"));
         String line;
         while ((line = in.readLine()) != null) {   
         line = line.trim(); //
         if (line.equals("[stop]"))
         break;
         str.add(line);
         finally {
         if (in != null) {  
         try {    
         in.close();
         catch (Exception e) {}
         for (int i = 0 ; i < str.size(); i++) out.println(str.get(i));
    %>
    <form method="GET" action="testcharacter.jsp" encoding="UTF-8">
    Name: <input type="text" name="name" value="" >
    <input type="submit" name="submit" value="Submit" />
    </form>
    </body>
    </html>
    </pre>

  • Recently, the language which was English ( united states) has changed to chinese . I have reinstalled  itunes for WINDOWS 7and the problem persists

    rECENTLY THE ITUNES language has changed from United states English to Chinese. I have reinstalled and it persists.tHis is for WINDOW 7

    Hi, welcome to Apple Support Communities.
    Start iTunes. Second menu keyword at the top-left will be Edit. Click this and then click the last item on the menu that drops down which is Preferences. The left-most tab is General and last control on the tab is Language. Click the drop-down, select English UK or English US which should be the 8th & 9th items respectively, click OK. Close iTunes, reopen.
    tt2

  • Chinese websites, how to convert to english

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/910069]]</blockquote>
    How do you convert Chinese to English on Chinese websites. IE8 does this automatically

    Some extensions that you can look at:
    *FoxLingo: https://addons.mozilla.org/firefox/addon/foxlingo-translator-dictionary/
    *ImTranslator: https://addons.mozilla.org/firefox/addon/imtranslator/
    Or use the Google Translate site with a keyword bookmark:
    *http://translate.google.com/translate?hl=en&sl=auto&tl=en&u=%s

  • Cannot type Traditional Chinese

    I am using the newest version of Firefox for android. I cannot type the Traditional Chinese correctly in any banks in the browser. it is quite inconvenient when using the Google search engine for searching Chinese keywords.
    My device is Sony Xperia Z . Thank you for your help.

    I am using the default Sony keyboard. I type the Traditional Chinese by the method of Stroke (CJKV character), which is called "筆劃" in Chinese.
    Actually, I found the same problem in my Samsung Galaxy Note 10.1.
    Thank you for your help.

  • Endeca commerce 3.1.1 can't support Chinese segmentation also?

    Dear experts:
    I am do a PoC base on the sample discover project. After specifiy the language to Chinese,I can only search the chinese content between Punctuations, take a long description of a product for example,
    优质性能
    品质画面: 在QVGA分辨率(640×480像素,软件增强)捕捉清晰的视频和图像.
    品质声音: 使用耳机享受清晰,层次分明的谈话。无需购买额外的设备.
    便利的
    支持流行的即时消息应用程序: 是进行Skype™视频理想伴侣的.
    通用管理面板:: 轻松安装在任何类型的显示器或笔记本电脑.
    I can only get this product by searching the keyword '优质性能' not '优质'
    Any of your response will be very appreciated.
    what I have configured is:
    For data source:
    I changed the property 'product.long_desc' of first one record to chinese and load it to MDEX by baseline_update and promote_content (can read it from the web application)
    For Forge:
    specify the encoding of source data to UTF-8 and specify the per-property language ID for property 'product.long_disc' in the Forge pipeline.
    For Digdx
    specify the language in DataIngest.xml as below:
    - <dgidx id="Dgidx" host-id="ITLHost">
    - <properties>
    <property name="numLogBackups" value="10" />
    <property name="numIndexBackups" value="3" />
    </properties>
    - <args>
    <arg>-v</arg>
    <arg>--compoundDimSearch</arg>
    <arg>--lang</arg>
    <arg>zh-CN</arg>
    </args>
    <log-dir>./logs/dgidxs/Dgidx</log-dir>
    <input-dir>./data/forge_output</input-dir>
    <output-dir>./data/dgidx_output</output-dir>
    <temp-dir>./data/temp</temp-dir>
    <run-aspell>true</run-aspell>
    </dgidx>
    </spr:beans>
    and add the file Disvover.spell_config.xml with below content:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE SPELL_CONFIG SYSTEM "spell_config.dtd">
    <SPELL_CONFIG>
    <SPELL_ENGINE>
    <DICT_PER_LANGUAGE>
    <ESPELL/>
    </DICT_PER_LANGUAGE>
    </SPELL_ENGINE>
    </SPELL_CONFIG>
    For the Dgraph:
    specify the language in DgraphDefaults.xml as below:
    - <dgraph-defaults>
    - <properties>
    <property name="srcIndexDir" value="./data/dgidx_output" />
    <property name="srcIndexHostId" value="ITLHost" />
    <property name="srcPartialsDir" value="./data/partials/forge_output" />
    <property name="srcPartialsHostId" value="ITLHost" />
    <property name="srcCumulativePartialsDir" value="./data/partials/cumulative_partials" />
    <property name="srcCumulativePartialsHostId" value="ITLHost" />
    <property name="srcDgraphConfigDir" value="./data/workbench/dgraph_config" />
    <property name="srcDgraphConfigHostId" value="ITLHost" />
    <property name="numLogBackups" value="10" />
    <property name="shutdownTimeout" value="30" />
    <property name="numIdleSecondsAfterStop" value="0" />
    </properties>
    - <directories>
    <directory name="localIndexDir">./data/dgraphs/local_dgraph_input</directory>
    <directory name="localCumulativePartialsDir">./data/dgraphs/local_cumulative_partials</directory>
    <directory name="localDgraphConfigDir">./data/dgraphs/local_dgraph_config</directory>
    </directories>
    - <args>
    <arg>--threads</arg>
    <arg>2</arg>
    <arg>--whymatch</arg>
    <arg>--spl</arg>
    <arg>--dym</arg>
    <arg>--dym_hthresh</arg>
    <arg>5</arg>
    <arg>--dym_nsug</arg>
    <arg>3</arg>
    <arg>--stat-abins</arg>
    <arg>--lang</arg>
    <arg>zh-CN</arg>
    </args>
    <startup-timeout>120</startup-timeout>
    </dgraph-defaults>
    </spr:beans>
    Best Regards
    Vicky
    what I have configured is:
    For data source:
    I changed the property 'product.long_desc' of first one record to chinese and load it to MDEX by baseline_update and promote_content (can read it from the web application)
    For Forge:
    specify the encoding of source data to UTF-8 and specify the per-property language ID for property 'product.long_disc' in the Forge pipeline.
    For Digdx
    specify the language in DataIngest.xml as below:
    - <dgidx id="Dgidx" host-id="ITLHost">
    - <properties>
    <property name="numLogBackups" value="10" />
    <property name="numIndexBackups" value="3" />
    </properties>
    - <args>
    <arg>-v</arg>
    <arg>--compoundDimSearch</arg>
    <arg>--lang</arg>
    <arg>zh-CN</arg>
    </args>
    <log-dir>./logs/dgidxs/Dgidx</log-dir>
    <input-dir>./data/forge_output</input-dir>
    <output-dir>./data/dgidx_output</output-dir>
    <temp-dir>./data/temp</temp-dir>
    <run-aspell>true</run-aspell>
    </dgidx>
    </spr:beans>
    and add the file Disvover.spell_config.xml with below content:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE SPELL_CONFIG SYSTEM "spell_config.dtd">
    <SPELL_CONFIG>
    <SPELL_ENGINE>
    <DICT_PER_LANGUAGE>
    <ESPELL/>
    </DICT_PER_LANGUAGE>
    </SPELL_ENGINE>
    </SPELL_CONFIG>
    For the Dgraph:
    specify the language in DgraphDefaults.xml as below:
    - <dgraph-defaults>
    - <properties>
    <property name="srcIndexDir" value="./data/dgidx_output" />
    <property name="srcIndexHostId" value="ITLHost" />
    <property name="srcPartialsDir" value="./data/partials/forge_output" />
    <property name="srcPartialsHostId" value="ITLHost" />
    <property name="srcCumulativePartialsDir" value="./data/partials/cumulative_partials" />
    <property name="srcCumulativePartialsHostId" value="ITLHost" />
    <property name="srcDgraphConfigDir" value="./data/workbench/dgraph_config" />
    <property name="srcDgraphConfigHostId" value="ITLHost" />
    <property name="numLogBackups" value="10" />
    <property name="shutdownTimeout" value="30" />
    <property name="numIdleSecondsAfterStop" value="0" />
    </properties>
    - <directories>
    <directory name="localIndexDir">./data/dgraphs/local_dgraph_input</directory>
    <directory name="localCumulativePartialsDir">./data/dgraphs/local_cumulative_partials</directory>
    <directory name="localDgraphConfigDir">./data/dgraphs/local_dgraph_config</directory>
    </directories>
    - <args>
    <arg>--threads</arg>
    <arg>2</arg>
    <arg>--whymatch</arg>
    <arg>--spl</arg>
    <arg>--dym</arg>
    <arg>--dym_hthresh</arg>
    <arg>5</arg>
    <arg>--dym_nsug</arg>
    <arg>3</arg>
    <arg>--stat-abins</arg>
    <arg>--lang</arg>
    <arg>zh-CN</arg>
    </args>
    <startup-timeout>120</startup-timeout>
    </dgraph-defaults>
    </spr:beans>
    Best regards
    Vicky

    Hi
    I can't see anything wrong with your configuration - I'd recommend you raise an SR at support.oracle.com for this.
    Michael

  • [Caution] Why Chinese language after OTA update

    Dear All
    Recently we collected many issues that some customers complained about only able to choose Chinese and English or boot stuck . After communicated with different individuals, we found that most of them have flashed the image which is only designed for China Mainland Lenovo smartphone. Wrong image installation will also cause the WiFi connectivity, network or SIM register issues.
    Hence,
                           Think TWICE before flashing your phone with the China Mainland image
    Chinese version image always contains the words such  "VIBE UI","Chinese" while the non-China image contains KEYWORD "ROW".
    If your phones have been flashed with the wrong ones , you need to re-install your phone version at the service center.
    Regards

    Thanks to Wang for the observation and recommendation.
    All,
    In short, when you table your question in the forum, it would be good to tell your build number and whether the image is the original one or not. It is very tough troubleshoot without these information.
    Thanks!
    Best regards,
    Cleo
    WW Social Media
    T61, T410, x240, Z500, Flex 14
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    How to send a private message? --> Check out this article.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Easy way to add a single keyword to an image?

    I just organized a bunch of photos I took at a birthday party, and ran into some <br />awkwardness when keywording.  Hopefully it's just user ignorance, but if not, <br />maybe someone can offer a workaround.<br /><br />I did the import with no keywords, because I wasn't thinking.  Once I'd done <br />that, I selected all images in the "Last Import", hit Ctrl-K, and typed Birthday <br />(which is one of my standard keywords).  Then I deselected all images and <br />started doing selective keywording.  That's where it started getting awkward.<br /><br />I had several shots that had my son in them, so I selected all of them and hit <br />Ctrl-K.  This put my cursor in the keyword box in the right-side panel, with <br />Birthday highlighted.  I hit <End>, then typed comma and MySonsName.  No problem <br />so far.<br /><br />I delselected the shots and selected the ones that had my daughter in them.  The <br />right-side keyword panel now showed something like "Birthday*, MySonsName*".  I <br />wasn't sure whether I could just add MyDaughtersName to the images without <br />actually adding MySonsName to all selected images (even those without my son in <br />them).  That's the awkward part.<br /><br />What I found was that in order to add a single keyword to a bunch of images at <br />once, I had to enable Keyword Stamping and use that.  An alternative was to "Set <br />Keyword Shortcut", enter the keyword, select the images I wanted, and then use <br />"K" to add the shortcutted keyword to the images.<br /><br />Is there any way to simply say "add this keyword to all selected images" in one <br />atomic action?  In other words, hit a keystroke, type the keyword, hit Enter, <br />and it's now applied to all selected images.<br /><br />-- <br />Rob Freundlich<br />"Males ae biologically driven to go out and hunt giraffes." - Newt Gingrich<br />"Some folks you don't have to satirize, you just quote 'em." - Tom Paxton

    <[email protected]> wrote in message <br />news:[email protected]..<br />> In the right hand keyword pane the list should show something like "birthday, <br />> *sonsname". The * means that the keyword isn't<br />>applied to all the images.<br />><br />> To add your daughter's name to the selected images, just add it to the end of <br />> the list and press return. As long as you don't<br />>remove the * you won't apply your son's name to all the images. if you do <br />>remove the *, then you will.<br /><br />Sweet.  I'm a programmer, so I thought the * meant multiple images, not "not all <br />images", so I didn't even think of trying that.  Works like a charm, though.<br /><br />Thanks!<br /><br />-- <br />Rob Freundlich<br />"Males ae biologically driven to go out and hunt giraffes." - Newt Gingrich<br />"Some folks you don't have to satirize, you just quote 'em." - Tom Paxton

  • Lightroom Upgrade at a client - sucess? - keyword problem deal breaker

    Hi
    Just a small report, on how upgrading a client's LR 2 catalog went.
    Background: The client is a professional photographer specialized on garden photography. Her customers are gardening and lifestyle magazines who publish her photos regularly as illustrations to various articles. She has a professional Canon EOS 1Ds MK III equipment and shoots exclusively raw. In a shoot around 300 to 1000 images are shot. The Lightroom catalog has around 20,000 images currently.
    In Lightroom she uses mostly DAM and some basic development features, images are delivered either as raw of as JPEG images to the clients. Keywording is especially important. She has an extensive hierarchical list of plants most of them multiword keywords with spaces, and lots of other keywords indicating if images were sent to clients and other stuff.
    The upgrade went just very well. I exported the catalog to a new intermediate catalog without previews, installed LR3 and imported this intermediate catalog into LR3 generating new previews from scratch. The hardware is modest, and some functional tests (especially switching images in develop, spot tool, and adjustment brushes) revealed that everything performs well enough.
    Then she asked me where she would have benefits from using the new version. And then I told the whole benefit story, which can be read everywhere.
    - New process version, better details and noise reduction. She asked where she can see it? Hmm, I switched to 1:1 view changing the process versions, not really much to see on Canon 1Ds Mk III files. Even with noisier files, it was hard to tell, what has actually changed. So only a 4:1 view very tiny changes were visible. The impact on her business? Near to nothing as she does not print large. The differences would hardly be seen in the magazine prints.
    - Lens corrections and perspective control: does not really matter in garden photography, but she could see some occasional usefullness.
    - Publish services: no real need for it
    - Print packages: nope
    - Slightshow improvements: no use for it
    - Performance improvements: nothing visible
    - Effects: completely superfluous
    - New import dialog: at first glance a hindereance, as she has to get used to it
    Then she asked: did they correct the keyword handling, when entering keywords witrh spaces? (You know the nasty bug, where keyword completion is broken at keywords with spaces). We checked (I knew it wasn't fixed), and of course she was heavily disappointed. Thus, after 2 years of development nothing new for her, keyword bug not fixed? Of course she said, that I should tell her, when keyword completion works, then and only then would she consider an upgrade.
    So, despite all the bells and whistles about the new version, I doubt that for many photographers the benefits are really so overwhelming in the real world. It is a pitty that Adobe continues to neglect the DAM features (some fresh ideas for client management would be great), that existing features aren't consequently implemented (esp. the possibilities to query the catalog, and keywording), and that existing bugs are constantly ignored and not fixed.
    So, please Adobe, get keyword completion fixed for keywords with spaces immediately !!! This is what professionals need. A catalog without reliable DAM features, renders the catalog concept to a great extend useless. Please listen!
    Disclaimer: As I am not a professional for me the situation is not the same. I just report my experience I had, with a photgrapher, who needs a proper asset management. I recommended Lightroom to her because of the overall package (she moved from Cumulus), so I feel a little obliged to help her in this issue. In my case, as a user of a modest Lumix G camera system, I would consider the IQ benefits more signifcant. I don't know, if this is a general observation.
    Kind regards
    Thomas

    W.W. Webster wrote:
    tgutgu wrote:
    Just a small report, on how upgrading a client's LR 2 catalog went ...
    So, please Adobe, get keyword completion fixed for keywords with spaces immediately !!! This is what professionals need. A catalog without reliable DAM features, renders the catalog concept to a great extend (sic) useless. Please listen!
    I just report my experience I had, with a photgrapher (sic), who needs a (sic) proper asset management.
    So the over-riding conclusion from your experience with just one photographer is that Lightroom is 'useless', and this compels you to demand, in bold type, that Adobe must listen?
    That Lightroom has issues and areas for ongoing development is obvious, and Adobe won't dispute this.  But rants like yours add nothing and are unhelpful.  Julie's response is extremely tactful and far more moderate than your post deserves.
    Dear Mr. Webster
    I think when you post, you should definitely change your tone. Julie simply answered my original post by acknowledging the problem, your accusation that I did not use appropriate "netiquette" is ridiculous. Posts like yours are a real problem of this forum.
    I simply gave a user story example to show that not for everybody the shiny advertised new features provide real benefits and that paying attention to a thorough implementation of features can be equally important. I think Julie has recognized this. And the issue is nothing for ongoing developments. Lightroom supports keywords with spaces, so it has to be done consequently. Keywording is essential for DAM. If keywording gets too tedious or leads to wrong keyword assignments, then DAM is really pointless.
    The intention of my post was to point Adobe to an apparently small problem, which has quite a big impact to people, who depend on good DAM features. The issue is nothing new, existed since the first release of Lightroom, but nothing was done about it, unfortunately. Now that Lightroom addressed keywords with spaces even with a new preference setting, it was fair to assume, that they had done something about it with care. This isn't so obviously. The issue was discussed in previous threads, but did not get any visible notice from Adobe. I am glad that this has changed now with Julie's post.
    In no way did I say that Lightroom is useless or even that I regard it to be so. I merely said that the catalog concept is to a great extend (not completely) useless, if its implementation is sloppy. DAM starts with data entry and only after doing this, you can use it to your benefit. Therefore it has to be efficient, which currently is not. Lightroom is criticized by a large number of users that it is forcing them into a catalog system instead of just providing access to the file system. Long existing bugs like this, likely proves them right in their view.
    The competition (I mean complete workflow solutions) is not really better than Lightroom with respect to DAM features, however, my take is, that the developers should be equally ambitious with the quality of the catalog system as they are with IQ, especially if the achievements in IQ are apparently less relevant to owners of high end camera systems. (I could be wrong with the last statement, but it would be interesting to hear if others have similar observations).
    Kind regards
    Thomas
    Thomas

  • Does Bridge only Filter/Search Keywords in one folder at a time?

    It seems the "Filter" feature in CS6 Bridge will only search keywords in a single opened folder. What if I have multiple folders for image downloads, one per day, in a parent folder for the month, or even a year? Can I use Bridge to filter images in a folder containing other folders?
    If not, is there another search strategy I can use to quickly filter images in multiple folders? Thanks.

    You can select a root folder, and then select Show Items from Subfolders from the View menu. That adds all contained files to the Content panel, from which you can filter.
    If you need more control, you can use Find instead, where you can also do AND/OR operations too, but takes a little more patience.

  • Window 8.1 Chinese character cannot display properly in a game even though I have downloaded and install all chinese language packs

    Hi,
    The operation system for my computer is Window 8.1. I am currently trying to install a chinese game. Even though I have downloaded and install all the chinese language pack, I have even set the regional language locale to chinese (similified / traditional),
    the chinese characters will not display properly in the game. Some people told me i need to set the locale to Chinese PRC, but I am not sure where to download this PRC language pack for window 8.1 (as I only have chinese simplified and chinese traditional).
    I would greatly appreciate if someone can give me a hand in solving this problem. Thank you for your help in advance. 

    Hi,
    The operation system for my computer is Window 8.1. I am currently trying to install a chinese game. Even though I have downloaded and install all the chinese language pack, I have even set the regional language locale to chinese (similified / traditional),
    the chinese characters will not display properly in the game. Some people told me i need to set the locale to Chinese PRC, but I am not sure where to download this PRC language pack for window 8.1 (as I only have chinese simplified and chinese traditional).
    I would greatly appreciate if someone can give me a hand in solving this problem. Thank you for your help in advance. 
    Hi,
    Please open Region, under administrative -> Language for non-Unicode programs: choose Chinese.
    Kate Li
    TechNet Community Support

Maybe you are looking for

  • AppServer 8 fails to start: ping failed

    I have spent the last two days with my laptop at home working with the JSC. I have worked through all the tutorials, and everything works great!... At home... I get to my office this morning, and now JSC will not work - the AppServer will not start.

  • Is there any way to re install Mac OS X 10.7.0

    The 10.7.5 update has killed my computer and while trying to get to my time machine backup (which stopped working after the update), I saved files which made my backups disappear. The only solution is to start over with 10.7, but I cannot get a copy

  • Preview crashes when starting up

    trying to open either a jpg or pdf... ===== Friday, May 18, 2007 4:38:24 PM America/Phoenix ===== dyld: Library not loaded: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit Referenced from: /System

  • What is the use of variant in the alv report

    hello all, what is the use of variant in the alv report

  • Export to desktop?

    Hello, Am just experimenting with the online digital publishing and have noticed they is an Export button underneath the Publish button (screenshot below illustrates what i'm on about) is it possible to export a folio online to my desktop? if so how