Cancel / OK buttons non - English

Hi all

As well known when a dialogue button string is 'OK' or 'Cancel' the default action occurs (1 is returned for OK and 2 to cancel)

Is this true for non English versions of Indesign?

I assume we will say on the German version of InDesign on the built-in dialog boxes, see the terms OK and Abbrechen but cancel a job? And out of curiosity "Abbrechen" does work?

var w = new Window('dialog'),
    b1 = w.add('button', undefined, "OK"),
    b2 = w.add('button', undefined, "Cancel");
alert((w.show() == 1) ? "OK" : "Cancel");

Thank you

Trevor

Hi Trevor,

My guess is that the help of the string OK or cancel the text property

probably not going to work for non-English localizations. (Can someone

confirm this? Uwe?)

The way to make sure that it works, however, is to use the Name property

(this is a property of creation) as opposed to the Text property.

If you do this, you can use both names Special OK, Cancel and I

think it will work in any location:

B2 = w.add ('button', undefined, "Cancel");

Ariel

Tags: InDesign

Similar Questions

  • Custom skins in Non-English projects

    I have a custom skin that when used in non-English projects, it omits characters in the buttons for contents and Index. I have not create the skin so I did not Flash. Any suggestions on how to fix the buttons to display the missing characters?

    If she is no longer with the company and she has been using Flash, would it by any chance a Flash corporate license which you could take over...?

    Rick has referred to as the LNG file, that exist in the source files and output files. Do copy and paste with the source versions. (Release version is replaced from the source version each time.)

    If the suggestion of Rick does not work, the only other thing I can think of would be to check that the .fla themselves Flash files. The person who changed files may have done something for the fields of dynamic text for the button labels. If you can get a copy of Flash, you could check two things on the label text field button (double-click the object Label twice to get to this point):

    1 see if "Use device fonts" is selected in a drop-down list on the left side of the properties panel. This selection will not let you embed the fonts. If it is enabled, try rather #2 below. If it isn't, select it, export the movie and put it in your output files.

    2. change "Use device fonts" to "Anti-alias for animation." Click on Embed. Select all the options with the Latin inside and click OK. Export a movie and put it in your output files.

    Note that you need to do this for each button that does not properly display the characters.

    Hope this helps,

    Ben

  • How can I filter (send to trash) all non-English messages?

    I have an overload of Oriental languages (Chinese) and Slavonic language (Russian or similar) emails.
    I have a perfect world Thunderbird could filter all the non-English messages in my trash folder or block them.
    Anyone have any ideas?
    Thank you

    ... filter them before they reach even my Inbox.

    Next, you need to filter on the server. For example, Gmail offers a pretty good spam filter. Or you can use a third-party software running on your PC, filtering your mail before Thunderbird it is.
    Both would be outside the scope of this forum.

  • Text symbol non-English chat

    Non-English letters used in a received message not displayed correctly.

    Tools-> Options-> IM & SMS-> appearance IM.

    Change font Segoe UI by default.

  • Cancel TitleBar button

    I checked all the bbui guides but they all refer to a "back" button.

    I have a back button as in the actionbar, which is good, that it should be there.

    I'm looking for a button cancel titlebar, when I press this button, it should ignore anything and simply go back to the first screen (in my case is this home.html).

    Example:

    This: data-bb-back-caption = 'Cancel' will always return a back page, which should not be because it is where I have a "back" button for.

    I already have the onactionclick in use so I can't use it anymore.

    Oh I got another question, is there a way to detect if the application is closed or put in the active frame?

    And how do I make a link that goes directly to my BBM (clickable) channel? (app is already connected to bbm)

    Within BBUI, the back button upper-left for the title bars is not customizable. You * might * be able to override the default click behavior by setting an onclick function, either using the Web Inspector to determine the ID of the element (after BBUI made his page processing), then setting a Manager click on this element directly (i.e. within the ondomready function), but the framework itself is not set up to do this you will need to hack around. BBUI is designed to follow the interface instructions user and the guideilne for the Cancel/back button in the upper left corner is to return to the page previous (just like the previous button in the action bar.)

    You can use the windowstatechanged API to determine state changes:

    https://developer.BlackBerry.com/HTML5/APIs/beta/blackberry_app_windowstatechanged.html

    However, if the application closes, it will not wait for JavaScript finish what it runs. So, if your, for example, to record data on minimize them and the user then closes the application until the registration is completed, you can have data stored at the half.

    You can call your channel BBM using the framework of the call as shown here:

    https://developer.BlackBerry.com/HTML5/documentation/beta/BBM.html

    To do this, you are actually executing JavaScript, so you will need to associate a click with the link manager and trigger the Invocation code for your BBM channel.

  • Extracting columns with non-English characters?

    Hello

    I have a query using SQL Developer on a table that contains several names of companies from different countries, and is one of the controls I should do to ensure consistency of data to find all the rows that the company name contains special or non-English characters (such as c, a, as example).

    I don't know what can I use to do this. I tried to gather using NLS_SORT, but it did not work.

    Is there a way to select only the lines that contain these special characters or non-English, excluding the results the lines containing only English characters? Please have in mind that we have a lot of languages in this table.

    The area that I would like to make the conditions is VARCHAR2.

    Please let me know if there is any additional information I should give you so that you can help me.

    Thanks in advance for the help.

    Kind regards
    Luis

    Just list all characters that or not special for you, use something like

    with test as
    (
    select 'Behringer Harvard Eldridge Venture, LLC' txt from dual
    union select 'Behringer Harvard Redwood, LLC' from dual
    union select 'Behringer Harvard Lovers Lane Venture I, LLC' from dual
    union select 'Atlas Pipeline Mid-Continent KansOK, LLC' from dual
    union select 'AB JÄRNBJÖRNEN' from dual
    union select 'FRONTBILAR I GÖTEBORG AB' from dual
    union select 'ARANDA HERMANOS MUEBLERÍA, S.A. DE C.V.' from dual
    )
    select *
    from test
    where translate( txt, chr(0) || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,- ', chr(0) ) is not null
    
  • How to read/select only the records from a table with non-English characters

    Hello
    I need to find all records in a table with non-English (mainly Chinese) characters in at least one of the varchar2 columns. Let me kow if someone knows a way by which it can be done using SQL/PLSQL.

    Best regards
    Imran
    select * from your table
    where your_column != convert(your_column, 'UTF8', 'US7ASCII)
    

    Replace UTF8 with your database character set

    Published by: thtsang on October 15, 2009 03:53 - unequal sign change of! =

  • Removing the non-English characters

    Hello
    I'm trying to define a regular expression that helps me to replace the non-English of a string characters.
    For example:
    BESANÇON
    and I need to get something like: BESANÇON, or BESAN * IT.

    Could someone give me some advice?
    Max has.

    You can use the convert function:

    SELECT CONVERT('BESANÇON','US7ASCII')
    FROM dual;
    
    CONVERT(
    --------
    BESANCON
    1 row selected.
    
  • Download text files with non-English characters

    I use an Apex page to download text files. Can I retrieve the contents of the wwv_flow_files.blob_content files and convert them into varchar2 with utl_raw.cast_to_varchar2, but the characters like o, to, u become garbage.

    What could be the problem? Characters lost when files are stored in wwv_flow_files or when I do the conversion?

    Some other info:
    * I don't see wwv_flow_files. DAD_CHARSET has the value 'ascii', wwv_flow_files. FILE_CHARSET is null.
    * Try utl_raw.cast_to_varchar2 (utl_raw.cast_to_raw ('aoeu')) returns "aoeu" correctly;
    * NLS_CHARACTERSET setting is AL32UTF8 (not only English ASCII)

    Hello

    Take a look at the csv upload - suggestion required with characters non-English in the csv file , it might help you.

    Thank you
    Manish

  • Why the 'Cancel loading' button is not placeable right next to the button "reload page"?

    Hi people,

    I have a quite unusual question with Nightly build 15.0a1 for Windows x 64 (x 64).
    I can't place the button to cancel loading a Web page next to the page reload button - everywhere else, it is possible to place, but not in this exact spot. If I do, it becomes visible in the wizard of customization but not in normal display mode. In normal mode, it is visible when placed on other places.

    This is how it works.

    You must place something in the space between the button Reload and Stop seeing them as two separate buttons or switch otherwise the two buttons.

    • Set the "Reload - Stop" order for a combined "Stop/Reload" button.
    • Set the order of 'Stop - Reload' or separate them otherwise (space or separator) for two separate buttons.
  • Why Firefox spell-check using non-English and American spelling.

    Everytime I type something and use a word that can be spelled differently in English and American, Firefox always pointed out my spelling English red, which means that the spelling is incorrect when it is not incorrect, it highlights the fact that I should use the spelling American. for example '

    When I type COLOR which is the English spelling, it is highlighted in red.

    If I type COLOR it is pointed out that he said is correct but it's the American spelling and I don't want to use the American spelling.

    That's why Firefox uses the American spelling and I DON'T WANT my emails to companies wishing to be entered in the American language, if I lived in America, so be it, but I live in England and to use English thank you very much.

    Right-click in a text entry box and go to 'Language', then 'Add Dictionaries' (if you don't see this option, make sure that you have "Check spelling" checked). You will be redirected to a page containing a list of dictionaries. Add your favorite like any normal module language. Once installed, right click in an area of new text entry & select 'Language', then the newly installed dictionary.

  • Download Windows 7 version English from a non-English speaking country

    I'm in Korea but I don't speak any Korean. I want to buy Windows 7 Home Premium version. I found that it is possible to buy the Korean version here. I want to download the English version of Windows 7 Home Premium.

    A few questions:

    (1) can I use a proxy server so it seems that I am in the USA to download and purchase the product? I've found that I can enter the Web page using a proxy and it won't change course on the Korean version.

    (2) given that I don't live in the USA, I can't have a backup disk sent me. Do I need one? I can do my own backup disk using a burner?

    (3) can I download on my mac, create a backup disk, and then use this backup disk on the PC to Windows 7 Home Premium on it?

    (4) what format it downloads as? It is a zip file?

    (5) I get an activation with her key?

    (6) if my computer goes down and I need to reinstall Windows 7 Home Premium, can I use the backup drive that I made myself to do?

    (7) will be that I can download (English) US version using the proxy server and I will get the corresponding key for that?

    Thanks for any help

    (1) can I use a proxy server so it seems that I am in the USA to download and purchase the product? I've found that I can enter the Web page using a proxy and it won't change course on the Korean version.

    Just your own question answered.

    (2) given that I don't live in the USA, I can't have a backup disk sent me. Do I need one? I can do my own backup disk using a burner?

    You can make your own. Download Windows 7 USB/DVD tool
    http://store.Microsoft.com/help/ISO-tool

    (3) can I download on my mac, create a backup disk, and then use this backup disk on the PC to Windows 7 Home Premium on it?

    No, you need to do it on a Windows PC, since the image is in a format that is not recognized by the Mac.

    (4) what format it downloads as? It is a zip file?

    . ISO or extractable .exe file

    (5) I get an activation with her key?

    Yes, by email or it will be on your account page.

    (6) if my computer goes down and I need to reinstall Windows 7 Home Premium, can I use the backup drive that I made myself to do?

    Yes or just download it from the account page.

    (7) will be that I can download (English) US version using the proxy server and I will get the corresponding key for that?

    As long as you have access to the shop we, Yes.

    Releasing it's easy: with Windows | ActiveWin | Laptops | Microsoft MVP

  • Where can I download windows 7 iso (non-English) professional?

    Hello

    I have a windows 7 Professional product key. I would like to reinstall windows, because it is added an SSD on my PC. However I have lost the disk that came with my PC, and I can't find the download ISO anywhere on your website. The locale I'm looking for is Estonian, and-EE.

    Based on how links to English versions look like in your replies to other validated questions that address the same issue, I guess it should look like this:

    http://MSFT-DNL.digitalrivercontent.NET/msvista/Pub/???-???/???-???.ISO

    In short: I need Windows 7 Professional, iso of the Estonian language

    Thank you

    Edit: 64 - bit

    Hello

    Windows 7 Professional 64 - bit x 64 Finns (64 bit)

    Windows 7 Professional 32 - bit x 86 Finns (32 bit)

    Thank you

    Party of Lighthouse

  • Use a non-English language

    Hello

    How can I display text no English throughout my application? Can I read the each piece of text in a language property file?

    Thank you

    http://supportforums.BlackBerry.com/T5/Java-development/localizing/Ta-p/442783

  • What is the best way to type some non-English letters in InDesign?

    I write an English document in InDesign, but since it's the Sweden, there are often words and names in Swedish I use.  These words can contain three letters not found in English: a, a, and o (sorry for the language lesson).  When you use MS Word, internet and apparently most of the other applications on my (end of 2013 - OSX Yosemite) Macbook, I can hold down the letter "a" or "o" and these replacements will come to the top, as well as alternates in Spanish, Danish, etc..  This function does not work in InDesign, if making me write things like, "taaaaaaaaaaaaaaa."  While full of humor, is there a way to replace it and make this function works in ID?  I guess its an easy solution in a box, I'm simply missing.

    Some accented characters should be easily accessible using the right keys, for example, a's-a option.

    a is created by typing option-u, followed by an a

    o is created by typing option-u, followed by an o

    I hope that helps!

Maybe you are looking for