Text substitution not taking new entries?

I have been using text substitution as an abbreviation expander for common words. All has gone well until tonight when I tried to add two new entries. They show up in the list just like all of the others but these two do not expand. All of those I have previously added work fine -- just not the two new ones. Either something has happened or I have forgotten some important step. I have opened and closed system preferences -- no effect. I re-booted the computer -- no effect.
Am I doing something wrong or is there a problem? And, more importantly, how do I solve it!

I realized that the substitution list for Pages wasn't the same as the generic list. I put the new entries in both list and all works as it should.

Similar Messages

  • Autocomplete is not saving new entries in forms (gmail subject exaclty)

    It used to work ok - Gmail subject used to be saved, and I could reuse it with drop down list shown when writing first letters. But it stopped to save new entries. Saved before are still avialalble, but not new.
    In other forms (on other sites), autocomplete is still fully operational, with saving new entries with no problem.

    Since I need to send many e-mail with same subject daily, I managed this problem in some way.
    I created simple html file, with only this inside:
    <form method="get">
    <input type="text" name="subject" size=100><input type="submit" value="save">
    </form>
    When I need to save new subject, I open this file (no need to be uploaded, works from hard drive), write my subject, and click save.
    Then it is avialable in gmail.
    Strange, stupid, but works :)

  • Text Substitution NOT system-wide!

    The text substitution functionality in 10.6 (changing "teh" into "the" etc. automatically) works like a charm in TextEdit but NOT in Mail, Pages, Numbers, Word etc. What am I missing? Pages and Numbers have their own section of text substitution (Preferences Menu - Auto Correction). Does one have to re-encode all the substitutions in these applications? Seems odd as this is presented in 10.6 as a system-wide service (System Preferences - Language and Text - Text)... Especially in Mail this saves a lot of time. Will have to revert to TextExpander... Anybody else bothered with this issue? Found a workaround?
    Looking forward to your views!
    Hendrik

    It works fine in Mail. I've been using it for some time.
    You have to turn it on, and there are no preferences for it like they are in TextEdit. Right click in the compose menu and enable it. It must be enabled separately for each application.
    You can do the same for Safari as well, when you are entering text in a text box, right click and enable it.

  • Symbol and Text Substitution not working correctly

    Hello,
    in „Language & Text“ I have the following symbol and text substitutions enabled, which aren’t working in Pages version 5.1.1 (iMac 2011, Yosemite 10.10.1):
    „- - >“ (written without blank space between the characters) which should be substituted to „➜“.
    In Safari this works, but in Pages it isn’t working.
    Other substitutions work in Pages, for example:
    „! ! s s“ (written without blank space between characters) is substituted to „ẞ“ in Safari and Pages.
    Can somebody help me?

    In Pages v5.5.1 and Yosemite 10.10.1, I can reproduce the injected space issue resulting from your Keyboard > Text substitution for „-->” to „→” . Even if you remove one of the '-', Pages will still insert the space before the right arrow in the result. This is a bug.
    Fix: „..>” will produce the arrow without the injected space.

  • VO substitution not taking effect when running from Jdev

    Hi,
    I made a VO substition. However, when running the page from Jdev, the substition is not in effect. When I press "about this page" I see the original view objects - not my own.
    I have verified that my .jpx file contains the substitution.
    I have tried followed the instructions in the OAF user guide and added -Djbo.project=<myprojectname> to the project runtime java options.
    However - if deploying the jpx file on the server with jpximport, the substitution is working. But why is it necessary to deploy that substition on the server when running locally. Also, that should not be necessary according to the user guide.
    Any ideas?

    When running locally u don't need to dceploy substitution on server.You only need to add substitutions in jdev and added -Djbo.project=<myprojectname>
    Note that
    the Name value is the .jpx file name without the .jpx extension (for example, ExtendLabSolutions). Be
    sure to include a space between any existing options and the new option.Also confirm u have put correct jpx file name.
    When I press "about this page" I see the original view objects - not my own.
    This is because about this page must be picking VO definations from DB, and since ur extended files are not in jdev... it will not reflect here.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Query in the Insert Trigger not taking :new reference

    I am writing an insert trigger on " iby_ext_bank_accounts" table to track the Bank account changes for a Supplier and Site. During the trigger I am Using a query to get the values for Supplier and sites related to the bank account.
    I use a reference :new.ext_bank_account_id and the query return nothing. So during the triiger I cannot capture the supplier info. '
    I am sure there is a value for :new.ext_bank_account_id because it is inserted into my custom tracking table. But in the query it is not passing.
    Everything is woking during the update
    Any one has any Suggestions. The Environment is Oracle apps R12 - Table : iby_ext_bank_accounts
    Thanks for help
    George Thomas
    Here is the query in the trigger
    party_supp.party_id supplier_id
    ,party_supp.party_name supplier_name
    , aps.segment1 supplier_number
    , ass.vendor_site_id Site_id
    , ass.vendor_site_code site_code
    , party_bank.party_name bank_name
    , branch_prof.bank_or_branch_number bank_number
    , party_branch.party_name branch_name
    , party_branch.party_id branch_id
    , branch_prof.bank_or_branch_number branch_number
    FROM ar.hz_parties party_supp
    , ap.ap_suppliers aps
    , ar.hz_party_sites site_supp
    , ap.ap_supplier_sites_all ass
    , iby.iby_external_payees_all iep
    , iby.iby_pmt_instr_uses_all ipi
    , ar.hz_parties party_bank
    , ar.hz_parties party_branch
    , ar.hz_organization_profiles bank_prof
    , ar.hz_organization_profiles branch_prof
    WHERE party_supp.party_id = aps.party_id
    AND party_supp.party_id = site_supp.party_id
    AND site_supp.party_site_id = ass.party_site_id
    AND ass.vendor_id = aps.vendor_id
    AND iep.payee_party_id = party_supp.party_id
    AND iep.party_site_id = site_supp.party_site_id
    AND iep.supplier_site_id = ass.vendor_site_id
    AND iep.ext_payee_id = ipi.ext_pmt_party_id
    AND ipi.instrument_id = 1041--:new.ext_bank_account_id
    AND :new.bank_id = party_bank.party_id
    AND :new.branch_id = party_branch.party_id
    AND party_branch.party_id = branch_prof.party_id
    AND party_bank.party_id = bank_prof.party_id ;

    There is absolutely no reason that you would need to resort to adding an SP to your database. This can be done directly within the CR command. Just make sure you have the parameters added to the parameter list in the command itself.
    If the query will run in SSMS it will run id a CR command. Just remember, CR will do a direct swap the parameter value withing the SQL code. For example...
    The value of {?Parameter1} is "Hat", and you command reads like this...
    SELECT
    Column1,
    Column2,
    Column3
    FROM ProductsTable
    WHERE ProductName = '{?Parameter1}'
    CR will pass the following SQL to the server
    SELECT
    Column1,
    Column2,
    Column3
    FROM ProductsTable
    WHERE ProductName = 'Hat'
    If you write your SQL like this...
    SELECT
    Column1,
    Column2,
    Column3
    FROM ProductsTable
    WHERE ProductName = {?Parameter1}
    It will fail because it's trying to pass this...
    SELECT
    Column1,
    Column2,
    Column3
    FROM ProductsTable
    WHERE ProductName = Hat
    and text values need to wrapped in single quotes...
    HTH,
    Jason

  • Talk to text micro not on new phone

    I have the Iphone 5s and gave my wife the 4s and I do not have the small microphone on the text to talk to text! Where do I get this?

        Hi tonyuhaul!  Let's ensure you have the microphone icon to use your voice-to-text feature when texting.
    You should see the small microphone icon to the left of the "space bar" on the virtual keyboard when composing a text message.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport

  • Junk Folder does not accept new entries

    I just upgraded to an Intel I MAC. The transfer of information from my old I MAC was easy but now the Junk does not work properly. When I put an email in junk it goes to the Junk folder that time but the same sender repeats on incoming mail. I tried using training but that did not help the situation.

    Ann,
    Welcome to the Discussions. What version of Mail did you use on the old iMac?
    Did you have additional Rules for Junk in use on the old Mac?
    Ernie

  • My iphone 5c calendar will not add new entries. please help!

    Starting today I can no longer add new appointments to the calendar on my 5c.  I have checked settings and no other app is trying to access my calendar. my calendars are turned on in my emails...i can add all the information, pick the calendar and then tap "add" and poof!  nothing is there.  
    utterly maddening.  please advise. 

    Are these photos that were taken by your 5C's camera?

  • BB10 - Link does not sync new Contact note entries and crashes

    Hi - can anyone help.
    Link 1.1.1.26 syncs new entries on both my Windows 7 PC and Q10 both ways, including any text in the Notes field. But adding or changing a Note to an existing entry does not sync.
    In Link Settings I have Contacts (and Calender) ticked (blue box) but when I click on Configure next to either, to check the details of the sync, Link crashes and has to be closed via the Task Manager. 
    Many thanks
    John Sansom
    PS. Since writing the original post I have managed to get one set of Contact Notes to sync - from the PC to the BB - I was doing a manual Sync via Link. But it did not work the other way round on that occasion, and has not worked either way since that.

    same with me. I have installes skype on pc and windows phone. the contact list is not the same?  some contacts are missing on one device and the other device.I have signed in on both devices with same microsoft account.lates skype version cheked.

  • Text Entry not waiting for entry before continuing

    Captivate 4
    I'm trying to add a TEB where the user will need to enter the correct text before moving to the next slide.  I would like it to continue as soon as they user types the correct entry.  The problem is that the slide doesn't pause to wait for the entry - it continues to the next slide without anything being typed or a click.  ??
    I have the correct text listed in the 'Correct Entries' box and have it set to 'go to next slide' for 'On success'.  Under 'Options', I have it set to 'Validate User Input'.  I do not have any hint or caption buttons, and I am not showing a 'submit' button.
    Can someone tell me how to get it to pause the training to wait for the user to enter the correct text?
    Screen shots below.
    Thanks in advance,
    D

    Hi there
    Indeed there is!
    You enable the Button in the properties. This will place an associated button next to the field.
    What's that you are asking? You don't want a button?
    Well, nobody said you actually have to SEE the button! Just double-click the button and its properties will show. Choose Transparent Button and configure it so it's invisible. Then you configure the other "1" for the Button press!
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Looking for a good note taking app: Are there new features for the Notes app in iOS6?

    Hi,
    I've read that the Notes app with Mountain Lion will be available for OS X as well, and I was wondering if there will be any significant updates to the Notes app coming in iOS 6?
    The Notes app in Mountain Lion supports, as far as I know, text formatting, images and attachments. The Notes app in iOS 5 does not have any of these features, yet still it is claimed that the OS X client will sync with the iPhone, iPad and iPod touch. This means that there must be some rather significant updates coming for the Notes app in iOS 6 to match up with the features of its Mac counterpart. Still, no updates to the Notes app are listed in any of the iOS 6 feature lists I've seen so far.
    I'm looking for a good note taking app for OS X and iOS. I don't like how Springpad works, neither did Evernote work out for me, it's just too complex - I like Simplenote a lot though, it's just that its approach is too radical in my opinion. I was thinking that the Mountain Lion Notes app might be a good alternative because it combines simplicity with rich text formatting and attachments. I kind of hate the skeuomorphic user interface though.
    best, Ian

    You are only addressing other iPad users here & no Apple employees. We have no way of knowing, so you'll have to wait until iOS 6 is released.
    Here's some general info.
    Working with Notes and Documents on the iPad – Alternatives & Suggestions
    http://ipadacademy.com/2012/04/working-with-notes-and-documents-on-the-ipad-alte rnatives-suggestions
     Cheers, Tom

  • New entries tab not appearing in tcode VOR1, VOR2 in application tool bar

    Hi guru's
    Suddenly overnight the new entries tab present in the application tool bar seems to have been vanished from tcode VOR1 & VOR2, in the sandbox, development & quality server, even when the client is open, i.e in tcode SCC4 we have allowed changes to be made, protection level is "0" and changes to repository and cross-client customising allowed.
    Please suggest where & what are the other changes I have to make so that I can get the new entries tab in tcode VOR1 & VOR2
    Thanks & best regards
    satish

    Hi Venkat
    That is where the problem lies. The sales organisation, distribution channel & division has been defined & assigned and even the respective sales area's has been assigned to the respective document types.
    But still the system ECC 6.0 does not allow to create any sales orders because the assgnment in tcodes VOR1 & VOR2 is still pending and the entries do not appear there by default.
    Once again the  distribution channels and divisions has to be assgined to the respective sales organisations in VOR1 & VOR2
    But since the new entries tab is absent I am not able to create any new sales orders because the assignment in tcodes VOR1 & VOR2 is pending.
    Please suggest a solution.
    Thanks
    satish

  • Leading in Pages. I've just discovered that different typefaces seem to have different auto-leading in Pages. I am used to default leading being 120% of point size, but it seems this is not so any more. The same text in 10pt Times New Roman, which I would

    I've just discovered that different typefaces seem to have different auto-leading in Pages. I am used to default leading being 120% of point size (or some consistent rule), but it seems this is not so any more. The same text in 10pt Times New Roman, which I would expect to line up with 10pt Palatino, for example, doesn't. I've tried using the inspector, at least to get both faces to behave the same for given settings, but I haven't been able to. How much control does Pages allow for this type of settings, and are there any hidden secrets as to how to do so? Many thanks
    Message was edited by: Just me then

    If you set the line spacing in the inspector to Exactly and 12 points for 10 point type, it will work the way you want.

  • Not able to create new entry in RSADMIN Table

    Hi All,
            I am going thru the OSS note 1275837  (Note 1275837 - PrecServer: process based load distribution (ABAP part)), as it recommends
            add the entry "BWPREC_USE_NEW_LOAD" with value "X" in table "RSADMIN"
          When I check in SE11 and SE16 there is no option to create button for above entry in table RSADMIN.
          Please advise for any help to create above entry.
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 4:20 PM
       I got access key from our basis team. But still not able to create new entry as mentioned in OSS note. Any further help....
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 9:13 PM

    Hi
    Goto SM30 - Table Maintanance Generator and enter the table name and click on button maintain ,it will show the error message
    "The maintenance dialog for RSADMIN is incomplete or not defined" because the table maintenance is not allowed manually.
    First Option
    When you double click the error message  a performance assistant screen will open in that you can see Procedure
    "Generate the required maintenance dialog" click on that and try to maintain the table using Access Key, as i dont have access key i have not tried this option.
    Second Option
    You can write an SE38 program with an insert statement.
    TABLES rsadmin.
    DATA: wa TYPE rsadmin.
    wa-object = 'object name'.
    wa-value = 'X'.
    INSERT into rsadmin values wa.
    Thanks

Maybe you are looking for