Way to selectively edit "other" forms in AutoFill?

Is there any way to selectively edit the choices that popup in search fields (other forms in AutoFill preferences)?
I use a certain database frequently and would like to keep the results from previous searches, but on occasion I make a typo and then that will reappear later as a possible option (the list has about 20-30 entries so it would be easier to manage if it could be trimmed).
Thanks

Hi Oliver
Yes but this doesn't solve the issue of future typos…I don't want to go through the whole list each time I want to "purge" any misspelled entries that pop up.
Unfortunately, that's the "nature of the beast". Personally, I like Internet Explorer for Mac's method for auto-fill.
With Safari 3.0 on the way (OS X Leopard debut), consider sending feedback to Apple suggesting a different approach to autofill.
Thanks for the

Similar Messages

  • Is there a way to selectively edit Autofill items?

    On some of my frequently visited websites I've built up quite a long list of Autofill items (e.g., from eBay searches). I'd like to clean this up somewhat, so I can get rid of typos that I made when visiting these websites. I've found the Safari preferences page for Autofill, but it looks like I only have the option for completely clearing Autofill entries associated with that website.
    Is there a way of viewing/editing the list of Autofill entries for a website and selectively deleting them? Or am I stuck with the all-or-nothing method?

    Open up Safari's preferences and click on the AutoFill icon. Now lick on the Edit button beside "Other Forms". You can scroll through the list of sites and delete sites from the list. This will delete all entries for that site so you can start out fresh. There is no way to selectively edit entries for a site.

  • Is there a way to selectively edit a conversation in iMessages instead of clearing the entire conversation? Like you can do on the iPhone for instance.

    Is there a way to selectively edit a conversation in iMessages instead of clearing the entire conversation? Like you can do on the iPhone for instance.

    Did you find an answer to your question?
    Would it also apply to Mountain Lion's Messages?
    Thanks

  • Is there a way to select every other page in a multi page pdf and convert it to grayscale?

    I'm going to ask this question in a few sub-forums, so if you think you've seen it, you might have.
    Where I work I use a program that can print to pdf. We use it to produce mailings, usually postcards, that are addressed.
    I often end up with a 500 page document that will print on 250 sheets of cover stock, which will get cut into 1,000 postcard, all pre-addressed and sorted by zip code.
    Usually, the address side is all black and the front is color. The printers we use can print a black click on the address side and a color click on the other, IF the pdf is set up that way. Otherwise, both sides will be counted as color clicks.
    I know I can select pages individually in a pdf and convert them to grayscale and those pages will be counted by the printer as black clicks, which are cheaper than color clicks.
    The problem is, I have not figured out how to convert all the odd numbered pages to grayscale at once. As a result, I usually end up printing the color side simplex, then putting the job back in the tray and printing the black side. Of course, that only works if only one side is personalized, sometimes both sides are.
    Is there a way to select every other page in a pdf and convert it to grayscale?

    The Acrobat SDK has sample code that shows how to convert the colors for one page (the first page of a document). This sample can easily be adjusted to process every other page. You can then use an Action that executes this JavaScript to process the document. Do you know how to create an Action? If so, you can use this script (as I said, adapted from the sample in the SDK) to convert all odd pages (1, 3, 5, ...):
    // Get a color convert action
    var toGray = this.getColorConvertAction();
    // Set up the action for a conversion to RGB
    toGray.matchAttributesAny = -1;
    toGray.matchSpaceTypeAny = ~toGray.constants.spaceFlags.AlternateSpace;
    toGray.matchIntent = toGray.constants.renderingIntents.Any;
    toGray.convertProfile = "Gray Gamma 1.8";
    toGray.convertIntent = toGray.constants.renderingIntents.Document;
    toGray.embed = true;
    toGray.preserveBlack = false;
    toGray.useBlackPointCompensation = true;
    toGray.action = toGray.constants.actions.Convert;
    // Convert every other page
    for (var i=0; i<this.numPages; i++) {
      console.println("Processing page " + i);
      if (i % 2 == 0) {  // change to "if (i % 2 != 0) {" for all even numbers
      console.println("in page " + i);
      console.println(this.colorConvertPage(i, [toGray], []));
    As I've indicated in the code, you can change this to all even numbers by changing the == to !=

  • Is there a way to select every other page in a pdf and convert it to grayscale?

    I'm going to ask this question in a few sub-forums, so if you think you've seen it, you might have. Someone suggested it might be done with Javascript. I know nothing about Javascript.
    Where I work I use a program that can print to pdf. We use it to produce mailings, usually postcards, that are addressed.
    I often end up with a 500 page document that will print on 250 sheets of cover stock, which will get cut into 1,000 postcard, all pre-addressed and sorted by zip code.
    Usually, the address side is all black and the front is color. The printers we use can print a black click on the address side and a color click on the other, IF the pdf is set up that way. Otherwise, both sides will be counted as color clicks.
    I know I can select pages individually in a pdf and convert them to grayscale and those pages will be counted by the printer as black clicks, which are cheaper than color clicks.
    The problem is, I have not figured out how to convert all the odd numbered pages to grayscale at once. As a result, I usually end up printing the color side simplex, then putting the job back in the tray and printing the black side. Of course, that only works if only one side is personalized, sometimes both sides are.
    Is there a way to select every other page in a pdf and convert it to grayscale?

    The Acrobat SDK has sample code that shows how to convert the colors for one page (the first page of a document). This sample can easily be adjusted to process every other page. You can then use an Action that executes this JavaScript to process the document. Do you know how to create an Action? If so, you can use this script (as I said, adapted from the sample in the SDK) to convert all odd pages (1, 3, 5, ...):
    // Get a color convert action
    var toGray = this.getColorConvertAction();
    // Set up the action for a conversion to RGB
    toGray.matchAttributesAny = -1;
    toGray.matchSpaceTypeAny = ~toGray.constants.spaceFlags.AlternateSpace;
    toGray.matchIntent = toGray.constants.renderingIntents.Any;
    toGray.convertProfile = "Gray Gamma 1.8";
    toGray.convertIntent = toGray.constants.renderingIntents.Document;
    toGray.embed = true;
    toGray.preserveBlack = false;
    toGray.useBlackPointCompensation = true;
    toGray.action = toGray.constants.actions.Convert;
    // Convert every other page
    for (var i=0; i<this.numPages; i++) {
      console.println("Processing page " + i);
      if (i % 2 == 0) {  // change to "if (i % 2 != 0) {" for all even numbers
      console.println("in page " + i);
      console.println(this.colorConvertPage(i, [toGray], []));
    As I've indicated in the code, you can change this to all even numbers by changing the == to !=

  • Creating Editable PDF Form

    Hi all,
    Can anyone help here...
    I am trying to create a PDF document in Acrobat Pro 9 Extended, which is a form that can be filled in and saved by the end user. I have created the document in InDesign and am using Pro to add in the editable regions.
    Here is the PDF: www.leshooperfitness.com.au/pdf/exercise-meal.pdf
    I can open the file, add content to the form, re-save it and it retains all the info. However, I am having all sorts of problems with other people saving content to the file, sometimes it works, sometimes all the content is wiped clean and sometime the content is there, but you have to actually click on a text box before the content is displayed. The other people are sometimes on a Mac/iPad, but even when they use Adobe Reader they are able to save the info and sometime it stays saved on their machine until it is emailed to me and then it disappears. Other times they save it and when they go back to it, it has gone. But there doesn't seem to be a consistant pattern, it just doesn't seem like a very reliable way of saving info.
    Does anyone know what I could be doing wrong? Or, is there a more effective way of creating editable, interactive forms?
    Thanks

    The problem you seeing with the content not being displayed until the field has the focus is a well kown problem with PDF forms that have been filled and saved with the Preview application on the Mac. For more information, see: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    So the Mac users (OSX) should use Adobe Reader, as opposed to Preview. Windows users may not be using a viewer as capable as Acrobat/Reader as well, so you mught want to check that also.
    The default PDF viewer on the iPad does not support interactive PDF forms, so you'll need to use a viewer that does. Adobe Reader for the iPad does not at the moment, and the best one that does is Readdle's PDF Expert.

  • Selecting every other note

    Hi folks...
    Is there a way to select every other note in a midi region? I know you can select sub positions etc but that won't work because it's a totally random midi sequence. There's hundreds of notes and I need to select either notes 1/3/5/7 (etc) or 2/4/6/8 (etc). Any ideas? I'm guessing if there is a way it onvolves some trickery...
    Cheers

    To select manually will take ages
    You don't have to do it by hand. You can do it with an AppleScript, and the shareware program MidiKit. This is the AppleScript:
    tell application "MidiKit"
    activate
    end tell
    set x to 2
    repeat 100 times
    tell application "System Events" to key code 51
    set x to x + 1
    repeat x times
    tell application "System Events" to key code 125
    end repeat
    end repeat
    To use that, there are a few things you need to do. In System Preferences > Universal Access, turn on the checkbox for "Enable access for assistive devices."
    You also need to make the AppleScript Script Menu visible in your menu bar. How to do this varies by OS version, but I think on 10.5 you need to launch AppleScript Utility (in /Applications/AppleScript) and activate "Show Script Menu in menu bar."
    Once the Script Menu appears (near the other Menu Extras, like Airport and Date/Time), use this command on the Script Menu: Open Scripts Folder > Open User Scripts Folder. And then use this command on the Script Menu: Open AppleScript Editor.
    You now have an Untitled document open in the AppleScript Editor. Paste in the script text from above, and save that script as a document in the folder you opened. That folder is this one:
    Macintosh HD/Users/YourUserName/Library/Scripts
    Give your script a helpful name, like "Delete alternate events." Your script will now be available on the Script Menu.
    Download, install and launch MidiKit. Export your midi from Logic and open it in Midikit. Use the buttons in the MidiKit toolbar to hide all the events that aren't notes. Select the second note. Run the script by selecting it from the Script menu. It will take a while to run, but it will work. Save the midi in MidiKit and then drag that file back into Logic.
    This could almost be done in the Logic Event List, without MidiKit, but it works better with MidiKit.
    In the script, where it says "repeat 100 times," you need to edit that number to reflect the number of notes you intend to delete. You don't need to know the exact number, because it's OK if the number you enter exceeds the correct number.

  • Is there a way to select a word in a pdf form and have it circled

    is there a way to select a word in a pdf form and have it circled instead of say check marked

    https://discussions.apple.com/community/professional_applications/final_cut_stud io
    Al

  • Faces issue when selecting 'edit with CS4' (or any other external editor)

    Ok, so I have a work flow where I effectively use Nik Plugins. I have the complete set so that i can use them in Aperture and CS4. I correct exposure and white balance and crop in Aperture but then have automators set up in CS4 to apply Nik plugin effects via a batch change process ie no manual adjustments needed, start the batch and come back 20 mins later. Anyway thats somewhat irrelevant....
    Once stage one is done in Aperture I select faces and see that all looks fine. Suggestions appear over faces etc as you'd expect. BUT if I then select edit with CS4 (via right click) on that image it creates a duplicate image (as its non-destructive) and opens it in CS4. Fine. But if you go in to Aperture the faces on this duplicate image are now all messed up. They are not at all over peoples faces but seemingly in random places. Right click and selecting detect faces does nothing. So in summary if I edit anything with CS4 and hit save so that the changes appear in Aperture then hit faces to tag people I have to effectively start from scratch and delete all the faces (not over peoples faces) and add new faces.
    The best way to illustrate this is with screenshots. See this link for 2 screenshots of the issue. http://adamlewis.zenfolio.com/screenshot
    Can someone else confirm they have this issue at all first off to see if it is a specific issue to myself or a generic Aperture issue?
    After that I guess we can proceed with troubleshooting and solutions.
    PS I have repaired my library and rebuilt it and have upgraded Aperture to the latest 3.2.2 (released today / yesterday but note the issue was found under 3.2.1 so its not a 3.2.2 specific issue).

    Maybe I should have made it clearer in my original post. The 1st paragraph was just for colour. The fact of using Nik has nothing to do with the issue. The below quote is the issue:
    "Suggestions appear over faces etc as you'd expect. BUT if I then select edit with CS4 (via right click) on that image it creates a duplicate image (as its non-destructive) and opens it in CS4. Fine. But if you go in to Aperture the faces on this duplicate image are now all messed up. They are not at all over peoples faces but seemingly in random places."
    Thus the issue is generated by merely selecting Edit with CS4. ie no editing done in CS4 and not even saved in CS4. Just selecting edit with CS4 in Aperture creates the duplicate image in Aperture (and sends it to CS4 but lets assume we do nothing with it there at all) but creates a duplicate with face tags in the wrong places.
    After further investigation I changed my external editing software option in preferences to Pixelmator and the same issue occurs.
    So to replicate the issue in my place there are 2 simple steps that I need to make (and would like tested by someone else):
    1. Tag some peoples faces in an Aperture image
    2. Select edit with (any external editor)
    Then go back in to Aperture (immediately) and select faces on the duplicate image created and see if the faces are in the correct position.
    Note I have my external editor set to TIFF 8 Bit 300dpi using Adobe RGB colour space.
    Thanks for your time.
    Message was edited by: loobola

  • Selection in other way to improve performence

    Any body can suggest me how i can write the first selection in another way with the same logic.
    it_date TYPE STANDARD TABLE OF rsdsselopt,
    SELECT bukrs belnr gjahr cpudt cputm aedat awkey
    FROM bkpf INTO TABLE it_bkpf
    WHERE cpudt IN it_date.
    help me to write same select in another form which can suggest for performence.
    Tks.

    Hi,
    I have played with your select trying to improve it. Using bukrs like '%' suggested by Diego did not improved performance in my case. But using standard index with fields bukrs, cpudt, bstat is good idea. If you do not want to create a new secondary index and you can not limit your selection for a concrete BUKRS, the best approach I have found is doing the select this way:
    data: it_date TYPE STANDARD TABLE OF rsdsselopt,
             it_t001 TYPE STANDARD TABLE OF t001,
             wa_t001 TYPE t001.
    SELECT * FROM t001 INTO TABLE it_t001.
    LOOP AT it_t001 INTO wa_t001.
    SELECT bukrs belnr gjahr cpudt cputm aedat awkey
    FROM bkpf APPENDING TABLE it_bkpf
    WHERE bukrs EQ wa_t001-bukrs
          AND cpudt IN it_date.
    ENDLOOP.
    For it_date use only such values which can be transformed to EQ, IN and BETWEEN if possible, so do not use excluding select-options, instead of operand < try to put some lower boundary and use BETWEEN instead.
    Disadvantage of this approach is that select is performed more than once. I was trying to eliminate this disadvantage doiing it this way:
    data: it_date TYPE STANDARD TABLE OF rsdsselopt,
             it_t001 TYPE STANDARD TABLE OF t001.
    SELECT * FROM t001 INTO TABLE it_t001.
    LOOP AT it_t001 INTO wa_t001.
    SELECT bukrs belnr gjahr cpudt cputm aedat awkey
    FROM bkpf INTO TABLE it_bkpf
    FOR ALL ENTRIES IN it_t001
    WHERE bukrs EQ it_t001-bukrs
          AND cpudt IN it_date.
    ENDLOOP.
    But when I looked at a execution plan for this select, although FOR ALL ENTRIES was translated using IN operator, no index was used by selection. So, this one did not bring any improvement. But it can be individual and it depends on system, because FOR ALL ENTRIES can be implemented in different way depends on database system, version and system parameters. Maybe you can try to take also this FOR ALL ENTRIES approach and improve it by changing parameters rsdb/prefer_join, rsdb/prefer_union_all, rsdb/prefer_in_itab_opt via hints.
    But I would recommend to use the first approach I have used if it is sufficient improvement.
    You should become more familiar with transaction ST05 and using SQL trace to anlayse database operations.
    Hope it helps.
    Regards,
    Adrian

  • When using Safari Autofill, and other forms, can information be stored in there if you have not entered any date on a website?

    When in autofill, other forms and edit, is it possible for a website to appear in "other forms", edit, if I have not entered data on their site? How would a site appear there if I have not entered any date on their site?

    Identify and remove adware
    http://www.thesafemac.com/arg/
    or  use Adware Removal Tool.
    http://www.thesafemac.com/art/

  • I want to change my primary e-mail address that I use with Apple ID - help guide says Select Edit next to "Apple ID and Primary Email Address." But there is no 'edit' on that section there is on every other but not that one. Can anyone help?

    I want to change my primary e-mail address that I use with Apple ID - help guide says Select Edit next to “Apple ID and Primary Email Address.” But there is no 'edit' on that section there is on every other but not that one. Can anyone help?

    You can create an alias @icloud.com email address within your current account that will receive email in your current iCloud inbox (see http://help.apple.com/icloud/#/mm6b1a490a).  (@me.com addresses are no longer available as new addresses.)  Just be aware that you cannot use an alias address later to create a new iCloud account or move it to a different account.
    Also, even if you created a new iCloud account with a new ID, your existing purchases would not be lost.  They are permanently tied to the original ID you used to purchase them.  You can also continue to use the existing ID for the iTunes store; it does not need to be the same as the ID you use for iCloud.

  • MY FONT SELECTION IN ELEMENTS 8 HAS WENT FROM HUNDREDS TO ABOUT 20 WITH NO WAY TO SCROLL FOR OTHERS?

    MY FONT SELECTION IN ELEMENTS 8 HAS WENT FROM HUNDREDS TO ABOUT 20 WITH NO WAY TO SCROLL FOR OTHERS? ANYONE HAVE ANY CLUES DELETED OF COMP AND RE INSTALLED AND STILL THE SAME ON WINDOWS 7

    See if this helps:
    http://helpx.adobe.com/photoshop-elements/kb/scroll-bar-missing-font-list.html

  • Is there any way to copy whole form value to other form ?

    is there any good way to copy whole value of one form to other form ?

    the form would eitherway will be bounded to te bindings of the VO.. y cant you use the bindings itself to populate the values from one form to another form

  • My autofill stopped working recently.  I looked under preferences and all the necessary boxes are checked.  When I start to fill out a form, the autofill box comes up, but when I click on it, it turns blue and nothing else happens.

    my autofill stopped working recently.  I looked under preferences and all the necessary boxes are checked.  When I start to fill out a form, the autofill box comes up, but when I click on it, it turns blue and nothing else happens.

    Back up all data, then test after each of the following steps that you haven't already tried. Stop when the problem is resolved.
    1. Press the down-arrow key. (Credit to ASC member iNeight.)
    2. Quit and relaunch Safari. Force quit if necessary.
    3. Click in the first field to be filled, and then select
    Edit ▹ AutoFill Form
    from the menu bar. You may have to reload the page in order to do this.
    4.  Select
    Contacts ▹ Preferences ▹ vCard
    and uncheck the box marked
    Enable private me card
    if it's checked.
    5. Select your card in Contacts. Then select
    Card ▹ Make This My Card
    from the menu bar.
    6. In Safari, select
    Safari ▹ Preferences ▹ AutoFill ▹ AutoFill web forms: Using info from my Contacts card
    If the box was already checked, uncheck it and then check it again.
    7. Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.
    8. Run Software Update and install any available updates.

Maybe you are looking for