Text edit- Keystrokes for special characters

They've changed the keystroke I use to use for making a checkmark.  It was 'Option v'.  Now it's not.  Is there a chart somewhere showing what teh keystrokes are now for special characters?  Thanks so much for any help.
-Thom

Okay, I found this, http://support.apple.com/kb/PH10758?viewlocale=en_US .  Which gives me the Edit/Special Characters.  But I still do not find any keystrokes to make my checkmark.

Similar Messages

  • Keystrokes for special characters

    hey guys : ) I was wondering if I could get help on how to make accented characters, as I have French this semester, and I need to type up some stuff. Any instructions how to?

    Hey Tom,
    Here are few links to some websites that list all the keystrokes. Most are based of the OPTION key. I currently use the accent marks for creating retail packaging that goes to Canada, so I understand your need in typing French.
    http://faculty.weber.edu/tmathews/grammar/compmark.html
    http://www.savetz.com/ku/ku/spinasparlez_vous_macintosh_tips_on_getting_the_right_accents_may1989.html
    http://kb.iu.edu/data/anhf.html
    Hope this helps.

  • Checking for Special Characters

    I need to check if a textbox in my form containes special characters (entered by user). If there are any, I need to display an error message.
    I have written a function but it's not working.
    here's my function:
    function checkForSpecialChracters(oFiled)
    var userInput = oFiled.rawValue; // take the String entered by the user
    var iChars = "@#$%^&*+=-[]\\\';,./{}|\":<>?~_";
    for (var i = 0; i < userInput.length; i++)
    if (iChars.indexOf(userInput.charAt(i)) != -1) {
    xfa.host.messageBox("Please check for special characters. The following characters are not allowed: @#$%^&*+=-[]\\\';,./{}|\":<>?~_ ", "Error Message", 3);
    // Change the color of the field
    oFiled.fillColor = "255,100,50";
    Any help would be greatly appreciated.
    Thank you!

    Paul,
    It is working now. I don't know what I might have changed.
    Here's my final function (It works!):
    function checkForSpecialChracters(oFiled)
    var userInput = oFiled.rawValue; // take the String entered by the user
    var iChars = "@#$%^&*+=-[]\\\';,./{}|\":<>?~_";
    var hasSpecialCharacter = false;
    for (var i = 0; i < userInput.length; i++)
    //app.alert("Value is: " + userInput.charAt(i));
    if (iChars.indexOf(userInput.charAt(i)) != -1)
    hasSpecialCharacter = true;
    break;
    } // end if
    } // end For loop
    if (hasSpecialCharacter)
    // Change the color of the field
    oFiled.fillColor = "255,100,50";
    xfa.host.messageBox("Please check for special characters. \n\nThe following characters are not allowed:\n\n @#$%^&*+=-[]\\\';,./{}|\":<>?~_ ", "Error Message", 3);
    else if (!hasSpecialCharacter)
    oFiled.fillColor = "255,255,255";

  • HT204266 Does Text Edit exist for iPad?

    Does "Text Edit" exist for iPad?

    This is the iPod touch forum.
    What do you mean by "Text Edit"?
    There are iPad text editing apps available.

  • Keystroke combinations needed for special characters in specific fonts?

    How do you see the required keystrokes to enter special characters? Very frustrating!!! Using Pages to help my wife create a brochure. We wanted to use one of the symbols available in the font "Type Embellishments One LET" (which I assume installed with Pages). In Font Book we could see all the possible characters BUT NOT HOW TO TYPE THEM. We ended up typing scores of keys and keystroke combinations to finally see the one we wanted, then use cut and paste. There must be a better way but we (along with some Mac Support people at my work) cannot find it.
    Is there a way to do this without buying a program like PopChar. Seems like this should be fundamental to using a Mac out of the box.
    Thank you for any suggestions.

    You can use "Keyboard Viewer" to see what characters are created with various keystrokes. Open the International Preference Pane, click on the Input Menu tab & click the box next to Keyboard Viewer. This will make this available in your menu bar by clicking the flag icon. Select "Show Keyboard Viewer" from the flag menu & you will see a layout of the keyboard. You can then hold down the shift key, the option key OR shift + option to see all the possibilities. The highlighted ones are the accents than you can apply to letters. To get "é" type option-e (nothing will appear), then type e. This accent could be place over most letters. You can change the font in the drop-down menu. Not all fonts will have all characters. Keyboard Viewer places the typing directly into the top, open document.

  • Dynamic insert for Special Characters

    Hello,
    I'm running into a problem inserting data with Special Characters. I have a report (designed oracle reports), that takes data and inserts the data into table. I use the SRW.do_sql built in package in a before report trigger to process the data. However the problem that I'm running into is how to dynamically account for the special characters in a description field that I have. There is no way for me to predict where or how many can appear in a field. For example, I may have a field that contains data like:
    O'REILLY AND ASSOCIATES INC.
    OR
    FULLER & D'ALBERT, INC.
    OR
    JOANNE'S BED & BACK SHOP
    The only special characters that seem to be used and are causing me problems are the " ' " and " & ".
    Does anyone know how I can dynamically account for these special characters in my insert statement?
    Thanks,
    Martin

    Hello,
    I'm using SRW.DO_SQL procedure in oracle reports because that is one you can run text via reports. The report actually exports the results to a text file and insert the results into a table. Anyway, the SRW.DO_SQL isn't my problem but rather the special characters. I have researched the problem some more and I have found a solution. You can use the "replace" feature to do an insert/update of special characters. You also need to find the character number for each special character. I believe "&" is chr(38), "%" is chr(37), "#" is chr(35), "@" is chr(64), "'" is char(39). So the code would be:
    insert into tableA (column1) values(
    replace(replace(replace(replace(replace(v_entity_name,chr(39),chr(39)),chr(38),chr(38)),chr(35),chr(35)),chr(37),chr(37)),chr(64),chr(64));
    Martin

  • Dynamic text, system fonts, and special characters...

    This one is boggling my mind so if someone can help, please
    do
    I've got a dynamic text area pulling text from a MySQL
    database via AMFPHP. The text includes special characters such as
    accents, umlauts, etc (multi-language site platform). Most of them
    work fine, and ALL of them work fine when I'm on a Mac client.
    However, if I use a Windows client machine in either Firefox or
    IE6, there are a couple characters that for whatever reason just
    don't seem to show up -- instead I get the [] box character.
    The only characters I've found that seem to be affected like
    this are European quote characters like &#146; &#147; and
    &#148; (hex characters 146, 147, 148). I'm using the familiar
    ampersand-pound-number-semicolon escape sequence for them. And like
    I said, they all display fine on Mac/Firefox and Mac/Safari. Why
    are all my other special characters (umlauts, accents, etc) working
    fine and just these things failing? It's also worth noting that
    they look fine if I dump them out to a PHP file and pull it up in a
    browser...
    Please, if anyone can help... I've been bashing my head
    against this for the better part of the day!!

    Hi,
    did you take a look at the "gateway.php' ? There you can
    define charsets. Maybe a western europe charset will
    help you out. Since french language is using a lot more
    accents and so.
    This is what you can find in the gateway.php of amfphp. Just
    have to set the right one ;)

  • When I copy and paste text into Captivate 8, special characters disappear

    I'm trying to copy and paste text from a PDF into Captivate 8. When I paste, all the accent marks disappear. (for example: ê shows up as e). I've tried pasting into other applications, and the special characters paste correctly, so it's a Captivate problem. Has anyone else had this issue? Is there a quick fix?
    Thanks in advance!

    Upgrade your browser to Firefox 8 and try
    * getfirefox.com

  • Text Edit application for Mac Mini 10.4.11

    I am not sure if everyone is familiar with my "Mac Mini Saga", ( BDAqua certainly is! - by the way, congratulations for passing the 11000 mark! ).
    Now that the Mini is finally updated to 10.4.11,(without the original install discs), so that the elderly lady owner can use Skype, she would also like "my" Text Edit app. which is not listed in her apps. - i was told it should be there, but it is not!
    Looking at the details of this app on my iMac (version 1.5, 22.1 MB on disc), under File, i have the option: "Burn Text Edit to Disc". So, is it possible to include (transfer) this app. to her Mini after i copy it to a disc?

    Not exactly similar, this text editor and writing tool can do several things;
    and it (may still) runs free. I have a version of it.
    • Text Wrangler: powerful general purpose text editor...
    http://www.barebones.com/products/textwrangler/
    The original Text Edit, part of the System's original apps package, is more
    integrated with the original system installation; and should not be missing.
    However, you can choose to have another similar app as default to open
    or work with similar types of files.
    And for more office-like apps, there's a 'free running' donation-ware suite:
    • Neo Office:
    http://www.neooffice.org/neojava/en/index.php
    Text Edit version 1.4 from about 2005 (or so) should be what OS X 10.4.11
    would have included in the installer and then on the computer in question.
    The app is about 8.5MB, and may require the installer to place it correctly.
    You may look into the OS X 10.4.x Install DVD for Tiger and use Pacifist
    utility to look for and see if you can find the package in there, and extract
    it via Pacifist; then install Text Edit from the desktop via this utility. It will
    work in a demo mode, so you don't have to buy it, to try it out. It works.
    • CharlesSoft - Pacifist:
    http://www.charlessoft.com/
    There is no reason why the original TextEdit would not be in Tiger 10.4.
    Unless some files were corrupted at a point during installation process.
    Good luck & happy computing!

  • Create text editable PDF for client to edit in Adobe Reader

    I would like to create a PDF from either Illustrator or InDesign so that my client can edit just the text in the document using Adobe Reader as necessary (for flyers and business cards etc). I want to set the file up in Illustrator or InDesign so all text is laid out properly where I have the proper tools to do so, rather than using the Acrobat form tool and guessing measurement/layout etc. I have tried exporting to PDF from both programs and then using Acrobat Pro's form feature but it won't recognise any of the fields. I am using CS4 and Acrobat Pro 9 and am unsure if my software is too old to complete these tasks or if I am doing it incorrectly. I have seen it done in plenty of places so I know it is possible, I'm just not sure how.
    Here are some links showing examples of what I am trying to do:
    Using an e.m.papers Wedding Invitation Template.mp4 - YouTube
    How to use an e.m.papers printable RSVP template.mp4 - YouTube
    So, basically any advice on the following would be greatly appreciated:
    How do I make text editable in Adobe Reader (from an Illustrator or InDesign file)?
    How can I easily put the same design onto the same page (eg 8 business cards on an A4 page with crop marks) multiple times so that if I need to change the design slightly, it will change the design on all of them?
    How can I make the PDF like it is in the YouTube videos, so that when you edit one "product/design", it will edit all on the page?
    Or, how can I create a file of multiple business cards on the one page where they can have a different employees details on each card?
    This is my first time using this forum so if you require any further information, please let me know. Any help will be greatly appreciated. Thanks in advance.

    that's filling in a form, not editing: Create fillable PDF forms | Acrobat
    <moved from Adobe Creative Cloud to Creating, Editing & Exporting PDFs>

  • Bug in APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT for special characters?

    Hi,
    I am using APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT to download reports from BI-Publisher. But with special characters, and only if the filename is to long, the filename is in Firefox 10.0.2 not correct. In IE9 its running fine. I am not sure if its only a browser-problem or a problem with APEX.
    Here is the code:
    declare
        v_filename varchar2(1000);
    begin
        v_filename := 'Umlaut ü 123456789012345678901234567890123';
        APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (p_file_name => v_filename,
                                           p_content_disposition => 'attachment',
                                           p_application_id      => :APP_ID,
                                           p_report_query_name   => 'Checkliste',
                                           p_report_layout_name  => 'Checkliste',
                                           p_report_layout_type  => 'rtf',
                                           p_document_format     => 'pdf');
    end;With
    Umlaut ü 123456789012345678901234567890123its working and I get a file named "Umlaut ü 123456789012345678901234567890123.pdf".
    But with
    Umlaut ü 1234567890123456789012345678901234(one character longer) its not working and I get a file named "=_utf-8_B_VW1sYXV0IMO8IDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQucGRm".
    If I change the ü to ue I have no problems, even with much longer filenames.
    Very strange, isnt it?
    Any ideas for this?
    Kind Regadrs,
    Mark

    Hi,
    it does not work all fine with the IE. The following is not working both browser (firefox and IE):
        APEX_UTIL.DOWNLOAD_PRINT_DOCUMENT (p_file_name => 'Objektpruefung 02.08.2010 1000.pdf',
                                           p_content_disposition => 'attachment',
                                           p_application_id      => :APP_ID,
                                           p_report_query_name   => 'AnlagenCheckliste',
                                           p_report_layout_name  => 'AnlagenCheckliste',
                                           p_report_layout_type  => 'rtf',
                                           p_document_format     => 'pdf');The filename is then "Objektpruefung 02..pdf".
    Can anybody help me?
    Regards,
    Mark

  • JSP diplays shows junk for special characters.

    JSP Gurus,
    After upgrading the JRE version of my Tomcat from 1.3.1 to 1.4, all the JSP files have started displaying junk characters for the special characters (like ?, ?). These characters are being pulled from database. If I replace these characters with their ascii values, it works fine but there was no problem with the JRE 1.3.1. I have alot of data with these characters in the datbase. What is the easiest way to display these characters with JRE 1.4.
    Thanks,
    AG

    No One?!?

  • Find out the sql query for special characters.

    Hi,
    I have the emp table with column name first_name.In that table i have lot records with first_name inlcudes the below mentioned special characters.
    ¡ , ¿, ,Ä,Å,ä,ª,À,Á,Ã,à,á,ã,å,Æ,æ,Ç,ç,È,É,Ê,Ë,è,é,ê,ë,Ì,Í,Î, Ï,ì,í,î,ï, Ñ,ñ, ô, º, Ò, Ó, Ô, Õ, Ö, Ø, ò, ó, õ, ö, ø, ß, Û, Ù, Ú, Ü,ù, ú, û, ü, ÿ,
    I am looking for the records with includes the above mentioned special characters in the first_name column.
    Can u please give the sql query to find out the records.
    Thanks&Regards
    N.Sivaraman

    I am looking for the records with includes the above mentioned special characters in the first_name column.One way would be:
    select emp.*
      from emp,
           table (
             sys.odcivarchar2list ('¡',
                                   'Ä',
                                   'Å',
                                   'ä',
                                   'ª',
                                   'À',
                                   'Á',
                                   'Ã',
                                   'à',
                                   'á',
                                   'ã',
                                   'å',
                                   'Æ',
                                   'æ',
                                   'Ç',
                                   'ç',
                                   'È',
                                   'É',
                                   'Ê',
                                   'Ë',
                                   'è',
                                   'é',
                                   'ê',
                                   'ë',
                                   'Ì',
                                   'Í',
                                   'Î',
                                   'Ï',
                                   'ì',
                                   'í',
                                   'î',
                                   'ï',
                                   'Ñ',
                                   'ñ',
                                   'ô',
                                   'º',
                                   'Ò',
                                   'Ó',
                                   'Ô',
                                   'Õ',
                                   'Ö',
                                   'Ø',
                                   'ò',
                                   'ó',
                                   'õ',
                                   'ö',
                                   'ø',
                                   'ß',
                                   'Û',
                                   'Ù',
                                   'Ú',
                                   'Ü',
                                   'ù',
                                   'ú',
                                   'û',
                                   'ü',
                                   'ÿ'
    where instr (ename, column_value) > 0

  • Creating hotkeys for special characters in textedit

    Hello,
    I'm trying to type my maths HW on my mac on textedit or word 2008. I'm trying to type the Z (integer symbol). Now I have found that in Special Characters in textedit but I cannot add a hot key to it for frequent use. In word 2008 I didn't find it, although I could paste it from textedit. What's the way out?

    Hello,
    I'm trying to type my maths HW on my mac on textedit or word 2008. I'm trying to type the Z (integer symbol). Now I have found that in Special Characters in textedit but I cannot add a hot key to it for frequent use. In word 2008 I didn't find it, although I could paste it from textedit. What's the way out?

  • Find how may bytes or characters are occupied for Special Characters

    hi
    i would like to know how many characers are occupied for the below Russian characters. i am using UTF8 character set.
    because we need to transfer from one database to other for reporting
    inthe base databse it is stored and the field max length is 200
    and in reportiung database it is 80 char
    but when i check the direct length with length function it is showing and it is not able to fit in to the reportign database tables. can you help he to find how many characters or bytes it occupies to store in databse for these characters
    Actual Russina Characters. -------- ('óë. Ãåðîåâ-Ïàíôèëîâöåâ 22')

    Hi,
    <snip>
    how many characters or bytes it occupies
    </snip>
    you can use dump function:
    SQL> select dump(first_name)
    2 from employees
    3 where first_name = 'Peter';
    DUMP(FIRST_NAME)
    Typ=1 Len=5: 80,101,116,101,114
    <snip>
    base databse it is stored and the field max length is 200 and in reportiung database it is 80 char
    </snip>
    in the reporting database:
    alter table your_table modify column_name VARCHAR2(200);
    solved :)
    Regards,
    Tomek
    Message was edited by:
    Tomasz Tubis

Maybe you are looking for

  • How to see photos from photo share

    What does one need to do to see someone else's photos. Is photo stream or photo share.

  • Is it possible to save as EPS file?

    I am making a logo using a couple of different fonts - no graphics. Is it possible to save as EPS file? Or, if not - is there a way to export it to another program that will save it as EPS file?

  • Copy file ( .fmb ) from folder to folder

    What is the command to use from Oracle Forms or from the database to copy a file from one folder to another? An example for link will be greatly appreciated

  • How big of a file can I receive?

    Not sure if there is an error or if the file is too big.  My other email provider will allow an email with several pictures attached to be received.  When I forwarded it - it failed.  Then when the sender sent it to my verizon account it failed as we

  • Extraction Job in R/3 not started

    Hi Experts, I have deleted setup tables for 12 appl area.and again filled setup table for some delivery documents.But when we are trying to do init with data transfer ,the BI* job in r/3 not started.I mean extraction is not scheduled. We waited also