Auto Complete Time

I have ALOT of recurring meetings at the same time .... I want to type the Meeting name and have the preset time (for that meeting) automatically entered.  I have a certain meeting 2-3 times a week - same time ... different days...dilfferent each week....... so Can I type:  "Booking Meeting" and have iCal will auto matically insert 9:00 am - 10:00 and then enter meeting name: Schedule - and have iCal put in the time 12:00 - 13:30?
Please tell me yes and then tell me how to do it?  This would save so much time......
thanks

Hi ...
In case you are not aware, Apple no longer updates Safari for Snow Leopard >  Apple Kills Snow Leopard: OS X 10.6 No Longer Receives Security Updates
Thus your Mac does not provide anymore security updates for Snow Leopard.
You may want to consider upgrading to a newer OS X if your Mac qualifies.
As for the Google issue ... try emptying the cache and deleting cookies.
From your Safari menu bar click Safari > Empty Cache
Back to the menu bar click Safari > Reset Safari
Select the following:
Remove all website data
and Clear History
Click Reset.
Then quit and relaunch Safari to test.

Similar Messages

  • Adjusting time when open alerts are auto-completed?

    (RZ20) My documentation says that I can adjust the time that an open alert auto completes but it does not say how.  Can anyone help me?
    Thanks,
    JM

    Hi Johanna,
    go to TA RZ21 --> Method Definitions
    Navigate to the Method "CCMS_Segment_Space_Collect"
    Doubleclick on it and under "Parameter" adjust the value "CMPL_ALERT_AFTER_DAY" to your needs.
    Thomas

  • Why can't I get an icon for auto complete in the toolbar? I installed it 3 times and still NOTHING! Grrrrrrrrrr

    ok so I installed auto complete "3" times, read and did everything FF said and STILL can't get the darn icon to show in the toolbar and don't know where else to look for it or what else to do. At this rate I may return to IE exclusively, although it is very slow, at least it works.

    Which extension was it exactly?
    Normally any extensions that provide one or more toolbar icons are found in the Customize window.
    Right-click on an empty section of the Tab bar or a tolbar, select Customize... and the Customize Toolbar window will open. Then drag the toolbar icon to a toolbar and then click [Done].

  • ITunes 10.5 crashes every time I type in an auto-complete enabled field

    Greetings,
    I have my music collection on a NAS drive, and have recently upgraded my laptop and so moved the iTunes library files to the new machine.
    Both the old and new machines run Windows7 Home Premium 64-bit.
    While playing and syncing work well, I am unable to edit any auto-complete enabled field in a track's (or track group's) properties (e.g. artist, album) without having the iTunes application crash immediately.
    I am able to edit these fields only by pasting from an external editor (e.g. open notepad, write the new content, copy, switch to iTunes and paste).
    I have tried a complete uninstall of iTunes (including apple program support), but the issue recurred after iTunes was re-installed.
    Any help will be appreciated.
    Best regards,
    ShaiB

    Greetings,
    I have my music collection on a NAS drive, and have recently upgraded my laptop and so moved the iTunes library files to the new machine.
    Both the old and new machines run Windows7 Home Premium 64-bit.
    While playing and syncing work well, I am unable to edit any auto-complete enabled field in a track's (or track group's) properties (e.g. artist, album) without having the iTunes application crash immediately.
    I am able to edit these fields only by pasting from an external editor (e.g. open notepad, write the new content, copy, switch to iTunes and paste).
    I have tried a complete uninstall of iTunes (including apple program support), but the issue recurred after iTunes was re-installed.
    Any help will be appreciated.
    Best regards,
    ShaiB

  • Disabling auto-complete in a single column or cell

    Dear All, I find the auto-complete feature in Numbers to be both time-saving but also dangerously stupid. Why should the default option be that when only one auto-complete entry is available, continuing to type your entry and pressing the return key automatically selects that entry? I would like to be able to turn off the auto-complete for a single column, but not for the rest, in which it works very well. So far I have not found any way to do this. It seems logical enough; we ought to be able to control which columns offer the auto-complete function and which don't.
    --Kevin

    R C-R wrote:
    It would be fine if a modifier key was able to disable the feature 'locally'.
    Perhaps Control-Return would work
    Control-Return is not a modifier key, it is an entry.
    I was thinking to the ability to press a modifier key when entering the first character in the cell. Pressing this key would tell to the entry parser: don't use the auto-completion.
    For my own use, I apply a drastic formula: the auto-completion feature is disabled.
    You are satisfied with the delete feature.
    I may understand that but the OP is not.
    So I try to imagine a possible enhancement.
    What I describe may help.
    For me it changes nothing.
    For you, it let you use the delete key.
    For the OP it would give him a neat answer.
    Yvan KOENIG (from FRANCE vendredi 8 août 2008 18:49:32)

  • Adding a timeout to Auto Complete doesn't work for IE

    We implemented our own declarative auto complete component. So we're manually handling KeyUp and KeyDown.
    One thing that we need to do is to add a timeout so that when the user is typing, we don't fire the bean code to do the query on every key pressed, but only do it after say half a second. That way if the user is intending to type 3 keys, we only need to fire our query once, where realHandleKeyUpOnSuggestField is the function that calls the query among other things.
    This is called from our ClientListener
    function handleKeyUpOnSuggestField(evt) {
        var realHandleKeyUpOnSuggestField = function () {
            // start the popup aligned to the component that launched it
            var inputField = evt.getSource();
            var suggestPopup = inputField.findComponent("suggestPopup");
            //   var suggestTable = inputField.findComponent("suggestTable");
            //don't open when user "tabs" into field
            var valueStr = inputField.getSubmittedValue();
            // Special characters coming from scanner. Don't popup if that's the case.
            if (suggestPopup.isShowing() == false && evt.getKeyCode() != AdfKeyStroke.TAB_KEY) {
                //hints = {align:AdfRichPopup.ALIGN_AFTER_START, alignId:evt.getSource().getClientId()+"::content"};
                var alignTo = inputField.getClientId() + "::content";
                var hints = {
                    align : AdfRichPopup.ALIGN_AFTER_START, alignId : alignTo
                suggestPopup.show(hints);
                //disable popup hide to avoid popup to flicker on
                //key press
                suggestPopup.hide = function () {
            //suppress server access for the following keys
            //for better performance
            if (evt.getKeyCode() == AdfKeyStroke.ARROWLEFT_KEY || evt.getKeyCode() == AdfKeyStroke.ARROWRIGHT_KEY || evt.getKeyCode() == AdfKeyStroke.ARROWLEFT_KEY || evt.getKeyCode() == AdfKeyStroke.SHIFT_MASK || evt.getKeyCode() == AdfKeyStroke.END_KEY || evt.getKeyCode() == AdfKeyStroke.ALT_KEY || evt.getKeyCode() == AdfKeyStroke.HOME_KEY) {
                return false;
            if (evt.getKeyCode() == AdfKeyStroke.ESC_KEY) {
                hidePopup(evt);
                return false;
                // query suggest list on the server
                AdfCustomEvent.queue(suggestPopup, "suggestServerListener",
                // Send single parameter
                    filterString : valueStr
    true);
        var inputField = evt.getSource();
        if (window["timer" + inputField.getClientId()]) {
            window.clearTimeout(window["timer" + inputField.getClientId()]);
        window["timer" + inputField.getClientId()] = window.setTimeout(realHandleKeyUpOnSuggestField, 500);
    }This works fine in FireFox and Safari and Chrome, but not in IE.
    The following error occurs:
    >
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
    Timestamp: Thu, 13 May 2010 20:27:33 UTC
    Message: Member not found.
    Line: 6034
    Char: 2
    Code: 0
    URI: http://127.0.0.1:7101/NC2DealerPartOrderTracking-ViewController-context-root/afr/partition/ie/default/opt/core-SHEPHERD-PS1-9296.js
    >
    When I debugged through, it seems like the event's getKeyCode() doesn't exist. I'm assuming it's something to do with scope for IE working different than FireFox.
    I realize this is more JavaScript question, but I'm wondering if anyone got something like that to work on ADF. As far as I know, there's no other way besides using JavaScript and IE doesn't seem handle scoping very well. I can't use a global parameter because I'm using this in a component and you can have multiple components in a page.

    Clicking the link to the .PDF launches the file in a browser (same gimped toolbar for both IE 8 and Firefox). When I right-click the .PDF toolbar in-browser, I have access to the following toolbars:
    File
    Find
    Page Display
    Page Navigation
    Select and Zoom
    Tasks
    I don't see anything for Commenting / Annotation.

  • I recently did the iOS 7.0.2 update, now I'm unable to purchase apps. "App could not be purchased at this time. Please try again later. ". I have tried a few of the suggestions and nothing has worked. Reset,change auto lock time on main screen, now what??

    I recently did the iOS 7.0.2 update, now I'm unable to purchase apps. "App could not be purchased at this time. Please try again later. ". I have tried a few of the suggestions and nothing has worked. Reset,change auto lock time on main screen, change language setting. Now what???

    This sorted it for me:
    Backup your iPhone to iCloud (I believe backing up to iTunes will work too). Now go to "Settings --> General --> Reset --> Erase All Content and Settings" to completely restore your iPhone to factory settings. Assuming you've backed up to iCloud, you'll be asked when setting up your iPhone if you want to restore from an iCloud backup. Choose that option and once your iPhone has restored itself from your backup, this annoying problem will finally be gone! (was for me anyway).
    To restore from an iTunes backup, connect your iPhone to your computer, load iTunes. Click the File menu and select Devices > Restore from Back up.

  • Auto-complete for the email addresses in the mail app is not working

    Hi, could somebody kindly help, please?
    I have just got a new iphone 5s after my old 5 got broken. When I got the new 5s one I had to restore everything from the back-up copy I had on my ipad or in my icloud, whatever.
    The problem is that in the standard mail app which you have at the bottom of the screen auto-complete for the email addresses is not working on this new iphone. However, it still works on the ipad.
    Can I turn it on somewhere or is it a bug? I remember When my old iohone was new as well as the ipad and ipod, I did not have to turn on anything. The recent email addresses list (appears when one starts to type an address in the address bar when writing a new email message) appeared automatically. And on this phone it doesn't appear at all. It doesn't suggest me any recent or whichever email addresses and I am really lazy to type an address each time.
    Could this be solved?
    Many thanks in advance for the eventual help.
    Olia

    I am also getting same problem...................anybody please help.

  • Auto-Complete bugs in Adobe Reader X / Acrobat X

    When I open a PDF that has fillable forms, and auto-complete is enabled, it does a terrible job of managing it's suggestions and how it handles my desire to 'type through' the suggestions that it's offering.
    To test this, you'll need a PDF with multiple fillable form fields.  it seems to have the hardest time with numerical data.  Spend a couple minutes entering in a lot of numerical data into the fields.  Delete some of it, put in different numbers, and eventually you'll see what I'm talking about.  I suggest that, because in some cases I'm able to reproduce it immediately, and in others it takes a few tries or a few different PDFs.  If you have typed in an address, say '1234 main', then in a later field, type in a zip code of '12345', then in yet another field start typing 12345 then hit the spacebar, it autofills "12345main".  Note how 12345main does not match anything I previously entered, but the auto-complete database thinks that it does.  The 'ain' part of "12345main" stays highlighted, like that's what it's now suggesting.  If you backspace back so that it shows "12345" again, and then hit space, it will auto-fill to '12345main' again.  I can't simply 'Type through' thie suggestion, because it leaves the 'm' there.
    What's odd, is that for the sake of this demonstration, you type in multiple items that begin with 1234, then enter '1234 ' (note the space) on another field, it actually won't suggest to you the items you previously entered that begin with 1234 .  Example:  in 3 fields, type in  1234 Main St,  1234 Downtown Rd., and then in the 3rd field start type 1234 followed by space. You'd think you'd be offered suggestions by Auto-complete that contain both 1234 Main St. and 1234 Downtown Rd, but you don't.  If you type something like '12345' now, you'll be back to the problem i outlined above where it automatically selects an item from the list and grabs an unwanted letter from the first word after the space.  Interestingly enough, if you keep typing '1234 Ma' for example, you still don't see the Auto-complete suggestions unless you start hitting the 'Backspace' key, at which point the proper suggestions are displayed.
    For our users that send out a lot of correspondence to clients, this is a huge inconvenience.  The only workaround is to completely disable the Auto-complete option under 'Forms'.  If they do not, then they can end up with incorrect information going out to cilents, and some of them have sent printed forms to cilents containing characters that didn't make sense or numerical data that was not correct because it had picked up unwanted characters from auto-complete.
    Additional information:
    I'm able to duplicate this problem on multiple workstations.
    OS: Windows 7 32-bit Enterprise SP1, Windows XP 32-bit Professional SP3
    I'm able to duplicate the problem  with Adobe Reader X and Adobe Acrobat X
    The problem also occurs whether I select either 'Advanced' or 'Basic' for the Auto-Complete setting

    Hello All,
    The issue has been fixed in latest version of Acrobat i.e. 10.1.9 or 11.0.6.
    Please see the release notes for Acrobat 10.1.9 below:
    http://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotes/10/10.1.9.html
    To update the product please go to Help -> Check for updates.
    Regards,
    Anoop
    [link fixed by moderator]

  • Appropriate component with auto complete and list of values

    Hello,
    I am using Jdev 11.1.1.6.0 with ADF BC and ADF Faces as technology stack.
    I have a use-case and right now struggling to find the appropriate component/implementation for same. The requirement is:
    1. User should be able to type and tab out to auto complete with perfect match.
    2. Not all users are expert so they should be able search and select the items from list
    3. Minimum key press should be there. E.g. auto complete should require only one tab press to complete and go to next field
    inputComboboxListOfValues fits most of above except #3. One tab simply selects the item from list and second tab is needed to move out to next attribute. Is there a way to force one tab to auto-complete and move out to next attribute?
    Tried simple inputBox with autoSuggest behavior but it lacks in opening of search and select feature that LOV component provides. Another drawback is that you need to wait for auto suggest list to appear and select before moving out to next attribute.
    This is needed on a very highly frequent used screen, so no speed and key press compromise is expected. Most users are expert and they know the code, so just type and tab out is expected but at the same time if typo happens and code does not exist in valid list then pop-up should appear to search and select.
    Is there a way to achieve this in ADF application (this is very well implemented in Oracle Forms application)?
    Any help is highly appreciated.
    Thanks,
    Jai

    Hi Frank,
    I understand the single matching value and expecting move out in single tab for perfect match only. inputComboboxListOfValues selects the entry in one tab [even for single matching value] and user has to press another tab to go to next attribute.
    Are you suggesting that it actually moves out to next field in single tab for "single matching value"?
    Thanks,
    Jai

  • Why Safari 6.0 will not auto complete the password ?

    Why Safari 6.0 will not auto complete the password ? even when the option is selected in autofill tab, and the user-password are listed in the password tab ?
    It used to work fine before I upgraded to mountain lion.
      Tks

    Same problem for me since upgrading to ML.  Safari remembers autofills for some passwords but not others.  For example my web mail password was no longer auto filled.  Checked in the keychain list and all the info was there. Therefore I deleted this and tried again - but Safari did not offer to remember the password.  Than ran an old script I had that is designed to "Removed autocomplete=off from 0 forms and from 2 form elements, and removed onsubmit from 0 forms. After you type your password and submit the form, the browser will offer to remember your password." Safari then offered to remember the password.  I accepted this and checked that the password was then saved in keychain - it was. However, next time I tried to access the email Safari once more did not auto complete.  Very frustrating, especially as some auto completes do work.  I hope apple sort this out soon.

  • Acrobat X Pro Auto Complete Issues

    Does anyone else find this feature unusable? Every time I try to type something new in a field on a fillable pdf form the auto-complete makes its suggestion and I can't override it. In 8 Pro you could just keep typing and the auto-complete would recognize the new value and allow you to complete the field yourself. I have tried both the basic and advanced auto-complete with the same results. I have also found that it you clear the edit entry list that it is only for that individual pdf. How can you delete the edit entry list throughout the whole program at once? Any help or comment would be apprieciated

    Hi there,
    Could you provide some more detail about your file(s)?  Are there any common elements between the files you've been converting to PDF via the PDFMaker Ribbon or the Adobe PDF printer that are disappearing?  Is the text that's disappearing all of a certain font?
    I'd like to try to help if you could upload a sample file or provide some additional detail!
    Thanks,
    David

  • Mail address auto complete???

    On the 3G with OS 2.2 when you started an email address, say with the letter M, up would come the most used addresses that started with M.
    Now with 3Gs and OS 3.0, when you start with M, up comes contacts I have never sent an email to at all.
    Any idea what happened? is this a setting somewhere? a bug?
    It certainly make emailing a LOT more difficult in the new OS
    thanks for any tips....
    tom

    I am having a problem with auto-complete in email as well. With OS 2.2, if I typed "M", it would take a split second before names or email addresses in the "M" category would pop-up. Now, after the OS 3.0 upgrade, if I compose an email and type "M", it takes 4-5 seconds before the list of "M" contacts pops-up. This annoys the heck out of me!!! I feel like I stepped back in time.
    I have three email accounts: One exchange, and two Yahoo accounts. Any suggestions welcome!!!

  • How do I disable auto complete in the Mail program?

    I have to type e-mail in more than one language on my iPod Touch, and Mail's auto complete feature is causing me a lot of trouble. It's making ridiculous word suggestions and typing these words if I don't touch a teeny-tiny X in the auto complete tag. The X is so small that often as not my finger ends up confirming the suggestion, rather than deleting it.
    For example, if I have to type the German word "kann" (which I very often have to, because it means "can"), the Mail program types in the name of the Indian language "Kannada", which I NEVER need.
    One solution would be to switch the language settings before typing e-mails, but that takes too much time, and the iPod Touch doesn't have support for some of the languages I have to type.
    How can I just disable that auto complete feature? I don't see it in the manual.

    Settings -> General -> Keyboard -> Auto-Correction -> OFF.
    But this is a global setting, not just for the Mail app.

  • Address in "To" field not auto completing

    When I type a contact name in the "To" field that is in my address book, the e-mail address is not auto completing. I had this happen before and figured it out but this time my memory isn't working.
    Thanks.
    Clint

    Hello Ernie,
    That preference is checked. I seemed to have fixed the problem by rebuilding the inbox and restarting Mail. I'm not sure I see the connection but that seems to have done the trick.
    Have a good day.
    Clint

Maybe you are looking for