How to use Edit/Quickly Apply?

How does the command "Quickly Apply" work?
I have paragraph styles that I made earlier and that show up when I select "Quickly Apply" but I have tried to apply it to marked text or just when selecting a textframe - neither worked. I marked the text and then I clicked the paragraph style in the Quickly Apply-box. I thought I could quickly reformat a text with this command. What am I doing wrong?
Help...

It doesn't sound as if you are **** anything wrong. Do you have locally applied formatting, or a character style which might be interfering with the paragraph style? Will it apply properly from the paragraph styles panel?
Peter

Similar Messages

  • [JS][CS5] How can use 'edit with' option for link using sripting

    Hi All,
    I Can edit link using Link.editOriginal () if the default application is as i need it will open it from there, when I try to open it with other application instead of default application of link file I can't (usually we "use edit" with option in manually). Is there any option to do it in scripting.
    Any clue will help us to update the large set of links in a single click.
    Thanks in advance,
    Sankar L

    Hi csm_phil,
    You are exactly catch my point, my requirement is to update math type eps file. If my math type equation default application file is illustrator (say) as below
    it will open in illustrator instead of mathtype if i use editOriginal function...
    Jus i need to open it in mathtype, the link file default application file is whatever it is.
    Thanks,
    Sankar L

  • How to use Edition Based Redefinition in APEX?

    Hello,
    This might be my first question on this forum ;-)
    I am trying to get 11gR2 Edition Based Redefinition to work within APEX. But for testing purposes (before altering the database to use the new edition as the default) I have to set the edition at the session level. But as APEX shares sessions from the pool (I might get another session with every page refresh/call), I need to execute an ALTER SESSION command.
    I can't use EXECUTE IMMEDIATE, 'cause that results in:
    execute immediate 'alter session set edition=HR_RELEASE2';
    ORA-38815 : ALTER SESSION SET EDITION must be a top-level SQL statement
    So is there a way to just run a SQL command at the "start" of a page (request)?
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    Edited by: Roel on Feb 28, 2010 7:00 PM
    - Changed the subject of this post (for an easier search on the forum)

    Hello all,
    Patrick and John were on the right track...
    After contacting Bryn (the Oracle brain behind EBR), there appeared to be a DAD attribute called 'database-edition'. Using this you can change the Edition of a DAD (and via the DAD ... all the users that use that DAD):
    begin
    dbms_epg.set_dad_attribute('APEX', 'database-edition', 'HR_RELEASE2');
    end;The funny thing is that a user doesn't have to re-connect. With the next server roundtrip he will use the other edition!
    Remarkable fact: This setting doesn't effect the Session-Edition, but only the Current-Edition. Have to test how that'll work out when using CrossEdition Triggers...
    Another thing: There seems to be an equivalent for the Apache /HTTP Server.
    You have to add a line to your dads.conf setting for PlsqlDatabaseEdition.
    If I add that line (in my environment) the HTTP Server fails to start with:
    /home/oracle/OraHome_1/Apache/Apache/bin/apachectl start: execing httpd
    Syntax error on line 48 of /home/oracle/OraHome_1/Apache/modplsql/conf/dads.conf:
    Invalid command 'PlsqlDatabaseEdition', perhaps mis-spelled or defined by a module not included in the server configurationApart from that: You have to restart the HTTP Server to use the changed DAD. So that is in opposite of the whole goal of EBR (24 x 7 availability).
    Once I figured it all out I'll write a blog post about it. If somebody has anything to add to this thread, feel free! Especially the HTTP Server/Edition combination would be interesting!
    Greetings,
    Roel
    http://roelhartman.blogspot.com/

  • How to use Editable Fields in ALV

    Hi,
    i am using alv with checkbox at extream right and one field date which is  editable.
    now i am executing program,selecing the checkbox and changing the date.
    i want to store the new value of the date field of the selected row in the internal table.
    anyone can tell me how can i store the new value of date field of the selected rows in the internal table.
    Thanks in advance.
    Chintan

    Hi Chintan,
    Please check this code:
    there is sample code for it...
    REPORT  ZTESTDFALV1                             .
    *Data Declaration
    DATA: BEGIN OF T_EKKO,
      EBELN TYPE EKPO-EBELN,
      EBELP TYPE EKPO-EBELP,
    FLAG TYPE C,
    HANDLE_STYLE TYPE LVC_T_STYL,
    END OF T_EKKO.
      DATA: GD_REPID LIKE SY-REPID, "Exists
      REF_GRID TYPE REF TO CL_GUI_ALV_GRID. "new
    DATA: BEGIN OF IT_EKKO OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_EKKO.
    DATA: BEGIN OF IT_BACKUP OCCURS 0.
            INCLUDE STRUCTURE T_EKKO.
    DATA: END OF IT_BACKUP.
    *ALV data declarations
    TYPE-POOLS: SLIS.                                 "ALV Declarations
    DATA: FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_LAYOUT    TYPE SLIS_LAYOUT_ALV.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_FIELDCATALOG.
      PERFORM BUILD_LAYOUT.
      IT_BACKUP[] = IT_EKKO[].
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  build_fieldcatalog
          text
    FORM BUILD_FIELDCATALOG.
      REFRESH FIELDCATALOG.
      CLEAR FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELN'.
      FIELDCATALOG-SELTEXT_M   = 'Purchase Order'.
      FIELDCATALOG-INPUT     = 'X'.
      FIELDCATALOG-EDIT     = 'X'.
      FIELDCATALOG-COL_POS     = 2.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
      FIELDCATALOG-FIELDNAME   = 'EBELP'.
      FIELDCATALOG-SELTEXT_M   = 'PO Item'.
      FIELDCATALOG-COL_POS     = 3.
      APPEND FIELDCATALOG.
      CLEAR  FIELDCATALOG.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM BUILD_LAYOUT.
      "Permet d'ajuster les colonnes au text
    gd_layout-colwidth_optimize = 'X'.
    GD_LAYOUT-TOTALS_TEXT       = 'Totals'(201).
    gd_layout-box_fieldname = 'SELECT'.
    gd_layout-box_tabname   = 'IT_EKKO'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM DISPLAY_ALV_REPORT .
      GD_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM        = GD_REPID
               i_callback_top_of_page   = 'TOP-OF-PAGE'
                I_CALLBACK_PF_STATUS_SET  = 'SET_PF_STATUS'
                I_CALLBACK_USER_COMMAND   = 'USER_COMMAND'
               i_grid_title             = 'My Title'
                IS_LAYOUT                 = GD_LAYOUT
                IT_FIELDCAT               = FIELDCATALOG[]
           TABLES
                T_OUTTAB                  = IT_EKKO
           EXCEPTIONS
                PROGRAM_ERROR             = 1
                OTHERS                    = 2.
      IF SY-SUBRC <> 0.
        WRITE:/ SY-SUBRC.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN EBELP
       UP TO 10 ROWS
        FROM EKPO
        INTO CORRESPONDING FIELDS OF TABLE  IT_EKKO.
    ENDFORM.                    " DATA_RETRIEVAL
                         FORM SET_PF_STATUS                              *
    FORM SET_PF_STATUS USING RT_EXTAB   TYPE  SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD_FULLSCREEN1' EXCLUDING RT_EXTAB.
    ENDFORM.                    "set_pf_status
    *&      Form  user_command
          text
         -->R_UCOMM    text
         -->RS_SELFIELDtext
    FORM USER_COMMAND  USING R_UCOMM LIKE SY-UCOMM
                             RS_SELFIELD TYPE SLIS_SELFIELD.
    *then insert the following code in your USER_COMMAND routine...
      IF REF_GRID IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            E_GRID = REF_GRID.
      ENDIF.
      IF NOT REF_GRID IS INITIAL.
        CALL METHOD REF_GRID->CHECK_CHANGED_DATA
      ENDIF.
    *modify
      CASE R_UCOMM.
        WHEN '&IC1'.
          CHECK RS_SELFIELD-TABINDEX > 0.
          IF RS_SELFIELD-VALUE EQ '6000000001'.
            CALL TRANSACTION 'ZDF2'.
          ENDIF.
        WHEN 'REFRESH'.
          READ TABLE IT_EKKO INDEX  RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            READ TABLE IT_BACKUP INDEX RS_SELFIELD-TABINDEX.
            IF SY-SUBRC = 0.
              IF IT_EKKO <> IT_BACKUP.
    then do your check
              ENDIF.
            ENDIF.
          ENDIF.
          PERFORM DATA_RETRIEVAL.
          RS_SELFIELD-REFRESH = 'X'.
      ENDCASE.
    ENDFORM.                    "user_command
    and also check this thread in which i gave the solution....
    REUSE_ALV_GRID EDITABLE
    This should help u out...
    Mark useful answers...

  • How to Use Edit - Cut  menu Command in my program

    Hi All,
    I want to call edit->cut menu action from my program, i have tried with textmodel->cut and also scrapsuite-> cut method, it works for normal text but i have a document with text from Word documents, when i cut the text from menu edit->cut it works properly, but when i tried to cut it from my code i get asserts like owneditem->getconnectedtotext() and the system crashes.can anybody guide me in this regard
    Thanks
    Madhu

    Hi i tried the following code<br /><br />SelectText (poTextModel, oRangeData);<br />InterfacePtr<IActionComponent> iptrActionComponent(CreateObject2<IActionComponent>(kScrapComponentBoss));<br />if (iptrActionComponent != nil )<br />{<br />IActiveContext *poActiveContext = gSession->GetActiveContext ();<br />if (poActiveContext != nil)<br />b iptrActionComponent->DoAction (poActiveContext, kCutActionID); asserts at this point<br /><br />}<br /><br />I am getting "About to use nil interface ptr!" assert,<br /><br />SelectText (poTextModel, oRangeData)->(My function which selects the text of specified range in the specified textmodel) <br /><br />Is anything wrong in the above code

  • What are the logical database source (SQVI) should i use for quick viewer

    Dear expert,
    Would like to seek for your help, how to use (SQVI) quick viewer/SAP query to generate the listing of   and can I use SQVI -quick viewer and select the data source as logical database source to generate in order to generate the listing of GL account number,GL account descrition , tax category,posting without tax allowed column in the query by company?
    Between, what are the data source should I use for logical database to generate the query with listing of GL account number,GL account descrition , tax category,posting without tax allowed column in the query by company?
    Please help.
    Many Thanks.
    Regards,
    Karen

    Hi,
    Thank you for the prompt reply, what I would like the query to generate is the master data GL listing for GL account,GL description,Tax category, posting without tax allowed column where i use BRF as the data source for logical database to generate the quick viewver but the BRF data source do not have the GL description.
    How I can join table/join query or what are the data source should i use so that i can able to generate the query with GL master data listing by company code by display GL account,GL description,Tax category, posting without tax allowed?
    Between,do you have any reference/link/document on the how to use the SQV1?
    Also, what the difference between SQV1 and SQ01 ?
    And also what are the sap query,inforset query,quick viewer mean for and what are the difference between them also when should i use sap query,inforset query,quick viewer  to generate the query?
    Please help.
    Many thanks.
    KH

  • Numpad 789 and 123 not working in Quick Apply[ctrl+enter] window.  [CC2014.1]

    Hi guys,
    We recently switched to CC2014 from CS5.5 and one of the feature we had been using a lot before was the Quick Apply window.  However when we want to use the Quick Apply feature in CC2014.1 with the numpad, the numbers 789 and 123 don't work, while 456 work without problem.  Our style name has numbers in them and it's super practical to have the numpad and Quick Apply working together at 100%.
    Can anyone shed some light on this problem?
    Thanks you.

    you might have already tried this – but try is resetting the InDesign preferences on the workstation that is having issues. (Press Ctrl+Shift+Alt on startup).
    I haven't but I just tried and it didn't fix it.
    remove any third party plug-ins you might have installed in InDesign as well.
    The Only 3rd party plug-in we use is Math Magic, I have just removed it, reset the preferences and it still don't work.
    Is there a chance you are able to update the version of InDesign CC you are running to the latest release build 11.0.0.22?  (2014.1.0 Release), and repeat the tests in that?
    I think at this point it seems to be the only solution left and to cross our finger this will work, but updating PC's is a little tricky because it needs to go through IT software packaging and those affected PC are off the grid in a secret environment.
    when you create a new InDesign document and import the styles from the 'problem' document (Paragraph Styles panel menu: Load All Styles), are you able replicate the issue in the new document?
    New document, with or without our styles have the same behavior.
    when you create a new document in InDesign and add a few new styles with numbers, can you replicate the issue?
    You know in the quick apply you can type anything and normally even if you don't have a style with the entered character it will be inserted in the search box, but we don't get to this point with the 7,8,9 and 1,2,3 from the numpad.
    Is this an issue you can replicate on other computers / keyboards in the company?
    Actually they are not laptop, Dell also sell desktop PC.  My computer is an HP Laptop with an external keyboard and I have the same issue they are describing me.
    I wish I could test at my end for you, but unfortunately I only work on laptop-keyboards hopefully someone else out there is willing to test for you – so we know if it's an issue that can be replicated.
    So on your end when you go to the quick apply window (ctrl+enter) and use the numpad key 7,8,9 and 1,2,3 you see them been displayed in the search box?

  • How do I edit optimised artwork in Illustrator so that the changes apply to all its instances?

    Hi,
    I am working on a layout in Flash Catalyst CS5 that I exported from Illustrator that is made of many instances of various optimised graphics. I now changed my mind about one of my optimised graphics and would like to make a change to it in Illustrator however I need to break it apart first in order to do so. I am stuck because I would like those changes I made in Illustrator to apply to all the instances of that optimised graphic however when I optimise the artwork back to a vector graphic, its a different symbol and therefore is no longer related to those instances. Therefore, how can I edit optimised artwork so that the changes will always apply to its instances?
    Thanks

    When you have placed your Spry menu in a Template, you must set the links in the Template and preserve the menu in an ineditable region by not making an editable region surrounding it. Don't forget to make editable regions in the rest of your page, so you can put content on the pages!
    When you save a page as a Template, the Template is placed in a Templates folder, and DW keeps track of maintaining the accuracy of the links. You do not have to change the links in the Template for the child pages, DW does that for you.
    When you are using a Template to create child pages, you do File > New Document > Page from Template, choose the template, check the box labeled "Update page when template changes" and press "Create".
    Save the page in the appropriate place in your site files, and you should be good to go.
    You can use a Template for many many pages...there is no limit, as far as I know.
    You might find it useful to review the tutorials on Templates just to refresh your understanding. Here is a link to the Help documentation: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7acda .html
    Here is a link to Template Tutorials: http://www.adobe.com/devnet/dreamweaver/articles/ora_dw_cs4_mm.html#templates
    Beth

  • Quick apply using javascript

    How do you quick apply using javascript? I looked at the API but did not see a property or method.

    I really should stop posting when I'm tired to fully read the original message.
    My focus is on single page documents where the composer also can be an issue but I do not need the Smart Text Reflow feature, which is dependent on composition so it comes even later. Actually I have not used it in years and had to look up how to prepare a document and find out what's going on. Btw, internally the feature is called AutoFlow.
    If deleting pages is your issue, you can easily do it by script, but I understand if you prefer to utilize the builtin feature ...
    var ts = app.activeDocument.stories.lastItem(); // use your story
    if( !ts.overflows ) {
        var lastIP = ts.insertionPoints.lastItem();
        var lastTF = lastIP.parentTextFrames[0];
        for( var emptyTF=lastTF.nextTextFrame; emptyTF; emptyTF=lastTF.nextTextFrame ) {
           var emptyPage = emptyTF.parent;
           emptyPage.remove();
    Dirk

  • When I download pictures from my camera they use to also downloan in Cannon's Easy Photo. In my new computer they don't. I want them to. How???  Also how do i edit photos in Photoshop and print 4 to a page?

    When I download pictures from my camera they use to also downloan in Cannon's Easy Photo. In my new computer they don't. I want them to. How???  Also how do i edit photos in Photoshop and print 4 to a page?

    Please study this, then come back with more specific questions
    Learn Photoshop Elements 12 | Adobe TV
    Learn Photoshop Elements | Adobe TV
    Use of the tools is pretty much the same in all versions of the program.
    "Edit" is a menu item in Photoshop Elements Editor. Don't you see this?

  • How do I edit a PDF file using Acrobat 9 - Version 9.4.0

    My company - [name deleted by host] purchased Acrobat 9 - Version 9.4.0. for me
    How do I edit a PDF file using Acrobat 9 - Version 9.4.0
    I need to edit - copy, extract text, add text, etc. from existing PDF files to SAVE my changes,
    or create a new PDF file from an existing file.
    This is very important for me to be able to do my job effectively.
    I spent over 2 hrs the last few days, and another hour today, still can't do it.
    PLEASE respond ASAP with a solution.
    Thanks in advance,
    - Daulton West
    [signature deleted by host]

    PDF is an end destination format - although Acrobat is capable of making minor changes to a file (e.g. to correct typos) it is not a word processor or DTP application. Major changes must be done in the original document, and the PDF file re-exported.
    You can copy text from a file by selecting it and right-clicking, or you can save the file as plain or formatted text. To make small changes to the text on a page, use the touchup tool - see the help file for more info.

  • How do I edit a scanned document using Adobe services?

    how do I edit a scanned document using Adobe services?

    To edit a document you will need Acrobat Pro.

  • How do I edit/convert a pdf using Acrobat Pro?

    I am trying to convert/edit(not sure of the proper term to relay my dilemna; my experience with Acrobat Pro and pdf's is limited.) a pdf file.  I want to use edit some of the content on the document.  I am aware of the "typewriter" tool and have used this in completing pdf documents fo "fill in" the blanks (ex: completing an application); however, this will not work when I try to edit the actual content.
    Does anyone have any suggestions?  Keep in mind you HAVE to use very "simple" language when explaining to me how I do this, ha!
    Thank you for any suggestions you may have.

    Maybe you need to remove your PDF security so then you can edit it. Adobe Acrobat cannot edit the limited PDF files.
    Remove the PDF security
    I am now using Adreamsoft PDF eidtor, With this smart PDF edit software, you can edit the text, images, annotation, layouts and pages of a PDF file. And you can also edit a PDF file by setting security password.

  • Quick Tip: How to create editable form fields | Acrobat X Tips & Tricks | Adobe TV

    A short tip that details how to create editable form fields using Acrobat X Std. or Pro.
    http://adobe.ly/wzXkmL

    I have created a form which will be filled out by customers and sent back to me via 'submit' button. What I am trying to figure out is when we receive the filled out form, is there any way to have it as a pdf. To clarify, when the form is filled out and sent, the receiver opens the email and attached is a non-editable pdf. This way the customers information is no longer editable.

  • How do I edit and sign documents using adobe?

    How do I edit and sign documents using adobe?

    To edit a document you will need Acrobat Pro.

Maybe you are looking for