Smart Filters: turn individual lines on/off. Line by line AND/OR

Two more Smart Collection desires.
1. A on/off box for each line
2. Boolean function picker for each line. AND/OR/NOT

Agreed that AND/OR//NOT implementations can be tricky. But it can be done well, or hidden under an advanced button.
It just seems silly that I have to cobble together a smart collection and filter to get what I want. For example if I want to view everything with either of two attributes, but not a third, I can't do that in a smart collection alone.

Similar Messages

  • How can I turn this line and its intersection into a separate object?

    My initial object is #1, then I draw a line on #2.
    How can I turn the highlighted area into a separate object? (I cheated and filled this area with Photoshop, but I'd like to know how to turn this red area into a separate object so that I can fill it with Illustrator)
    Thanks in advance

    Alex,
    Or you may just Pathfinder>Divide and Ungroup.

  • MIDI files-Turning individual tracks on/off

    How would one turn off individual MIDI tracks? Quicktime Pro is a handy, quick app. Is there an editing screen for the individual tracks? Quicktime seems to be General MIDI oriented and is still useful in certain cases. -Stefan

    What I'm really looking for is a quick, simple way to edit MIDI files that use the General MIDI soundset and conventions. Quicktime plays them back with a fairly good sound overall but with no editing flexibility. I can use Garageband for the quick and dirty, but often things aren't as simple as in Quicktime because of anomalies like the bass tracks playing back an octave too low, or an odd playback synth patch choice made by Garageband (and then I have to monkey around with the file). I use Logic and Digital Performer almost daily, but I want something quicker and simpler. I find it hard to believe there isn't a mode to import to Garageband or Logic that maintains the General MIDI conventions. Usually, all that's needed is to turn off a track or two and reduce reverb to make the track nominally acceptable. (Obviously, this seems like the perfect job for something like Quicktime Pro. Oh well...)

  • Laptop turns on, shuts back off within 3 seconds and does not POST.

    I aqquired a laptop that need some parts installed on it, nothing to major once i got everything installed the pc turns on for a couple seconds then turns off. The battery indicator status shows that its getting power and being charged and the "plugged in" status indicator on front is also lit up.
    Its the M45-S265.
    If anyone has the slightest thought as to what the problem is feel free to chime in thanks!!

    Thank you for using the Toshiba Laptop Forums. Since there have been no posts to this thread in several days, it is being marked "read only" as part of our routine message board maintenance.
    If you still need assistance, please feel free to post a new message or contact the Toshiba Customer Support Center at 1-800-457-7777.
    Chico

  • HT201210 my iphone will not turn on, it shut off on its own and when i plug it in to charge the apple sign goes on and off. te sprint store told me to plug it into my laptop to reboot it bout it still wont tun on

    plz help

    Issues booting are genenerally symptomatic with a corrupted operating system. I've seen this issue a lot recently with folks who have tried (unsuccessfully) to install the preview of iOS 7. If this is the case, once you get this issue resolved, I recommend you stick with iOS 6 until the new version is officialy released. If not then it just might be run of the mill corruption. Either way, you'll need to perform a DFU restore of the device. Check this video out: http://www.youtube.com/watch?v=ofpinyGlQ8I for instructions on how to do this. It will delete everything, but this is likely the only option you have at this point. If you have issues doing this or if a DFU restore does not resolve your issue you should head to the Apple Store Genius Bar with an appointment (call, or go to apple.com/retail) and they will assist you!

  • Reading Individual Lines of Text Into An ArrayList or Vector From A File

    I am trying to read each individual line of text of a .txt file into an ArrayList or Vector. I seem to get the same results no matter which Object I am using (ArrayList or Vector). The text file is a comma-delimited text file to be used as a database. I want to separate each line as an individual record then dump it into an ArrayList or Vector and have them loop through a StringTokenizer() class so that I can be sure each line has the correct number of fields before I commit it to a serialization file. Currently, the proper amount of records seems to be forming in the initial part of the program, I am just remiss at properly placing them in the Vector, or StringTokenizer classes so I can further manipulate them. I'm using the LineNumberReader class to get line numbers to use as record numbers and for loop indexes. I'm not sure (obviously) if this is a correct way to do it or not.
    Any help is greatly appreciated in advance.
    Thanks for all your time.
    int n = 0;
              try {
                    * read each individual line and count it as a separate record. 
                    * place each record into an array or may be a string if it has 9 tokens
                    * if a record hasn't got 9 tokens, it isn't a record
                    * place each array or string into a Vector
                   in = new LineNumberReader(new FileReader(filename));
                             while ((record = in.readLine()) != null) {
                             n = in.getLineNumber();
                             rawData = new Vector();     
                             for (int i = 0; i < n; i++) {
                                  rawData.add(record);     
                             if (record == null)
                             break;
    *The following System.out.println() statement shows that all lines are correctly retrieved from the text file
    *as separate records
                        System.out.println("Record No. " + n +  "= " + record);     
                   //Debug
    /** When these print lines execute it reveals that only the last record has been inserted into the Vector as
    *    many times as I have records in the text file.
                        System.out.println("Number of Records = " + n);
                        System.out.println("VectorSize = " + rawData.size());
                        System.out.println("First rawDataElement = " + rawData.firstElement());
                        System.out.println("Second rawDataElement = " + rawData.get(1));
                        System.out.println("Third rawDataElement = " + rawData.get(2));
                        System.out.println("Fourth rawDataElement = " + rawData.lastElement());
    *  Next run each record through a StringTokenizer to be sure that there the correct number of fields present
    *  If it contains the correct number of fields, dump it into an alternate ArrayList or Vector.
    *  As it is now, the StringTokenizer gives a NullPointerException
                        for (int i = 0; i < n; i++) {
                             StringTokenizer recordSet = new StringTokenizer((String) table.get(n), ",");
                                 while (recordSet.hasMoreTokens()) {
                                     if (recordSet.countTokens() == 9) {
                                           data = new Vector();
                                           data.add((Object) recordSet.nextToken(","));
                                           System.out.println("Vector data size = " + data.size());
                                           System.out.println("Second dataElement = " + data.get(0));
                            System.out.println("String Tok recordSet = " + recordSet.countTokens());                                  System.out.println("Number of Records = " + n);
                        System.out.println("First dataElement = " + data.firstElement());
                        System.out.println("Second dataElement = " + data.get(0));
                        System.out.println("Third dataElement = " + data.get(2));
                        System.out.println("Fourth dataElement = " + data.lastElement());
                   } catch (FileNotFoundException e) {
                        System.out.println(e);
                   } catch (IOException e) {
                        System.out.println(e);
         }

    I think your logic is broken.
    rawData = new Vector();
    creates a new instance of Vector for every record.
    Your add() within a for loop adds the same record to the Vector n times. I think what you really want is something like this:in = new LineNumberReader(new FileReader(filename));
    rawData = new Vector();
    while ((record = in.readLine()) != null) {
        n = in.getLineNumber();
        rawData.add(record);     Mark

  • I turned my iphone 3g off and it wont switch back on

    I turned my iphone 3g off during a movie and it wont switch back on, i tried turning it back on resetting it and whatnot but it comes up with a blank white screen and then turns back off. I tried recovering it but it gets stuck at 3/4 and then freezes.. ive looked through the forums already but nothing helped, what can i do?
    I never had WiFi sync and it has never been jailbroken.

    Could be short in the iPhone charging port. Clean the charging port with a clean dry toothbrush. See if better. If not, iPhone 5 has Warranty. Make Genius reservation or set up service and take or send to Apple for resolution.

  • TS1286 what do i do when i charge my ipod and it turns on then the screen turns white then cuts off ?

    what do i do when i charge my ipod and it turns on then the screen turns white then cuts off ?

    Try #2 and #3 in link below. If neither work, you most likely have a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • How can I still receive a text when everything is off?  Wi-fi is off, cellular is off, EVERYTHING IS OFF. I should be off the radar completely, and yet I still receive a text message.  How is that possible?

    So, I'm not a noob when it comes to I-phone.  I haven an iphone 5-c.  I'm very cautious of privacy settings, etc.  99% of the time, I have everything turned off.  No matter what, if I have everything turned off, I will still get a text message.  How is that possible?  I do have I-message turned off, so the only thing that "should" get through would be an SMS message, but if my cellular is turned off, and my wi-fi is off...nothing else turned on....  How in the **** do I still receive a text?  When I have everything turned off, I can't make a call...I can't check my e-mail etc...So, how is this possible?   
    Please, help explain!  This is disturbing. 

    Thank you for your reply, but I guess I'm confused as to what that means.  I was under the assumption that if I turned off my cellular service in settings, as well as everything else, then my phone would technically be off.  As in OFF.  So, how would I turn my phone completely off from receiving calls and/or texts while it's still technically powered on?
    Thanks again for any help.

  • Turning off smart guides breaks pen line

    Has anybody noticed that if you switch smart guides on or off (with Cmd+U) while you are drawing with the pen tool it breaks the path. You have to go back and draw from the last anchor point. Sometimes smart guides help, sometimes they're a pain, depending on what part of a path you are drawing, so it's useful to be able to turn them on or off while you are drawing. Is there a workaround? (CS3).

    Thanks Kurt and Mon. This works fine.
    However, there's another thing I noticed while I was playing around with smart guide prefs:
    It seems there is no way to disable Angles, not even if you try to delete all figures from the 6 boxes. At least, I can't get Custom Angles to work that way. Smart guides always seem to revert to 90° & 45° Angles. When drawing with the pen it's often useful to see where other anchor points and paths are, but constrained angles are a pain.

  • My computer has been shutting off auto mystically and when I go to log in, the screen goes to lines and I can't turn it on

    My computer has been shutting off auto mystically and when I go to log in, the screen goes to lines and I can't turn it on

    Make sure that you haven't saved Uppercase and Lowercase versions of that name and password.
    Remove saved Password(s):
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    * [[Remembering passwords]]

  • My iphone 4s screen turned freaked out before my eyes, changing all different colours, now it is blue and black along the right side with horizontal lines, and is flickering. I DIDN'T DROP IT.

    I was just sitting on the couch scrolling through facebook, I closed out of that and went to open safari, when it spazzed out, for a few mintutes it looked like LSD vision, it was all different colours and flickering the whole time. I turned it off and on again, and plugged it into my computer and now the right side is nearly completely blue, and bleeds to the left side with horizontal lines, and it is still flickering. I just finished paying the **** thing off. I thought I'd get another year out of it. I have taken exemplary care of it and it hasn't left the case since the day I bought it. I haven't dropped it, there was no warning for the screen to start doing this. So my question is, is there an easy fix (I am about to restore and update it, and I already played around with the screen brightness), and if not, am I going to have to pay for the screen to be replaced, because I don't have that kind money.

    Probably sounded funnier in your head.

  • I lost my iPad 3days ago. I tried to use "find my iPad" but always"off line"Idon't understand why always"off line" and  how Ican get back my iPad!

    I lost my iPad 3days ago. I tried to use ”find my iPad” but always”off line”Idon't understand why always”off line” and  how Ican get back my iPad!

    Two possibilities:
    1. Maybe it's not turned on.
    2. Maybe the iPad is wiped (setup as new)

  • When i turn my ipod on i get purple vertical lines and thats all it does, what is wrong with it?

    When i turn my ipod on i get purple vertical lines and thats all it does, what is wrong with it?

    It may have a bad display screen but you could try resetting to see if that helps.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • Was just scrolling through my apps when the screen suddenly froze. A force shutdown didn't work and when I pressed the silent on/off button, there was no vibration either. The frozen screen faded to white with a few lines and about 10 minutes later, the

    I was just scrolling through my apps when the screen suddenly froze. A force shutdown didn't work and when I pressed the silent on/off button, there was no vibration either. The frozen screen faded to white with a few lines and about 10 minutes later, the edges started to turn black, forming a ring which got larger till about 4 hours later, the screen turned completely black. I tried connecting to iTunes but it wasn't detecting the phone and I can't do anything with it now... When it turned completely black, I charged it and after a while, the low batt screen came on but it was fuzzy and flickering with the white ring... What to do know ???????

    Restart your computer while holding down left mouse key. That will eject the CD and your Mac will start as normal.
    Lupunus

Maybe you are looking for

  • Wont start. says is running but not responding. open taskmanager but no firefos under processes. restart computer and get same.

    when i click the firefox icon to open firefox it pops up a box that says that firefox is running but not responding. i open taskmager to close the firefox process but there is no firefox process listed. i restart my computer and get the same result.

  • Reading sites

    -how do I convert sites in byte[] form back to text -how can I retrieve links from a PHP file

  • Activation windows server 2012 r2

    Hi. I have windows server 2012 r2 standart it is a domain controller. I have a product key. How can i activate the server??? Please Put the step by step instructions.

  • POV RAY for Mountain Lion?

    i have some .pov files and googled and got the POV RAY page and i d/l'd the software but upon install got a Power PC no longer supported error. does anyone happen to know if i downloaded the wrong mac software, if i am out of luck or if there is anot

  • Ratings - Bridge -

    Hi All, I am in the process of copying my old pictures to my new computer, and it seems like the ratings info I assigned in Bridge didn't go with them. Where are the files that has this information as well as all of the non-destructive editing in Cam