remove the selection text box in the text block related

I chose text frames linked text frame

out of the text and I want to delete a block of text

Is it possible that an order letter

B1.jpg

same thing by selecting the external box

B2.jpg

Ok. Try now,

var doc = app.activeDocument;
app.findGrepPreferences = app.changeGrepPreferences = null;
app.findGrepPreferences.findWhat = "~a";
var found = app.selection[0].findGrep();
for(var i =found.length-1;i>=0;i--)
{
        var ip = found[i].insertionPoints[0];
        if(found[i].allPageItems[0] instanceof TextFrame)
        {
                var cont = found[i].allPageItems[0].texts[0].duplicate(LocationOptions.AFTER,ip);
                found[i].remove();
            }
    }

Kind regards

Cognet

Tags: InDesign

Similar Questions

  • Remove the container blocks app

    In my application the user can add new container objects to will be and I want to give them the ability to delete these objects as well.  In my design, I have alread QML set for the container that contains other containers, a portion of text, and a context menu.  Menu is in the context where I give the user the option to delete the container.  When remove is called a C++ function goes through my data model and removes the container of the user interface and removes the application data model object.  Problem is after I called the (container) remove call I call delete against the container and the application crashes.  I think that the crash is because I'm calling Delete against the container too early, but I don't know, and if I'm what would be a good way to work around this problem?  Here is a condensed version of the QML/code I use:

    hand. QML. stationContainer is where all new containers are added and removed

    // Application with UI adaptability support template
    import bb.cascades 1.0
    import bb.system 1.0
    
    NavigationPane {
        backButtonsVisible: true
        id: navigationPane
        objectName: "navigationPane"
    
        // create application UI page
        Page {
            Container {
                layout: DockLayout {
                }
                AppBackground {
                    // setup application background
                    background: Color.Black
                    verticalAlignment: VerticalAlignment.Fill
                    horizontalAlignment: HorizontalAlignment.Fill
                }
                Container {
                    horizontalAlignment: HorizontalAlignment.Fill
                    Container {
                        layoutProperties: StackLayoutProperties {
                            spaceQuota: 1.0
                        }
                        layout: DockLayout {
                        }
                        verticalAlignment: VerticalAlignment.Fill
                        horizontalAlignment: HorizontalAlignment.Fill
                        ScrollView {
                            scrollViewProperties {
                                scrollMode: ScrollMode.Vertical
                            }
    
                        Container {
                            property int padding: 10
                            objectName: "stationStacks"
                            layout: StackLayout {
                                id: stationStacks
    
                                // change layout direction according to current device orientation
                                // this feature is disabled for 720x720 devices in current template
                                // see: assets/720x720/AppOrientationHandler.qml
                                orientation: (orientationHandler.orientation == UIOrientation.Portrait) ? LayoutOrientation.TopToBottom : LayoutOrientation.LeftToRight
                            }
    
                            topPadding: padding
                            bottomPadding: padding
                            leftPadding: padding
                            rightPadding: padding
                            verticalAlignment: VerticalAlignment.Center
                            horizontalAlignment: HorizontalAlignment.Center
                        }
                    }
                    }
                }
            }
        }    // Page
        onPopTransitionEnded: { page.destroy(); }
    }// NavigationPane
    

    Container for model that is reused.

    import bb.cascades 1.0
    
    Container {
        topPadding: 25
        layout: StackLayout {
            orientation: LayoutOrientation.TopToBottom
        }
    
        Container {
            layout: StackLayout {
                orientation: LayoutOrientation.LeftToRight
            }
    
            Container {
    
                Container {
                    id: identifierButton
                    objectName: "identifierButton"
                    layout: StackLayout {
                        orientation: LayoutOrientation.LeftToRight
                    }
                    contextActions: [
                        ActionSet {
                            title: "Actions"
                            subtitle: "This is an action set."
    
                            actions: [
                                ActionItem {
                                    title: "Info"
                                    onTriggered: {
                                        app.showStationInfo(sIdentifier);
                                    }
                                },
                                ActionItem {
                                    title: "Refresh"
                                    onTriggered: {
                                        app.refreshStation(sIdentifier);
                                    }
                                },
                                ActionItem {
                                    title: "Remove"
                                    onTriggered: {
                                        app.removeStation(sIdentifier);
                                    }
                                }
                            ]
                        } // end of ActionSet
                    ] // end of contextActions list
                    Label {
                        id: identifierLabel
                        text: "Label"
                        objectName: "identifierLabel"
    
                    }
    
                    onTouch: {
                        if (event.isDown() || event.isMove()) {
                            // Focused, change the background
                            identifierButton.background = Color.Gray;
                        } else {
                            identifierButton.background = Color.create("#ff21697d");
                        }
                    }
                    verticalAlignment: VerticalAlignment.Center
                    horizontalAlignment: HorizontalAlignment.Left
    
                }
            }
            Container {
                Label {
                    id: stationName
                }
            }
        }
        Container {
            TextArea {
                id: stationData
            }
    
        }
    }
    

    How to take the container of model and use:

    /**
     * Setup and add the UI object for the station
     */
    void WeatherPilotApp::CreateStationUI(StationData *pStationData) {
        Container *stackPane = mApp->findChild("stationStacks");
    
    // Add the UI component
        QmlDocument *qml =
                QmlDocument::create("asset:///stationTafMetar.qml").property("app",
                        this).property("sIdentifier", pStationData);
        Container *stationContainer = qml->createRootObject();
        stationContainer->setObjectName(pStationData->getIdentifier());
        QString objectName = QString::fromStdString("identifierLabel");
        Label* label = stationContainer->findChild(objectName);
        label->setText(pStationData->getIdentifier());
    
        stackPane->insert(0, stationContainer);
    }
    

    The code to remove station is here:

    void WeatherPilotApp::removeStation(QObject* qStationData) {
        StationData* stationData = (StationData*) qStationData;
        addRemoveStation(stationData->getIdentifier(), false);
    }
    
    /**
     * Function will add, remove, or update all stations passed in as a
     * comma or space separated list
     */
    void WeatherPilotApp::addRemoveStation(QString sIdentifiers, bool bAdd) {
        qDebug() << "AddStation " << sIdentifiers;
    
        sIdentifiers.replace(',', ' ');
        vector splitIdentifiers;
        QStringList idList = sIdentifiers.split(' ', QString::SkipEmptyParts);
        for (QStringList::const_iterator iter = idList.constBegin();
                iter != idList.constEnd(); ++iter) {
    
            QString id = (*iter).toLocal8Bit().constData();
    
            splitIdentifiers.push_back(id.toUpper());
            qDebug() << "Added " << id;
        }
    
        if (bAdd) {
            //handle addition logic
        }
        // Remove the stations
        else {
            for (unsigned int idx = 0; idx < splitIdentifiers.size(); idx++) {
                for (vector::iterator it = mActiveStations.begin();
                        it != mActiveStations.end();) {
                    if (((StationData*) *it)->getIdentifier().compare(
                            splitIdentifiers[idx]) == 0) {
                        delete *it; // delete the StationData object
                        it = mActiveStations.erase(it); // Remove it from the vector
    
                        break;
                    } else {
                        it++;
                    }
                }                        // Get the main parent container
                Container *stackPane = mApp->findChild("stationStacks");                        // Get a pointer to this stations Container pointer
                Container *stationContainer = stackPane->findChild(
                        splitIdentifiers[idx]);
                bool success = stackPane->remove(stationContainer);
                if (!success) {
                    qDebug() << "Failed to remove " << splitIdentifiers[idx];
                } else {
                    delete stationContainer; // free up the memory
                }
            }
        }
    }
    

    Try deleteLater() and see if it makes a difference, but to be honest, I do exactly the same thing in my code...

    void CardEditor::onFieldRemoved(TitleValueField* tvf) {
        if (tvf) {
            CardLabelEdit* c = mLabelMap.value(tvf);
    
            if (c) {
                remove(c);
                delete c;
                mLabelMap.remove(tvf);
            }
        }
    }
    

    This command removes a CustomControl which is basically just a container with two TextFields in so pretty similar to what you want to do.

    My guess is that the problem is elsewhere perhaps with your vectorial cartography or your logic of pointer, try putting some checks and/or set a breakpoint on the removal of line and see the status of your vector and pointers at this time there.

    If you have configured all signals with these dynamic objects, you also need to exercise caution.

    [Edit] There was a good discussion about deleteLater in this thread...

    http://supportforums.BlackBerry.com/T5/native-development/deleteLater-vs-destroy-dynamic-objects-in-...

  • AntiVirus 2010 Removal, the virus blocks MalwareBytes running

    I downloaded the MalwareBytes software to remove the virus "AntiVirus 2010" ", but as soon as I run the program a window pops up saying" Windows cannot access the specified device, path or file.» You don't have the appropriate permissions to access the item "."

    I read about the virus on bleepingcomputer.com and apparently it's a part of the defense of viruses to block his own abduction. The site recommends open "cmd.exe" and paste in what follows to allow access, people left comments saying that it works. But for me the virus it just cancel again once in about 30 seconds and MalwareBytes continues to crash.

    Cacls "c:\program Malwarebytes Anti - Malware\mbam.exe" / g everyone: F

    It would be also worth noting, the virus also causes McCaffee crashing, and Avast is not in a full system scan. For some reason any and I'm not sure if it's the work of the AntiVirus 2010... or just a glitch. When I go to restore my PC to a previous date list times and dates back to the restoration of the system is empty, I never had to try it before today, so maybe it's just one little problem that previously existed. Needless to say that the 2 common solutions of Malwarebytes or a system restore fail epicly no fault of mine.

    I'm not computer illiterate, but I would not be able to remove it manually to be honest. Format my PC is looking like the only option at this point...

    Heeeeeelp. :(


    Hello

    If you're greeted by this message for one of your executable files you can regain access to the program by using thecacls.exe program that is installed with Windows. Go to ancommand prompt and type the following command to give the Everyone group permission to use the file again:

    Cacls /G everyone: F

    See the Uninstall Instructions for more information on this issue.

    ------------------------------------------------------------

    Antivirus 2010 is a fake antivirus, a scam to force you to pay for it, while it has no advantage at all.

    How to remove Antivirus 2010 (Uninstall Instructions)<-- read="" this="">
    http://www.bleepingcomputer.com/virus-removal/remove-antivirus-2010

    It can be made repeatedly in Mode safe - F8 tap that you start, however you must also run them
    the Windows when you can.

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone. (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software (viruses, Trojans,
    Rootkits, etc.) that has infected your computer despite all the security measures that you have taken (such as
    the anti-virus software, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    New Vista and Windows 7 version
    http://OneCare.live.com/site/en-us/Center/whatsnew.htm

    Original version
    http://OneCare.live.com/site/en-us/default.htm

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    For XP , you can use RUN : (The Vista instructions are similar to those you need to)
    XP.)

    Also do to the General corruption of cleaning and repair/replace damaged/missing system files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Run checkdisk - schedule it to run at the next startup, then apply OK then restart your way.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    I hope this helps.

    Rob Brown - Microsoft MVP - Windows Expert - consumer: bike - Mark Twain said it right.

  • Remove the date block impressions

    I have problem where I put a button on a block table several as you saw in the number shown



    and how the button to remove the contents of a tuple? !

    CLEAR_RECORD will be only 'hide' the line of the display without actually deleting.

    If you want to delete the row from the database, you must use DELETE_RECORD;

  • Cannot remove the gray blocks that appeared in the work of site

    Hello

    Blocks of gray, full browser width, have suddenly appeared on my site. I'm unable to select these blocks and therefore cannot remove them. They are repeated at intervals to the bottom of a page Web site. The gray stripes appear also from the ravages of playing with the filled boxes and whites of browser are filling must be.  Attached are jpg showing site with and without filling of browser.  Interestedly gray blocks do not appear when displayed in a browser, but the browser fill is intermittent, see link to the site. If the filling of the browser is removed from the work them the online version has a constant white background, but I'm really want to have the background fill now!

    Link to wedsite:

    Home

    Any suggestion is welcome.With browser fill.jpgWithout browser fill.jpg

    Looks like you have a picture of model for the filling of your browser and your fill of page has zero value, with a small transparent triangle SVG icon as a background picture fill.

    Your watch through the page background fill.

    Try to delete the page fill out the image and using a solid instead of the color fill. -What gives you the look you want?

  • How can I remove the password block that will appear when the signature in windows xp?

    When I turn on my computer there is a block of password that appears. I don't want to.

    This article should take care of your problem:

    "How to turn on automatic logon in Windows XP"
      <>http://support.Microsoft.com/kb/315231 >

    HTH,
    JW

  • Number of words and then pasting text into the text block

    I'm trying to create a javascript script that counts the words in a block of selected text, adds "WORDS." at the end and then paste at the beginning of this block of text with a "BOLD" character style applied. So he would look like:

    25 WORDS. Text text text text text. etc.

    I managed to find a way to create the character style, to count the words in the selected text block and give me an alert. But I'm not sure how to apply the character style and paste it at the beginning. Any help would be really appreciated. Here's what I have so far.

    Thank you

    -----------------------

    var curDoc = app.activeDocument;

    mySel var = app.selection [0];

    Create the style of wordcount

    If (! curDoc.characterStyles.item("wordcount").isValid) {}

    cStyle var = curDoc.characterStyles.add ({name: "wordcount"});

    }

    else {}

    cStyle var = curDoc.characterStyles.item ("wordcount");

    }

    cStyle.fontStyle = "Bold";

    //

    var mySelWords = mySel.texts.everyItem (). words.length;

    var mySelStoryWords = mySel.parentStory.words.length;

    Alert (mySelWords + "WORDS.");

    Hello

    further, through the selection, change the same way:

    var
         curDoc = app.activeDocument,
         mySel = app.selection,
         len = mySel.length,
         cStyle = curDoc.characterStyles.item("wordcount"),
         mySelWords, mString, curSel;
    
    if (!cStyle.isValid)
        cStyle = curDoc.characterStyles.add({name: "wordcount", fontStyle: "Bold"});
    
         while (len-->0) {
              curSel = mySel[len];
              if (curSel.hasOwnProperty ("insertionPoints") ) {
                   mySelWords = curSel.texts.everyItem().words.length,
                   mString = mySelWords + " Words. ";
                   curSel.insertionPoints[0].appliedCharacterStyle = cStyle;
                   curSel.insertionPoints[0].contents = mString;
                   }
              }
    

    Note that textFrame.words County is those visible only, so the other part of the text is excluded.

    If some of the answers have been useful - mark (their), pls ==> it's a good indicator for other researchers and a few points for me.., mlask.

    Jarek

  • Change the margins... How update text blocks to match?

    Hello

    I have a 80-something-odd-page document, I needed to change the margins on. No problem. Now, however, I want to update the 80-something-odd text frames to match the new margins. No, I was not choosing "Master-text block" when I created the document, because I am new to the program and I am usually not smart.

    Is there a way to do this?

    Alternatively, if I now create a new document (with master selected text block), I can "place" the old document in there?

    Thank you very much! Someone out there, you'll earn my cyber-praise with a response.

    There is no need of a block of text type.

    If you all of your blocks of text created by hand, but made sure to exactly match the lil purply indicators 'margins', all you have to do is enable layout adjustment, in the menu available. Then change your margins - you will see that your text frames will follow. (Toot suite too, as say the French!)

  • Bad behavior of cancellation with the additional block end no OnNewStep

    Hello

    I'm working on StepTypes requiring a block structure, as loops in TestStand (using TestStand 2012). I use OnNewStep lower level to insert the end block no during the boot block is instantiated.

    I do not manage to get a good behavior of cancellation with it as follows:

    • If I do not use SequenceFile.IncChangeCount in OnNewStep stage, when I select Cancel in the sequence editor, the only stage of boot block is removed, the end block remains. My understanding is the expected behavior: motor TestStand don't know that the no end block has been added, she has no reason to remove it.
      However, I prefer to remove both start and end block as follows, as do with While TestStand, DoWhil or for loops.

    • If I do a SequenceFile.IncChangeCount in the OnNewStep stage, when I select Cancel in the sequence editor, I get the following error, and nothing is deleted or cancelled the sequence:

    I guess TestStand increments the ChangeCount when I insert a step, and OnNewStep also increment the ChangeCount, while the operation should be considered as a single action.

    I found in the documentation of the UndoStackclass with the method AggregateTopUndoItems method, I suppose, may be the solution. But UndoStack seems to be available only from ApplicationMgr and SequenceFileViewMgr (which are not accessible from the context of the sequence).

    Any idea to get similar behavior at the correct stage of control of native stream, with cancellations?

    Best regards

    Well, I found a solution by looking at what is happening in CommonFlow.cpp (\National Instruments\TestStand 2012\Components\StepTypes\FlowControl).

    For your information, here is the code:

    Insert a corresponding END step after step again
    ' public static void OnNewStepWithEndStepFunction (SequenceContextPtr & sequenceContext)
    {
    If (! sequenceContext-> sequence-> HasMismatchedBlocks)
    return;

    PropertyObjectFilePtr file = sequenceContext-> SequenceFile-> AsPropertyObjectFile();
    StepPtr endStep sequenceContext-> engine =-> NewStep ("", gEndStepTypeName);
    UndoItemCreatorPtr undoItemCreator sequenceContext-> engine =-> NewUndoItemCreator (EditKind_InsertStep, file, L"" ");

    undoItemCreator-> BeginEdit (endStep-> AsPropertyObject());
    sequenceContext-> sequence-> InsertStep (endStep, sequenceContext-> StepIndex + 1, sequenceContext-> StepGroup);
    undoItemCreator-> EndEdit();

    _variant_t ;
    endStep-> name = (char *) sequenceContext-> engine-> GetResourceString ("FLOW_CONTROL_STEPS", "END_DEF_STEP_NAME", "", &found);)

    file-> IncChangeCount();

    to do this, or the step type will not be displayed immediately as being used by the file
    file-> TypeUsageList-> AddUsedTypes (endStep-> AsPropertyObject());

    undoItemCreator-> CreateAndPostUndoItem (CreateUndoItemOption_NoOptions, TS::ApplicationSite_DefaultSite);
    }

    So the trick is to instantiate a UndoItemCreator that points to the current SequenceFIle, to call BeginEdit with, as an argument, the step to insert as PropertyObjetct, before calling the InsertStep method, then call the EndEdit method. Increment the file change, add the step as PropertyObject in the TypeUsedList file and finally call CreateAndPostUndoItem method.

    ... Happy!

  • How to remove the text box enclosing white

    Hello

    I am a student in multimedia and need to create a portfolio manager and would like to know how to remove the white text box when writing text? Already, I have a background and would like to have white on bakground or plain black writing, don't want the white bounding box. How can I remove that?

    Thank you

    This depends really on what type of Member of text that you used, but in general, you should select the sprite on the stage, then go to the Sprite of the property inspector tab.  Find the ink setting and change into Transparent or Matt.

  • How can I get the data of selected text in a text box in flash 8?

    Hi all
    IM using that a text box and we are conducting a kind of embedding the swf in MFC application making all communication through the external interface and add reminders to the nth degree. Joke...
    All right, I need to copy the selected text from the text box in the Clipboard. I could able to copy the full text of the text box in the Clipboard, but how can I copy the selected text in the Clipboard? I couldn't find any textarea.selectedText or any help online for selected text manipulation.

    Can anyone here help me?

    Thanks in advance,
    Kolar

    No, I should have checked earlier.

    It is a way to make fast her... it is to do it, it should work ok, but this isn't the 'best' way to a view OBJECT-oriented programming.

    When you test using test movie, the trace command can steal the focus the first time that a trace output appears. I suggest to remove the instructions of tracing to see that it works properly.

  • Mobile side.  Using the drop down of your video.  I once put some text on the Mobile page the Menu drops down, but behind the image.  When I remove the text box the menu works correctly.  This also happens with a HTML code placed to Paypal.

    Mobile side.  Using the drop down of your video.  I once put some text on the Mobile page the Menu drops down, but behind the image.  When I remove the text box the menu works correctly.  This also happens with a HTML code placed to Paypal.

    Please check layers panel and put in place the menu item in the list, you can use the layers panel and move up or attempt to move the content.

    If there is still the same, then download a few screenshots of the design view.

    Thank you

    Sanjit

  • reason for commas not allowed in the dialog box select text resource

    Hello
    I use jdev 11.1.2.2 and I was quite surprised by not being able to put the comma in the key in the dialog box select text resource. This behavior forces me to change the resource group by hand and not through this dialog box.
    Is there a reason for this undocumented? Because in my teams, nobody thinks that something like:
    mainTable.header=header Text
    secondTable.header=different Text
    is worse than the variant with underscore...

    If I interpret things the way that I think you mean, for example in the dialog select a text key resource cannot be a string without a period (or comma never seen that myself) as a separator, then the explanation is simple.
    This function of "convenience" of a resource string mapping depends on the access of the implicit getter of the Expression language.
    for example, the created EL is in the form #{viewcontrollerBundle.key}, which corresponds to the bundle.get ('key'); in terms of java.
    To support the use of the period (or the comma!) inside the key, the generated form will have to implement: #{viewcontrollerBundle ['key']} otherwise an example like this:
    #{viewcontrollerBundle.mainTable.header} would be generated which, in words EL would be mapped (as a Variant) with bundle.getMainTable () .getHeader () because of the way periods are interpreted in EL.
    So basically, the dialog box is properly in the light of the real EL that is generated.
    All this side - it is a known restriction and 12, we changed the EL format to the more flexible form in this case and therefore the dialog box will accept periods.

  • The difficulty to remove watermark or text, photos

    I can't delete a previously created watermark/text (I don't remember that I used) on a lot of my photos. I tried Youtube and tried by selecting 'Edit watermark' from the main menu (under: "Lightroom") where I had a fight a dozen watermarks created, I went through the list and delete the text in the text at the bottom of this window box. No luck. I tried to uncheck watermarks in Web, print and Slideshow modules - with no luck once again. I created this text watermark several months ago, and I forgot how I added it, so I'm really not have no removing at all success. Any input is much appreciated. -Ngolo

    AFAIK watermarks are applied only to the exported images. If you still have the original image which should also included modifications you have done on these images.

    You just remove the exported images that have the watermark and re-export the originals or re-export just the originals with a character appended to the name. LR will do it sort of all by itself, and or ask you if you want or replace one already in the file.

    Everything you do in the Watermark dialog box is remove, or try to delete, 'Available' watermarks to be placed on an image.

    If it aren't your images and you didn't initially to place the watermark on the images and watermarks are there for a reason.

  • Tab behavior of the focus in the search of selected text

    In versions previous to Firefox, when I selected some text on a Web page, right click on the text for the menu popup and click on the option 'Search' (search Google for "my text selection") tab that currently has the focus would stay focused and a new tab would be launched to manage appropriate search in the background. Since I updated to Firefox 13, the new tab now receives focus when I do a search on the selected text.

    How can I switch to the old behavior? This change in functionality is driving me crazy. When you read a Web page, I often like to select words and phrases I need to learn more and search Google or Wikipedia via the context menu. I almost always like to finish reading the current page before going off to read the new tabs. Even if I did intend to stop reading the current page, and go to the new tab, there are often several seconds to ensure that the new tab to load and I prefer to keep the page being read and manually switch the new tab that watching a blank tab while I wait for it to load.

    In the "Tabs" window tab options, there is a check box for "When I open a link in a new tab, switch to it immediately." Is there something like that for the new tabs launched by a search from context menu?

    Thank you!

    Hey bob, you can enter Subject: config in the address bar of firefox, confirm notification of information (where it appears), search for the preference named browser.search.context.loadInBackground & switch true by double-clicking it. that should bring back the old behavior...

Maybe you are looking for