Temporarily stop the execution of grep styles

Hello

I still bring a book with lots of texts in three languages. I have several paragraph styles with up to 10 grep styles. So my short of very slow InDesign files, I think that cause grep styles in my paragraph style.

My question is, is there a way to prevent the grep style to run in the paragraph style without removing them?

Concerning

Sascha

Hi Sascha,

Add an asterisk in front of the GREP expression: *.

Uwe

Tags: InDesign

Similar Questions

  • The call of a Subvi without stopping the execution of the main thread

    Hello everyone, I have a rather simple demonstration VI, which opens a menu where the user can call a few screws, signal generation, reading and analysis, each contained in a Subvi and with their own front panel and chart controls. The idea is user just click a button and the required Subvi is in charge, I use a structure of the event to ease.

    Problem is, after I opened an option, said Subvi hogs the thread of execution and does not allow for new bodies until it is closed (this is inside a while loop it is so logical, I guess), the queue of events and the next before Panel charges only after that I have stop the Subvi. I would like to be able to simply open the front panels and let them run in parallel, without them in the meantime another at the end, is it possible?

    natasftw is right.

    A high school is a "hole" in your main panel.  You "insert" a separate VI in this 'hole' and then you see the Panel of VI inserted through the hole and mouse clicks through the hole of the Subvi below.

    You will need to run the Subvi separately, even if - by inserting just can't run.

    Aynchronous call will begin a Subvi running and then return to the calling thread with the Subvi running in parallel.

    You can then insert the Subvi in a secondary, or let it have its own window, as you choose.

    There are examples of both techniques.

  • Stop the execution of the VI Plugin

    Hello Experts!

    I wonder about an elegant solution for my problem. I have a top of page VI secondary container level, in order to call the VI plugin interfaces in. The plugin vi itself has own state machine (Machine State in queue of JKI) and called by VI Server - VI to run the method.

    As the VI plugin begins to run, the state machine for the active loop and the VI plugin can be closed if put everything in a loop condition of true. It there is no problem with that, but imagine a situation when the user wants to exit the application when the two screws are running. (Plugin Interface and high level VI) The custom of the app stops because the loop high-level completed vi execution only.

    I'm looking for an elegant solution to stop the plugin VI-s, without closing them normally. There are many topcics on opening Plugin screw (calling Dinamic) but stop them!

    Thanks in advance!

    All the methods to properly stop several screws top-level revolve around using the standard message for interprocess communication protocols.  They also assume a kind of State machine or order manager in each of the top level screws.  There are two broad categories - broadcast and point-to-point.

    Dissemination methods send a message from a sender to multiple receivers, usually without waiting for an answer.  The best method of dissemination is probably defined by the user of events, but reporters are easier if you do not want that all processed messages.

    Methods of point to point send a message from a sender to a receiver.  They are often both directions, call and response, messaging systems.  The best of them is the queue.

    These methods and examples are included in a series live TV that I wrote some time back the performance level you can find all the entries from the links on the last.

    All of this assumes your top-level screws are on the same computer running in the same process.  If you are running in different processes or on different computers, you will need to explore other protocols such as TCP/IP, network flow. or UDP to pass your messages.  However, I never did it, so can not comment coherently on this subject.

  • Point to add to the script or Grep Style?

    Hello

    Is it possible to add a hightlight to a script?  Basically, what I want to do is highlight the text and the tricky part is that the text changes size depending on the size of the file, we are working on that.  I want to highlight automatically the "FOR PROFESSIONAL USE ONLY" the way that we do now is to underscore that in the menu options underscore: say my font size is 8, leading 9.6 (these will always change).

    Weight: = 9.6

    Shift: = - 8*.33

    Color = yellow

    It's the way we do now.  Can it be scripted or Grep style which will automatically do this for certain lines of text only?  And no matter the font size calculate what he needs to do if its 2pt, 10pt 100 PT etc... It will highlight the text specified correctly?

    I hope it's possible...

    Thank you

    The lower one is best.

    I remove a bug and also if not 'what' is provided to the point function culminating and there is no entry in find it which is the find panel of text and text is selected, then this text is highlighted.

    An idea in the script is that a shortcut can be applied to it and it will get its information from the Panel of text search.

    So for now to change the answer to this one

    // Highlight function by Trevor
    // http://creative-scripts.com
    // Custom Scripts for Adobe InDesign, Illustrator and a lot more
    // Beta Version 1
    // https://forums.adobe.com/message/8898663#8898663
    
    function highlight(what, color) {
        var range, s, doc;
        doc = app.properties.activeDocument;
        if (!doc) {
            return 'No Active Document';
        }
        s = app.selection && app.selection[0];
        range = (s && s.properties.underline !== undefined && s.characters.length) ? s : doc;
        app.doScript(f, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, 'Highlight Text');
    
        function f() {
            var finds, find, l, leading, pointSize, currentChangeProps;
            color = color || app.activeDocument.colors.itemByName('Yellow');
            // Store current find change text settings
            currentFindTextWhat = app.findTextPreferences.findWhat;
            currentChangeProps = app.changeTextPreferences.properties;
            what = what || currentFindTextWhat;
            if (what !== '') {
                // if no what is provided then the current entry in the find text panel will be used
                app.findTextPreferences.findWhat = what;
                app.changeTextPreferences.changeTo = '';
                app.changeTextPreferences.underline = true;
                app.changeTextPreferences.underlineColor = color;
                finds = range.findText();
                range.changeText();
                l = finds.length;
                while (l--) {
                    find = finds[l];
                    leading = find.leading;
                    pointSize = find.pointSize;
                    leading = pointSize * find.autoLeading / 100;
                    find.underlineWeight = leading + 'pt'; // This is presuming that font and leading size is set to points!
                    find.underlineOffset = (pointSize - leading) * 1.5; // The 1.5 might need tweaking but seems to work well
                }
                app.findTextPreferences.findWhat = currentFindTextWhat;
                app.changeTextPreferences.properties = currentChangeProps;
            } else if (range !== app.activeDocument) {
                leading = range.leading;
                pointSize = range.pointSize;
                leading = pointSize * range.autoLeading / 100;
                range.underline = true;
                range.underlineColor = color;
                range.underlineWeight = leading + 'pt'; // This is presuming that font and leading size is set to points!
                range.underlineOffset = (pointSize - leading) * 1.5; // The 1.5 might need tweaking but seems to work well
            }
        }
    }
    
    /***************************************************************************************************************************************
    ** If text is selected then the "highlighting" is only applied within the selected text                                              **
    ** Otherwise the "highlighting" is applied within the whole document                                                                **
    ** One could change this to apply to what ever is selected in the Find text document if one wanted to                                **
    ** To highlight the word(s) in the find text panel just use highlight(); or highlight(undefined, app.activeDocument.swatches[5]);    **
    ** One can use highlight('Foo'); to highlight "foo" and ignore what's in the find text panel                                        **
    ** The formating / styles etc. for the find are taken from the find panel                                                            **
    ** If one provides a swatch as the second argument highlight(undefined, app.activeDocument.swatches[5]); that swatch will be used    **
    ** otherwise yellow will be used                                                                                                    **
    ** If one provides a swatch as the second argument highlight(undefined, app.activeDocument.swatches[5]); that swatch will be used    **
    ** If text is selected and what argument is given and the find what in the find panel is empty then the selected text is highlighted **
    **************************************************************************************************************************************/
    
    highlight();
    
  • Stop the execution of a loop in a structure of the event

    I tried searching the forums to avoid posting a duplicate, but more I couldn't open most of the vi as they were higher.

    I put in a dummy while loop in an event structire I intend to use. Once I have begin to execute the while loop, I am not able to stop using a control for some reason any the fornt panel control.

    I am not able to change the vale of the shutdown command at all. I tried to create a separate event for the STOP, and I still couldn't stop the program when the While loop was running.

    I guess I'm missing something really small. I would appreciate your comments on this.

    Thank you

    Nevil

    Right-click on the structure of the event and choose 'edit events' in the case that gives you bad.

    Make sure that the check box lock the front panel is not checked.

    I suspect that yours is checked, so your front is locked until the end of the event, so you can never stop your loop.

  • Stop the execution of the method while the page is loading

    Hello

    I'm new to the development of web service client. I created a client using the full declarative approach, namely the average webservice dataControl. The web service, I created required 2 parameters to pass and returns a list. So I dragged and dropped the two parameters such as form fields and list in table form in the same page, as well as the execute method button.

    But the problem is when I loaded the page, get the webservice call/called and passes the parameters as null. And so I get a msg of validation. Can someone let me know what needs to be done when to avoid the execution of the method (webservice call) while the page is loading.

    Kind regards

    Marie Antoinette

    Did you check that?

    https://blogs.Oracle.com/Shay/entry/delay_method_execution_when_us

  • Stop the execution of a pps slide show

    How can I stop running a presentation of pps in labview? I have a diagram to run a pps file, but how can I stop running?

    Back to the wire coming out the open node.  Right click and select the Create method.  That will allow you to create a method on the application class.  There is a method called Quit.

    As long as you don't let not your VI finish and close the reference to the application, you can use this method when you need to quit powerpoint.

  • How to stop the execution of service?

    How to stop these services:

    usbservice

    DeviceUsageService

    TVOutGaService

    UpnpClientManagerService

    EnterpirseService

    I stop at them so they auto restart

    sonebody can help me stop them!

    Concerning

    Well, I'm sure he has on the game of Google applications that can help you with that, but it's not something I would recommend.

  • Centro Palm OS program of list manager to stop the execution of programs

    I'm trying to figure out how to get a list of programs currently running on my centro so I can pick one and stop it. While playing with pockettunes, I noticed that I couldn't stop it once it starts. Is there something on the Centro Palm OS which will allow me to switch/programs running at one of the list or cancel a?

    Thank you

    Hello and welcome to the Community Forums of Palm.

    Palm OS devices although not "multi-tasking" as a desktop computer, audio applications have the ability to run in the background.  Background reading is a switchable option... you can turn it on and off.  Go to the Menu > Preferences > background prefs.  If you want to disable this feature, uncheck the box.

    If Pocket Tunes plays a song and you switch to another application before having ceased to Pocket Tunes to play, the music continues to play with background playback introduced on the market.  To stop it, whatever you have to do is open Pocket Tunes again, press the button Stop and exit again.  It will not continue to "run" in the background without actively playing music.

    Message relates to: Centro (AT & T)

  • How to stop the execution until a parameter is provided to query?

    Hi, I use Oracle Application Express 4.2.3.00.08 on Windows 7. How can I stop running query until a parameter is provided? The report, I have a selection criteria on the top to move date and users have asked to date default null. So when I run the report, the query is executed with date = null and returns all zeros in the report. I want the report only to run until users actually add a date and enter the "submit" button. Help, please. Thank you very much in advance.

    Oracle_Gal wrote:

    Hi, I use Oracle Application Express 4.2.3.00.08 on Windows 7. How can I stop running query until a parameter is provided? The report, I have a selection criteria on the top to move date and users have asked to date default null. So when I run the report, the query is executed with date = null and returns all zeros in the report. I want the report only to run until users actually add a date and enter the "submit" button.

    Add an additional predicate to the report where clause to check that the parameter is not null, like:

    ...
    and :p1_date is not null
    ...
    

    Moreover, do not make the entire state region until a value is submitted by using a region point is not null condition.

  • FlashGot suddenly causes FF hang after closing. Takes about a minute to stop the execution. Why?

    During 2 days, I noticed that FF does not close the output. The process continues to run for about a minute, using up to 100% of my resources. After the suite Mozilla troubleshooting guide, I found the culprit to be Flashgot. I can run ALL my extensions and plug-ins and don't have this problem. But at the point where I have activate Flashgot, this problem occurs. What is strange is that I've been running FF and Flashgot for a year with no problems. Even after updating both versions the latest, everything was fine. It was only a problem in the last 2 days. In addition, exactly the same thing is happening on my wife's Office, as well. Once again, that in the last 2 days. I tried uninstall/reinstall the two FF and Flashgot, but to no avail. What is going on?

    Create a new profile and delete the old one seemed to solve the problem. Why the problem occurred in the first place is beyond me. But after creating the new profile, restore all my favorites and reinstall Flashgot, everything seems to be a behavior wonderfully. For anyone else having similar problems, I recommend that you create the new profile. It is easy to do, as long as you save your old, then you can copy all of the files required to restore your preferences and bookmarks.

  • Repeat steps. How can I get rid of the following warning: "stop the execution of the script or it will slow down your computer"... I click Yes to stop... the cursor disappears, replaced by (I).

    How can I get rid of this problem?

    http://support.Microsoft.com/kb/175500

    Go here and if you are comfortable editing the registry, there is a difficulty.

    I just started this for me I received these also.

  • stop the execution of the script

    I have a problem in my computer hp laptop g62-453tu. My operating system is windows 7.i am mention

    caveat below, which r showing periodically on my laptop. Please help me

    Thank you so much, I have reinstall my google chrome. Now I have no such question.

  • GREP style: Find all the letters between

    I am trying to create a GREP style to deal with a signature of two lines like this:

    -Name of the author,

    Source cited

    I want the name of the author to be caps/sc and the font that I use has an established expert, so I need to replace only the lowercase characters of the name of the author with the sc. character style

    So far, what I did is creat a character style that is defined as the Roman. I then to my grep styles:

    peps.jpg

    The italic style applies to the 2nd line (after a forced line break) very well.

    However, I can't do it sc style to apply to my lc between the em dash characters and the comma. I can get the sc to be applied to the whole line, if I use '. ' for any character, but "\l" does nothing for me...

    Someone at - it advice?

    Thank you

    Chris

    Thanks for the help. You led me in the right direction.

    I was doing too complicated and I still don't have a firm grasp on what GREP may or may not do.

    I solved the problem with GREP styles:

    The reason that I can't apply sc for the first line is because the font I'm using is old and includes a set of expert. In police expertise, there are only small capitals. Strikes in uppercase are reserved for the factions, currency symbols and other glyphs not standards.

    Best,

    Chris

  • How to stop the reader of fingerprints on Portege R200?

    Someone knows a way to temporarily stop the usefulness of the fingerprint reader?

    Hello

    Quad is right. I prefer a clean removal.
    Please, go to Control Panel then add and remove programs--> fingerprint reader utility

    Best regards

    Good bye

Maybe you are looking for

  • Why will not erase the deleted messages in Thunderbird in FACT?

    This problem does not exist on my other computer or my phone when I delete imap messages, but when I delete this computer, even if it appears in the Trash of Thunderbird folder on this computer, it is not actually go in webmail or on any other device

  • How can I make the add-on from the norton toolbar appear in the list of Add-ons?

    Try to get norton toolbar visible id. It is present and active in the list of modules; but I does not appear in the list of toolbars. Therefore, it cannot make it visible on the screen.

  • j k flip

    HelloI'm trying to built a flop flip j k as below with on the clock I always get an unstable state I'm looking for in nor I found a few j k flip.vi but it complex I find that the shift register both initially run fake and wrong in sequential logic, t

  • Many DAQ cards synchronize hardware for PXI

    I recently went through the process of getting several PCI DAQ cards in a computer and synchronize them together using a RTSI cable.  I just bought two similar cards in PXI.  I had to add a RTSI cable DAQmx devices manually in the measurement and aut

  • zapnuti Festival radia

    zapnutie Festival radia