Feature request: enter submits extraction form popup

After clicking on a layer or image i would like to extract from the page, I typically fill in a name, press enter expecting the form to submit, feel dumb, and then am forced to grab my mouse again to press the save button. Can an enter on the input be a submit too?

This has now been fixed. Enjoy

Similar Messages

  • Feature Request: user-defined virtual keyboard popup for text fields

    It would be convenient to be able to define (either declaratively in XML or programmatically) custom virtual keyboards (codepoints + font-name)  that could be popped up from the context-menu on any text field.
    The string of characters produced on the virtual keyboard should be inserted into the associated text field at the .selectionBeginIndex location, or replace any selected text, if applicable.
    Adobe could also supply  predefined keyboards, but the important thing is that the programmer have the ability to define custom layouts and choose which codepoints the virtual keyboard contains, and that it be launchablefrom a custom contextmenuitem or that it be very simple and easy to tell Adobe which layout should be launched shoulda default contextmenuitem be dedicated to this purpose.
    Slick if it could support programmer-controlled transparency, so what lies beneath it could be revealed if the programmer desired.

    User-controlled transparency (with a slider) would also be a nice feature, though the programmer should be able to hide/show the slider widget.

  • Feature Request for Adobe Media Encoder??

    Hi,
    Why isn't there an option to make a feature request for 'Adobe Media Encoder' on the Adobe Feature Request page??? (Adobe Media Encoder isn't on the list of software)

    Adobe Media Encoder now has its own entry in the feature-request and bug-report form:
    http://www.adobe.com/go/wish

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • Submitting a form with enter key causing strange problems

    I am having a very strange problem with a webapp I am currently developing. I am using JSF 1.2 along with Facelets and RichFaces. I have coded a workflow/wizard 4-step process, and on some pages I have 4 submit buttons that all call different actions on the page. The users thought it would be useful to have the enter key submit the form, so I followed some online resources to trap a keypress using javascript, looking for the enter keycode and calling document.getElementById("elementName").click(). This works fine most of the time. Sometimes, though, it seems as if an entire new session is being created, and odd behavior starts happening. For example, my page will only include 2 of the 4 facelets on the screen -or- I will get NullPointerExceptions for objects that I know have been created in the session bean I am currently using -or- I will get a duplicate form Id after trying to re-submit the page. Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"? I'm really at my wit's end here (plus it's nearly 3 AM, that never helps things). All of the buttons being clicked are standard h:commandButtons. There is some setTimeout logic included to disable the buttons on the page to prevent double clicks (I cannot disable them onsubmit because disabled buttons don't pass the right values, perhaps that's causing it, but if so, clicking the buttons with the mouse would cause that issue too, right?)
    I am not posting the code (yet), but if anyone wants to take a look see and see if I am doing something really abhorrently wrong, I'm more than willing to, I'm just curious if anyone has had problems regarding javascript submission of forms via the click() method. Clicking the button does not exhibit this type of behavior. Just as a side note: I am doing different things with the enter key depending if a modal window is open (the enter key closes the modal if it's up, and if not, it submits the form via a button click).
    Any help is much appreciated, if anyone has any inkling about where I should start looking for answers it would be really helpful.
    Thank you.

    edfrost wrote:
    Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"?My guess is the second of these. You need to suppress the event handling after programmatically clicking the button.

  • Create a confirmation popup dialog when submitting a form

    Hi all,
    I have a simple business : ask a question (yes/no) to a user when he is submitting a form.
    This form is an "ADF Form (11g)" and is displayed in a inline dialog. It is triggered for an EntityView when user clicks on an edit button of a table row.
    I've tried lot of different solutions but it never works.
    Let me tell you about these:
    Solution 1: Adding a showPopupBehavior
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>The issue is that the +<af:returnActionListener/>+ is never triggered and the form do not close.
    Solution 2: Adding a showPopupBehavior and change the triggerType
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" triggerType="click" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>By reading in your forum I find this solution to be able to initiate a popup and execute the commandButton action by adding the triggerType="click" on the showPopupBehavior.
    The issue then is that the dialog get closed without waiting for a user response on the popup dialog (yes/no)
    Solution 3: Adding aAdfFacesContext.getCurrentInstance().returnFromDialog(null, null); in my dialog listener
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1">
                    <af:showPopupBehavior popupId="p1" triggerType="click" />
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>
      public void mustClosePreviousAddress(DialogEvent dialogEvent)
        //Business logic
        AdfFacesContext.getCurrentInstance().returnFromDialog(null, null);
      }It looks like it work and close the dialog when click on yes/no on the popup dialog but the value are not submitted and the data model do not change.
    Solution 4: Sendind an ActionEvent on the button when user has made his selection
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:panelFormLayout id="pfl1">
              <af:inputDate value="#{bindings.Datedeb.inputValue}" label="From:" required="#{bindings.Datedeb.hints.mandatory}" shortDesc="#{bindings.Datedeb.hints.tooltip}" id="id2">
                <f:validator binding="#{bindings.Datedeb.validator}"/>
                <af:convertDateTime pattern="#{bindings.Datedeb.format}"/>
              </af:inputDate>
           <!-- ... -->
              <f:facet name="footer">
                <af:group id="g1">
                  <af:commandButton text="Submit" id="cb1" binding="#{backingBeanScope.dialogBackingBean.cb1}">
                    <af:showPopupBehavior popupId="p1" />
                    <af:returnActionListener/>
                  </af:commandButton>
                  <af:popup id="p1">
                    <af:dialog id="d2" title="Assistance" type="yesNo" dialogListener="#{backingBeanScope.dialogBackingBean.mustClosePreviousAddress}">
                      <af:outputText value="Do you want to close the previous adress automatically ? " id="ot1"/>
                    </af:dialog>
                  </af:popup>
                </af:group>
              </f:facet>
            </af:panelFormLayout>
          </af:form>
        </af:document>
      public void mustClosePreviousAddress(DialogEvent dialogEvent)
        //Business logic
        cb1.queueEvent(new ActionEvent(cb1));
      }The same as foor the third solution, it looks like it work and close the dialog when click on yes/no on the popup dialog but the value are not submitted and the data model do not change.
    I've verified with an actionListener, the actionEvent received when the user click on the button is exactly the same as the one i've dispatched manually.
    Can you help me with a solution adressing this issue?
    Best regards,
    Alex

    Mmm something like this ?
        public void newDialogListener(DialogEvent dialogEvent) {
            if (dialogEvent.getOutcome().name().equals("ok")) {
                this.getBindings().getOperationBinding("Commit").execute();
                    // Do something
        }

  • HTTP 400 - Bad request Page cannot be found while submitting tabular form

    Hi,
    My Apex application has sql report for summary and tabular form in a single page.
    This page is working fine when the number of rows per screen is upto 130.
    When we sets the maximum number of rows as more than 130, it displays the record but if we click button to submit the page to save
    it shows page cannot be found.
    HTTP 400 - Bad request
    URL shows apex URL followed by /wwv_flow.accept
    Is there any maximum limits to show number of records in a page in apex.
    Since number of rows selection is not there in tabular form I created a select list with submit item with values 10,20,50,100,500,1000.
    default value is '15'.
    My tabular form has 15 columns and out of them 12 are editable.
    Apex version is 3.1.

    Sounds like you're submitting too many parameters (15 * 130 = 1950), very close to 2000
    Check this post our regarding PlsqlMaxParameters
    "Page cannot be found" error when submitting tabular form
    Scott

  • Form to submit a bug or feature request to Adobe is currently unavailable

    The form found at http://adobe.com/go/wish to submit a bug or feature request to Adobe is currently unavailable.
    I will update this thread when it is online again.

    The bug or feature request form is now available again.
    http://adobe.com/go/wish

  • Feature request: View layer comps in both Comments and Extract

    Good day,
    I'd like to see the layer comps dropdown duplicated and applied to the Comments panel of Extract, in hopes that when viewing layer comps over the web, there's better, faster performance when reviewing comps. Extract is wonderful, but not everyone on my team needs the tools it offers (just developers, really). Everyone on my team does need to view the layer comps, making the comments section an appropriate home for it.
    Note: I'm not suggesting moving layer comps from Extract to Comments. Please make layer comps available to both.
    Thanks for reading,
    -Brent

    Hi John,
    I visit there for other product feature requests quite often. It unfortunately does not offer Creative Cloud as an option from it's dropdown.
    Perhaps I should request that feature? 
    -Brent

  • Feature Request: Ability to download response PDF forms in mass

    I noticed that after receiving a response in formscentral I need to go to each responce so get a saved copy of the PDF form. It would be great to the ability to "CTRL" select which files you wanted to download or the ability to download all response received as indivdual PDF forms. I guess it would even be helpful if you could download them all and receive it as once massive PDF file that could be sorted through after the fact.
    I'm really liking FormsCentral so far and can't wait to see what additional features are coming.
    Thanks!

    Hi;
    We do have a "Feature Request" form where you can vote on popular existing ideas (this one is listed) or add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Josh

  • Feature Request:  Auto-save in Background

    Here's a feature request I've submitted.  If you agree, please submit your request to:
    http://www.adobe.com/go/wish/
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    Background Auto Save
    How would you like the feature to work?
    Auto-save would work just as it does today, except it would work as a background process, as it already does in Photoshop (without the Autosave popup getting in the way of the edit).
    Why is this feature important to you?
    The current autosave feature is terrifice and expected in any application today, but the current autosave popup dialog is useless.  It only has a "Cancel" button.  What's the point?  I can't imagine when I would ever want to cancel an auto-save.  And let's say I *did* want to cancel.  The dialog is only on screen for a second or so.  That's not enough time for user interaction, but it is just enough time for my work to be interupted, and for me to potentially hit the enter key as I go to Render something at precisely the same time.

    Hi cscouper2013,
    Thanks for taking the time to point out that my BSODs might be a problem with my RAM!  Yes, I'll test it with the program you mention.
    cscooper2013 wrote:
    While I'm thinking of it, too.  Sometimes Premiere will do an auto save only moments after I've done a hard save.  That also seems like something to address in the next auto save feature update.  If I have my autosave increment set to 5 minutes, then it seems to me there's no need to do an autosave for another 5 minutes after my last manual save.
    I fully agree!  That's something I requested during the CS5 beta program.  I requested that every time a user does a manual save, the Autosave reset its counter.  So for example, if the delay is 10 minutes between auto saves, and the user does a manual save two minutes before the next scheduled autosave, the autosave counter resets to 10 more minutes.  But with the better solution of the current project constantly being saved after each edit, as Jim suggested, this feature wouldn't even be needed anymore.
    MonkeyEatsMonkey wrote:If Premiere could "borrow" that functionality, while still retaining a "save as" option for versioning, I feel like we'd have the best of both worlds.  It would even make dynamic linking more seamless, since changes wouldn't require saving. Any thoughts from the community on this?
    That would be a perfect solution IMO!  And yes, retaining the 'Save As' option would be very important!
    I also like the idea of automatic versioning/backups (could be renamed to 'versions' since with a constantly saved project file, automatic 'backups' would no longer be necessary.
    To resume, based on what has been discussed in this thread, I believe these would be the ideal saving options in Premiere:
    Autosaving of every edit in the background without slowing down editing performance (as suggested by Jim).
    Ability to create a user defined number of automatic backup versions, by setting maximum number of versions and time intervals (as is currently the case with Premiere).
    In other words, the current project file would constantly be updated as the user edits.  The automatic backups/versions would be created at user defined intervals.
    Users would retain the ability to create a copy of the current project at any moment through the 'Save As' and 'Save a Copy' commands that already exist in Premiere.
    Pop-up Auto-save dialogue boxes and the 'Save' command would be a thing of the past!
    IMO, this would truly give us the best of both words as MonkeyEastMonkey suggests: constant saving as per FCPX, with the comprehensive versioning options Premiere currently offers.
    Anything missing?

  • Feature Request - Please allow for a "classic" view option.

    Please allow for a "classic" view option like you have in Mail.  Miss the sidebar that had a list of all the calendars using.  The pop up list is not nearly as functional.  iCal in Lion may be great for touch screen users but is a step back on the intuitive scale for Mac users.
    Also, the delete / revert button are too close to the done button.  Too easy to hit on accident.

    This is a good feature request and should be submitted here: Adobe - Feature Request/Bug Report Form
    The team reviews all the requests that come in through that form. It is a guaranteed way to get your request seen while we do not always see everything that gets posted to the forums.

  • Can a confirmation email be automatically sent to a person who submits a form?

    I am setting up a job request PDF form for internal use at my company. The team who will be filling out and submitting this form on a recurring basis wants to know if there is a way they can receive a confirmation email after they submit the form, stating the details (date, time) etc of the form submission. As it is, they submit the form and the data goes 'into space' so to speak and they have no record of the form submission or the data inputted. I looked all over and could not find any information about a way to do this. The only other option is for me (the distributor) to manually email them each time I receive form data. Of course I don't want to do this so I'd like to know if there's a way to automate it.

    You will have to set up the form differently than what you get when you distribute it via the "Distribute Form" wizard, unless you can configure your email server to send out an automated response (e.g., a vacation notification response). If you want to go this route, it might be best to set up an account just for your forms and set the vacation response to what you want. You'd then use this email address when you use the distribution wizard. The email address it uses is configured by selecting: Edit > Preferences > Identity > Email address
    You can change it back after you've distributed the form.
    The alternative is to set up the form to submit to a web server, which processes the submission, extracts the user's email address from the form data, sends the notification, and does something with the XFDF. It could forward it on to you in another email.

  • What Do You think of My Feature Requests?

    Hi, I submitted the following Feature Requests to the Premiere CC feature requests form.
    I think Premiere CC keeps improving but there are some things that really annoy me.   And below are some of my requests.   I'd love to know if any of these requests are in error - if I'm actually missing something. 
    Thanks for checking these out!
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    AUTO-PATCHING
    How would you like the feature to work?
    When I select a Track Target - such as V1 Target -  the Source patch should follow along. For example, if I select V1, then the V1 Source should automatically move next to V1
    Why is this feature important to you?
    This saves time and saves an extra, unnecessary step of having to move the Source patch.
    This makes editing faster and more intuitive.
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    Increase/Decrease Volume using Keyboard for MULTIPLE CLIPS at once (between In and Out)
    How would you like the feature to work?
    1. Set in and out in the Timeline
    2. Make sure Audio Targets are set for the tracks you want to affect
    3.  Press your keyboard shortcuts for increasing or decreasing volume
    Result: All Audio volumes between In and Out go up or down by the same amount.
    Why is this feature important to you?
    This saves a lot of time. Currently, I have to copy and paste Volume attributes and that wastes time and is not as intuitive.
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    Select Nearest Edit Keyboard Commands Should Select All Nearest Edits on All TARGETED TRACKS, even if staggered
    How would you like the feature to work?
    1. Position Playhead near the edits you want selected (for Trim)
    1B: Make sure the Track Targets for the tracks you want to affect are highlighted
    2. Press the Keyboard Shortcut for Select Nearest Edit…
    Result: Even if the edit points don't all line up on the same frame, Premiere should select (with a Roller, etc) ALL edit points NEAREST to the playhead on Tracks which have their Target buttons selected.
    How it works now:  Now Premiere only select those edit points that line up together the same frame.
    Why is this feature important to you?
    How Premiere currently works wastes a lot of time. It currently requires the editor to manually click and add other edit selections.
    Currently, Premiere does not actually select all the edit points on SELECTED TRACKS.
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    REMOVE EFFECT - ALLOW US TO CHOOSE WHICH EFFECTS
    How would you like the feature to work?
    1. Highlight one or more Clips to select them.
    2.  Press the Remove Effects Keyboard Shortcut
    What should happen: Premiere should present you with a window that allows you to check the effects you want to remove or uncheck the effects you don't want to remove.
    Why is this feature important to you?
    This is very important because often I have a remove just one effect on a large group of effects.  I don't have the time - it would take forever - to go through each individual clip and eliminate that particular effect in the Effect Controls panel.
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    A Paste Insert should move the IN/OUT marks down the Timeline, just like the clips
    How would you like the feature to work?
    1. Set an In an Out point somewhere in the timeline.
    2  In the timeline, after copying some material,  PASTE INSERT, the clips in front of a whole bunch of other clips (also earlier than the In/Out marks)
    What Should Happen:
    Material AND In/Out marks should shift to the right to maintain sync.
    What currently happens:
    Premiere correctly shifts the Clips that follow the pasted material, Down the Timeline, to maintain sync.  However, Premiere keeps the In/Out Marks where they are.
    Why is this feature important to you?
    I often copy  material that's between In/Out marks and then go earlier in the Timeline and paste Insert that material. But when I jump back to the In point (Go to In) the In/Out marks haven't move and so I have to find my place in the material all over again.
    It shouldn't work this way. It wastes time. And other NLEs don't do it this way. They shift the In/Out marks.

    Nice requests. Just trying to be helpful here:
    Re REMOVE EFFECT - ALLOW US TO CHOOSE WHICH EFFECTS
    I agree - this could be quite useful. However, It sounds like using adjustment layers may be helpful for your workflow also?
    Re: Increase/Decrease Volume using Keyboard for MULTIPLE CLIPS at once (between In and Out)
    I've stopped using volume altogether now, and instead use 'Gain' mapped to "g" key in premiere keyboard layout. SUPER useful, for all the reasons you describe. I've never used I/O marks, but you can make big selections of clips, or a whole track's. Volume controls in Premiere, as far as I can tell, caps at +6DB for some reason. I routinely have to go much higher than that. also there is a very intelligent gain options screen that lets you bump your selected clips relatively by +/- DB levels; or set absolute values; OR set normalization targets. I LOVE IT, and its all I use now.
    It seems to me that the audio component of Premiere if far more sophisticated than any other NLE I've used  [ Avid MC, FCP...]. My only caveat is that volume and gain are not integrated across all methodologies. For example, you can have a volume adjustment on the clip, the track, and gain adjustments on the clip all operating independently- its alot to keep track of on projects that get passed back and forth between different editors with different methods!

  • Feature Request: Please allow us to merge audio with image sequence in AME.

    So far the only programs that allow this (that I'm aware of anyway) are the old version of QuickTime Pro, and Apple's Compressor. I simply want to add an image sequence to AME, and combine an audio track to that image sequence for export. This would save me an extra step. 80% of my work begins and ends in After Effects. I do very little video editing, so most of my exports are rendered from AE and then exported from Quicktime or Compressor to whatever file my clients request (Most often ProRes for a master version, and h264 or x264 Quicktime files for the web).
    Is it possible we might see this feature added anytime soon? Thanks!

    This is a good feature request and should be submitted here: Adobe - Feature Request/Bug Report Form
    The team reviews all the requests that come in through that form. It is a guaranteed way to get your request seen while we do not always see everything that gets posted to the forums.

Maybe you are looking for