Help!  All the objects on a layer are framed in red

I'm in the middle of a picture and all of a sudden all the objects on a layer are framed in red.  These aren't the stroke, but rather it is as if I am the display mode overview and overview at the same time.  I searched the forums, but I can't find anything that looks like what I see.Illustrator Outlines.jpgExample2.jpg

You use maybe plug-ins? Which?

Is one of the layers has a appearance which causes the stroke to appear? You can see in the target symbol

Tags: Illustrator

Similar Questions

  • Pathfinder will unite all the objects on each layer

    I wonder if anyone can help me with the script, which is unite mode form via pathfinder on all the objects on each layer.

    I manually activate a layer, pressing ctrl + a, and then clicking the shape mode button unit. Then, the layers are over 50 then, making him the great peace of time.

    Piggyback off pixxxel schubser

    function MergeAllLayers() {
        // exit early if there are no files open
        if( !app.documents.length ) return;
        var doc = app.activeDocument;
    
        // clear selection
        doc.selection = null;
    
        // loop through all layers
        var layers = doc.layers;
        for( var i = 0, ii = layers.length; i < ii; i++ ) {
    
            // select everything on the current layer
            layers[i].hasSelectedArtwork = true;
    
            app.executeMenuCommand("group");
            app.executeMenuCommand("Live Pathfinder Add");
            app.executeMenuCommand("expandStyle");  
    
            // clear selection
            doc.selection = null;
        }
    }
    
    MergeAllLayers();
    

    Equal to true, the definition of the hasSelectedArtwork layer property is a fun thing to select the entire document on a layer, you've just got to make sure to disable any other settings first.

  • Can I move all the objects again selected layer without clicking hundreds of layer bars?

    I'm working on a complex illustrator file generated by GIS software. He gave me all kinds of groups of clip & road clip - what I really need, it's just to put all the same coloured polygons on the layer of a high level (unfortunately I can't draw all of my polygons in a group because illustrator doesn't pull these objects out of their existing clipping groups, and the card gets screwed completely upward if I release the clipping masks. With simple cards I have no problem Direct by selecting all of the polygons, I want, selecting their layers in the layers panel, then moving them to a new layer. This card is too complex, because there are hundreds of objects and hundreds of corresponding layers (they are not contiguous, or else I could simply click can be done with it).


    I used select > same > fill type to select all the polygons, I want that on a single layer, but I really hope that I don't have to select all the layers for each item one by one before I can move them to a new higher level layer. Does anyone know if there is a way to moving all the objects in a new layer selected without having to actually click all the layers in the Panel? Completely open to the alternative routes to my desired result!


    Thank you very much.

    Of course, after making the selection drag selection (to the right of the layer) icon on the desired layer. This will move any selected layer to the new layer.

  • I don't see Smart Guides around all the objects on the artboard even if the guides are checked in view

    Hello

    First of all, I don't pretend to be some illustrator expert but I have a good understanding of the functions of Adobe Illustrator key.

    However, when I went to design a logo yesterday, I don't see smart guides (blue lines, see below with all selected items) around all the objects on the artboard even if the guides are checked in order. I do not expect the controls on each being showing unless they are selected, but I do that I expect to see the blue line itself.


    Picture1.png

    I contacted the Adobe Illustrator Chat but really, they do not seem to have a clue and seemed to be intentionally misunderstanding me despite the fact that I sent this image. They were also quite rude!

    In any case, I'm now desperate so someone here can help me please.

    Thank you very much

    Mike

    PS I looked everywhere online for a solution and tried some of those suggested but without success.

    You may not see an unselected object with no line or fill in preview mode (this is why it is called overview).

    You can select it when you don't have fill and stroke in the tools Panel and choose: select > same > background & contour.

  • How to resize all the objects on a stage

    Hello

    I use Flash CS4 and need to resize my Flash scene and all the objects that are there.

    To do this, I enabled the onion skin tool, selected all the objects and all the frames and resized using the Transform tool.

    However, masks and some paths are not set to scale proportionately. Is it yet another bug in CS4?

    Here is a video illustrating the issue: http://screencast.com/t/ZThiNDdkZ

    Any help would be much appreciated.

    Maybe you can try this way...

    Select the layer in the timeline. cut it. Create a new movieclip by pressing Ctrl + F8. Paste the layers.

    out to the main timeline.

    Drag the movieclip that is created in the timeline where ever it is necessary and he adapts accordingly.

  • My kodakESP5 will not print all the object I want to print only a part of it

    My kodak ESP5 will not print all the object I want to print only a part of it

    Hi jakenny,

    You may need to replace an ink or toner cartridge. Check the status information in the queue for low ink or toner messages. If the printer has a status or display area, you can also check for low ink or toner messages on the printer itself. For more information, see change an ink or toner cartridge and view the print queue.

    Follow the instructions below that may help you resolve the issue.

    Method 1:

    See the link below and check the print settings.

    Choose printing options

    http://Windows.Microsoft.com/en-us/Windows-Vista/choosing-print-options

    Method 2:

    Try to update the printer driver which might help you resolve the issue.

    Click on the link below for more information on the updated printer drivers.

    Find and install printer drivers

    http://Windows.Microsoft.com/en-us/Windows-Vista/find-and-install-printer-drivers

    Check whether the problem is resolved.

    For more information, please see the link below.

    Solve printer problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-printer-problems

    Please post back and let us know if it helped to solve your problem.

    Kind regards

    KarthiK TP

  • Release of anchor all the objects/text images

    Dear all,

    It's my 1st question on AC (Adobe Community), so I'll explain what I need here in details and excuse me my little or even none experienced in coding, especially in Javascript.

    I have a book with many INDD files, these files have a lot of images and objects and text blocks are anchored to the main text area.

    I searched on AC for the way to free him from all my anchored object and the main text block text block. so I found the average script.

    I found her name "ReleaseAnyAnchor" created by 'Dave Saunders' to release the anchored object (graphics, text, else) but one by one. and it will take too much time to free myself from all the objects on the book. (the Script code is below)

    //DESCRIPTION: Release Inline & Anchored Items
    //Written by Dave Saunders, released on indesignsecrets.com
    
    
    (function() {
      if (app.documents.length > 0 && // must be a document open
      app.selection.length == 1 && // selection must be of single item
      app.selection[0].parent instanceof Character) { // selection must be anchored
      if (parseFloat(app.version) < 6) {
      releaseMe(app.selection[0]);
      } else {
      app.doScript(releaseMe, undefined, app.selection[0], UndoModes.entireScript, "Release Any Anchor");
      }
      } else {
      alert("Please select an inline item.");
      }
    
    
      function releaseMe(myPI) {
      var yePage = findPage(myPI);
      var startBounds = myPI.geometricBounds;
      myPI.anchoredObjectSettings.anchoredPosition = AnchorPosition.anchored;
      myPI.anchoredObjectSettings.releaseAnchoredObject();
      if (yePage != null) {
      myPI.move(yePage);
      }
      myPI.move([startBounds[1], startBounds[0]]);
      }
    
    
      function findPage(theObj) {
      if (theObj.hasOwnProperty("baseline")) {
      theObj = theObj.parentTextFrames[0];
      }
      while (theObj != null) {
      if (theObj.hasOwnProperty("parentPage")) return theObj.parentPage;
      var whatIsIt = theObj.constructor;
      switch (whatIsIt) {
      case Page : return theObj;
      case Character : theObj = theObj.parentTextFrames[0]; break;
      case Cell : theObj = theObj.insertionPoints[0].parentTextFrames[0]; break;
      case Note : ; case Footnote : theObj = theObj.storyOffset; break;
      case Application : return null;
      }
      if (theObj == null) return null;
      theObj = theObj.parent;
      }
      return theObj
      } // end findPage
    
    
    }());
    


    also, I found another script which release all of the graphic objects, but not objects of text frame. (I get it from AC, but I remember exactly the place where.)


    if(app.documents.length!=0) {
        var ad = app.activeDocument;
        var pgit = ad.pageItems;
        var pgitlg = pgit.length;
        var objprocessed = 0;
        if(pgitlg !=0)
        {
            for(i=0; i<pgitlg; i++)
            {
                if(pgit[i].getElements()[0].constructor.name == "TextFrame")
                {
                    var tfg = pgit[i].allGraphics;
                    var tfglg = tfg.length;
                    for(j=0; j<tfglg; j++)
                    {
                        var rec = tfg[j].parent;
                        rec.anchoredObjectSettings.releaseAnchoredObject();
                    }
                }
            }
        }
    }
    


    all codes work well for me, but I need to try to merge or make a new code [as I mentioned that I don't have experiences in JS, so I do not know how to compile a new code that do the 2 steps of the 2 codes.]


    my request is, could you please help me to do this new code, or merge to compile a new code in the new file.


    I saw this topic releasing objects anchored and want to make a new script.


    Please try to help me as soon as POSSIBLE because I need this script to all my object anchored to begin working on the output file.


    I need the code works on any version of INDESIGN.


    Thanks guys, waiting for you.


    AMR

    AHA. If you need test whether a line is an anchor. If this is the case, use. releaseAnchoredObject(), if it is not, the simplest is to make an anchor, then release it:

    if (pageItems[i].parent instanceof Character) {
        if (pageItems[i].anchoredObjectSettings.anchoredPosition !== AnchorPosition.ANCHORED) {
            pageItems[i].anchoredObjectSettings.anchoredPosition = AnchorPosition.ANCHORED;
        }
        pageItems[i].anchoredObjectSettings.releaseAnchoredObject();
    }
    

    It works, but I don't know if the results are what you're after.

    Peter

  • Transparently adding a criterion to all the objects in an application view

    Hi all

    We are migrating an application based on the forms in Oracle ADF and JDeveloper 11 g R2.

    In our application Forms, we add transparent business to all the blocks of data code where clause property by using the following expression: company_code = SYS_CONTEXT('erp$security_mgmt_ctx','company'). How this can be achieved in Oracle JDeveloper and Oracle ADF.

    Any help will be much appreciated.

    Thank you
    Bilal

    Hello

    You can have a method on the AOS, that is the place where clause to the view of all the objects and run the query.

    Ex:

    public void setWhereClause2AllVOs(String compName){
    this.getVO1().setWhereClause("='" + compName + "'");
    this.getVO1().executeQuery();
    this.getVO2().setWhereClause("='" + compName + "'");
    this.getVO2().executeQuery();
    .....
    }
    

    You can call this method at the start (e.g. as an activity in your workflow by default methodCall)

    Arun-

  • dkafox1 lost all THE WINDOWS updates that THEY ARE NOT INSTALLED UPDATES

    Original title:

    dkafox1 lost all THE WINDOWS updates that THEY ARE NOT INSTALLED UPDATES, more problems with windows update. May HAVE a PROBLEM WITH REGISTRATION BUT DO KNOW NOT if this msi I HAVE HELPED.

    I have windows 7 x 64 Version 6.1.7600.16385. My windows update has only downloaded and installed a fix (KB947821 on 22/03/14. In the event err log # 2147942487command line: "C\:WINDOWS\SYSTEM32\WUSA '". "»» "EXE" "Windows Update Troubleshooter said" search for missing or corrupted files. I did a sfc/scannow and everything was fine, that the settings are incorrect... Went to computer management by looking at the windows log. Event ID was found in respect of the implementation of 3. Looks like I've lost all my updates. Window update is only showing KB947821 HOT of difficulty. All my other downloading updates for the past two weeks included Microsoft Office Update that I can't see anything there all gone. I check the installed updates and 14 updates that don't settle all gone. Windows Update indicates any problem or error #. It says Windows update installed "Never". I tried the solution to the difficulty of corruption problems MSI software update registration. Help I don't know where to go from here. I ran the windows Memory Diagnostic tool, which came with no error. In the community he sent me to back registry which I do not know how to do. Can I save on my hard drive or another source. He says type reedit32.exe. I have the windows 7 registry editor wants me to save the registry key or subkey > I do not know what files to back up or export. I'm not computer savvy, but I do what I can do better. Had problems with windows update not install and now not download or install 2 MOS. So where and how can I know what updates I need after that this problem is corrected.  Thank you

    If you want Office 2007 updates to appear in the installed updates again, you would need to uninstall/reinstall Office 2007 and install all the updates again.

    Assuming that Office 2007 is installed & working properly and no update is offered when you run a manual check for updates now, you might want to leave enough alone (that is, do nothing) - then see if the 2 updates for Office 2007 SP3 be released next Tuesday (a) receive, (b) successfully install and (c) are listed in the installed updates later.

    PS: The possible causes of the problem are messing with registry cleaners, messing around with the Software Distribution folder, and the fact that it was a computer refurbished when you bought it.

  • All the executable files (.exe files) are open with mozilla firefox by default.

    All the executable files (.exe files) are open with mozilla firefox by default.my system is Compaq Mini 311c-1101SA. I can't run that no matter what file.i executable can not install any program now

    Hello

    When you get this program you want to use to open the file, you can select the appropriate program to open it?  If so, isn't there a box to check that says always use this program...

    Network adapter. Missing drivers?  Go to your device manager and look to see if there is lack of device drivers. They can be labeled as just a controller ethenet or other device with a small exclamation point.

    This means that they need a driver. In order to send you the link to the right driver, I need to know what model of network card you have.

    If you are unsure, click on all the missing devices in Device Manager. Then click on the Details tab. In the property drop-down list, select the second element (Hardware ID). After the first string of characters you see.

    Who will be ID the make and model of the device and I can send you the link for the drivers.

    Sorry, but I don't know anything about video games, so I can't help with that one.

    Paul

  • All the elements menu of AE are low and I can't create a new project.

    The project window is supposed to be some upward when I start AE, but it's not. All the elements menu of AE are low and I can't create a new project. I am a new user of AE and confused. Can you help me? Thank you!

    You launched the render node and not the full version of the software.

  • Receptive Slide height develops all the objects on the slide master background.

    Hey,.

    If I build a sensitive project and slides, I need to unlock the height of the slide in mobile mode on some slides to create a scrolling to display more content.

    When I adjust the height of the blade, it develops all the objects in the background of the slide (my header, title...). These elements are not merged.

    Is there anyway that I can adjust the height of the blade so that it is not developing all the objects on the slide, only the backdrop (i.e. the white canvas). I try to use a model of slides for content pages.

    Or is the only way around it to create a number of different slide masters with heights of slide?

    See you soon

    Hello

    I feel your pain. I struggled with this for a long time, but finally found a solution.

    If you want to extend the height of the blade, creating a scroll bar. But you want certain elements to stretch and others do not.


    Object to Extensible NOT / Static

    • Create in the Slide Master
    • Set the properties top and % Relative height.

    Stretch/dynamic objects

    • Create directly in slide film
    • Set the Top % Relative property
    • Set the Height property for % (not related).

    I recommend to create a slide film finalized and then duplicate this slide for all other instances.

    Let me know if it works.

  • Export all the objects with PowerCli

    Hello

    I'm not in VSphere or vmware but a Director of SCOM and I am currently working on a solution to monitor our VCenter with SCOM server. To be able to automatically resolve alerts, I would need to find a way to export a list with all the objects of the VCenter server to create them as instances in SCOM and map the error directly state events to these objects.

    I think that this should be possible with PowerCli so the plan was to have a script export this list frequently and run a discovery of the SCOM Agent Script to automatically create related instances. Does anyone know how this export could be made with PowerCli? Since I'm not in vmware / vsphere and we don't have a test environment, but only the Production System in our office, I am somewhat limited in trying just by the cmdlets to discover this.

    No matter what pointer in the right direction which cmdlets can achieve this is as welcome as script ideas that could help me out here.

    Thanks and greetings

    Marco

    OK, I see.

    When you want to display a map, it is better to load the objects requested in advance and update them regularly.

    Have you ever thought about what you want to see on the map?

    A hierarchy of the sample could be

    vCenter(s)                                     <- in $defaultVIServer after a Connect-VICenter
      datacenter(s)                              <- Get-Datacenter -Server 
       cluster(s)                                   <- Get-Cluster -Server 
          resource pool(s)                     <- Get-Resourcepool -Location (Get-Cluster )
             guest(s)                               <- Get-VM -Location (Get-Resourcepool )
          vmhost(s)                               <- Get-VmHost -Location (Get-Cluster 
             datastores                           <- Get-Datastore -Location (Get-VMHost )
             network
                vswitches                         <- Get-VirtualSwitch -VMHost (Get-VMHost )
                    portgroup(s)                 <- Get-VirtualPortgroup -VMHost (Get-VMHost )
       standalone host(s)
          guest(s)
          datastores
          network
             vswitches
                 portgroup(s)
    

    I added some of the cmdlets that you can use to get items for a specific branch of the hierarchy.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • (1) is there a function for all the object of the same size?

    (1) is there a function for all the object of the same size?

    Sorry, I thought you wanted to align the objects.

    We do not have the function to make items of the same size. You must change one by one. To change the .lks file may be more effective.

  • When I refresh my desktop or restart my computer, all the icons on my desktop are moving to the left.

    The desktop icon question

    When I refresh my desktop or restart my computer, all the icons on my desktop are moving to the left.  I drag them back where I want to, and the next time that I reboot, they are to the left.  Running MS XP on this computer.

    How can I fix them in place?

    Hello
     
    I suggest you to change the Auto settings fix the registry.
     
    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:
     
    322756 how to back up and restore the registry in Windows
     
    a. click on Start and then run.
     
    b. type regedit and press to enter.
     
    c. navigate to the following key.
     
    HKEY_USERS\. DEFAULT\Software\Microsoft\Windows NT\CurrentVersion\Program Manager\Settings
     
    d. change the REG_DWORD value 0.

Maybe you are looking for

  • Why is there a different name above my ph number in contacts on 6s

    IPhone 6 s - contacts - there is another name above my cell ph number! I deleted such contact but it still shows the same name. How can I fix it? Any ideas?

  • Host DMA to the synchronization of the target

    I use two hosts to target DMAs to generate two arbitrary waveforms to be taken out of the anAO module.  I want these waveforms at the exit at the same time, but it seems as if the waveform leads the other by several micorseconds.  The two waveforms a

  • How can missing hpfud50.dll file I install my printer?

    My OS (windows Xp) has the printer - name brand and product list. When I try to install my HP printer, is not able to complete the load because he keeps asking the missing cd-rom drives. and it seems this dll.

  • Renew the computer as a new brand.

    so I've had my computer for 3 years. It's a basic vista windows. and I want to renew again as a laptop brand new, clear. someone help... Thanks ():

  • Videos (movies) gel every second

    My computer is a SONY VAIO, Windows 7 with Intel (R) Core CPU i7 - 2620 M 2.70 GHz and aldo with 4.00 GB of RAM, 64-bit operating system. Im having problems when opening videos, it was working fine but since I am in Spain and changed the date it ceas