Make selection from path does inverse!?

As always seems to be the case, suddenly and without warning and even though I did NOTHING WRONG... Ok, I'm sure I did SOMETHING, but it's super annoying so HELP!
I normally make speech bubbles for comics by doing an oval selection around text, then using the path tool to draw the little arrow and add it to the selection. But for some reason, every time I do this now, it selects the entire screen except the part where the path was. It is essentially inverted.
What do I do? Just reversing the selection won't work because I lose my oval this way. Redrawing it works, but that's a pretty inelegant solution to the problem.

With the Pen tool selected, do you have the Subtract From Path Area button pressed?
If so, press the Add to Path Area button to the left of it.
-Noel

Similar Messages

  • Query.cmd  -s -c -l "select * from ' cachename '" does not return results

    We are working with coherence 3.6.1 on RH5 server. We are connecting to the grid and are able to query a cache through the command line. However, when we attempt to query a cache utilizing the following command, we receiving only the CohQL prompt:
    query.cmd -s -c -l "select * from '<a cache>'"
    This works on the UNIX side with the query.sh command.
    Additionally:
    redirect to a file = same issue
    input from a file = same issues
    input from a file, redirect to a file = same issue
    etc....
    The examples are OK, it just does not work as expected.
    Thanks!!!

    We have been able to get the file input to file output to work
    query.cmd -s -t -f < myinputfile -f > myoutputfile
    still cannont get the
    query.cmd -l "select * from 'mycache'" to work

  • Photoshop CS3, using pen tool to make selection or path without any color

    OK, here is my problem. I'm using CS3 photoshop right now. Last time I was using it regularly was in 2001, so it was version 5 or 6. At that time you could use the pen tool to make a selection or a path without ANY color. I'm trying to cut out something that needs precision (therefore the pen tool) but I need to be able to see what I'm doing. Therefore, would prefer no color option. This used to be easy, with paths, it was the default.
    Can't figure it out now, HELP is no help. And, the User Guide is no longer available on Adobe.com. Looked for the one for the CS4 suite, not much much luck there either. I can call them tomorrow about that. *Right now, all I'm trying to do is put together a little pasted together thing for my niece. Two stuffed animals with antlers and santa hats on a Xmas background. Everything is done but cutting out around the stuffed animals. They need their little tufts of stuffing, so I need a tool that can create a smooth path without blocking what I'm doing with color.* Any help will me appreciated. I've tried for days to figure this out on my own, since last time I posted, I figured it out before someone responded. And, the response was quick, so I didn't want to waste anyone's time.
    The pdf user guide for this is unavailable, I just ordered a book to help me with the stuff I can't figure out by myself. Thanks for everyone's quick help. –Suze

    {quote:title=Suze159 wrote:}
    I'm trying to cut out something that needs precision (therefore the pen tool) but I need to be able to see what I'm doing. *Right now, all I'm trying to do is put together a little pasted together thing for my niece. Two stuffed animals with antlers and santa hats on a Xmas background. Everything is done but cutting out around the stuffed animals. They need their little tufts of stuffing, so I need a tool that can create a smooth path without blocking what I'm doing with color.*{quote}
    Suze,
    I too use CS3 and I may be confused about your post. If so, I apologize for wasting any reader's time.
    When I need a precision tool for rotoscoping a subject, I usually choose the Polygonal Lasso tool. Of all the Lasso tools, using the polygonal is the most labor intensive, but gives you the highest degree of control. With a little practice you can get quite good at it. If necessary, blow up the image to help you see what you are doing.
    -- Duplicate the background layer
    -- Rotoscope the subject
    -- Click Refine Edge and adjust Radius, Contrast, Contract/Expand, Smooth and Feather to taste
    -- Choose New>Layer via Copy or Cut
    -- Hide background layer(s) and Save As or Move this layer onto your original graphic.
    There may be other ways of doing it but this is what works for me. I hope that helps.
    Eddie

  • Create Table Temp As Select * from Table

    What happens in the backend (performance point of view) when we create a table as follows:
    Create Table Temp As Select * from Table1;
    Suppose that the table Table1 has 10 million rows.
    How is this different from inserting 10 million rows using Insert Statement in a script etc. into Temp table.
    i.e. insert into temp values(1, 'description', sysdate);

    >
    Create Table Temp As Select * from Table1; is always faster than inserting different rows using insert scripts.
    >
    Incorrect - not sure where you got that information.
    The two things being talked about that can affect performance are the use of direct-path loads and whether those loads are logged.
    It makes no difference if the table is created first and then loaded using INSERT or if a CTAS is used to do both.
    A traditional INSERT can use the APPEND hint to perform a direct-path load.
    >
    Cretae table Temp As select * from Tabl1 does not generate logging to the database.Also as datatypes are determined automatically ,there is less work up front.
    >
    The statement that CTAS 'does not generat logging' is incorrect. Whether logging is generated depends on whether the table is in LOGGING or NOLOGGING mode. A CTAS does not automatically, on its own bypass logging.
    To bypass logging and existing table can be set to NOLOGGING mode
    ALTER TABLE myTable NOLOGGINGAnd for CTAS the mode can be specified as part of the statement
    Create table Temp NOLOGGING As select * from Tabl1;

  • Selection from T-list giving error 'Fied is protected against update'

    hii all,,
    i have manged to make charater based search, for this
    i am accepting characters 'as user types-in' in a text item 'vchar' .
    As the user types in characters,the t-list item (vlist) gets populated with the matching characters
    typed by the user .
    i am testing it on on a non-db block (jmaster) fields..
    Once i make any selection from the tlist,i want the field 'vchar' to hold the value/label selected from the
    t-list (vlist).
    the problem is when i click enter and make selection from the t-list
    populated elements, and navigate to next field 'tcode'
    'vchar' remains blank and the error... 'Fied is protected against update' gets displayed on the status bar.
    here are my triggers ;
    PRE-FORM  at form-level
    SET_ITEM_PROPERTY('VLIST',DISPLAYED,PROPERTY_FALSE);
    WHEN-TIMER-EXPIRED at form-level
    If GET_APPLICATION_PROPERTY(TIMER_NAME) = 'COUNT_TIMER' Then
    SET_ITEM_PROPERTY('VLIST',DISPLAYED,PROPERTY_TRUE);
    :GLOBAL.M_SRCH := :VCHAR;
    declare
    v_char varchar2(200) := 'select VLIST,VLIST
                             from JRNY_MASTER
                             WHERE VLIST like '||'''%'||:GLOBAL.M_SRCH||'%''';
    v_rg_id recordgroup;
    v_err NUMBER:= 0;
    BEGIN
    v_rg_id := create_group_from_query('recgrp1',v_char);
    v_err:= populate_group(v_rg_id);
    clear_list('JMASTER.VLIST');
    populate_list('JMASTER.VLIST',v_rg_id);
    DELETE_GROUP(v_rg_id);
    END;
    Synchronize;
    End if ;
    WHEN-NEW-ITEM-INSTANCE for field 'vchar'
    DECLARE
      timer_id Timer;
    BEGIN
      :GLOBAL.M_SRCH := :VCHAR;
      SET_ITEM_PROPERTY('VLIST',DISPLAYED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('VLIST',ENABLED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('VLIST',UPDATE_ALLOWED,PROPERTY_TRUE);
      timer_id := CREATE_TIMER('COUNT_TIMER', 500, REPEAT);
    END;
    POST-TEXT-ITEM for field 'vchar'
    :vchar := :JMASTER.VLIST;
    Delete_Timer('COUNT_TIMER');
    SET_ITEM_PROPERTY('VLIST',DISPLAYED,PROPERTY_FALSE);
    WHEN-VALIDATE-ITEM for tlist item 'vlist'
    :vchar := :VLIST;Please if some1 have understood my problem, so kindly reply me
    what went wrong in my logic...
    TY

    Andreas Weiden wrote:
    For the VLISt-item, you should set also INSERT_ALLOWED to true, as it is a new record.
    also for the VLIST-item, you should Mouse-Navigable to false.yes it worked this time...Thanks Andreas...
    but one thing..i also would like to add a new value in 'vchar',
    in case, if i don't find a value typed in 'vchar' in 'vlist'.
    when i try to enter new value in 'vchar' and navigate to the next item,
    so based on my above codes..especially the 1 in POST-TEXT-ITEM
    where i am assigning ;
    :vchar := :JMASTER.VLIST;
    'vchar' becomes NULL, as soon as i leave the 'vchar' and branch to the next item.
    please suggest..whats should be changed...
    TY once again...
    Edited by: user10967485 on 25-Oct-2010 07:13
    Edited by: user10967485 on 25-Oct-2010 11:29

  • Work Paths, selections, and general doing my job better question...

    I currently work for a company that prints "Fathead" like wall graphics, i set the images up to print for them, but im looking for a better way to do what i do. Specifically my working with illustrator and Photoshop to setup the cut line for each image. Here is my current step by step procedure:
    1) Open image (usually a JPG) in Photoshop CS4
    2) Using mainly the Lasso tool's i select the subject to be printed. I'm very fast doing this.
    3) Copy/Paste the selection i just made into a new and save it as a TIF file.
    4) Back to the original selection i Smooth and Contract the line a few pixels and hit "Make Work Path"
    5) Export that path to illustrator (which leaves me with an .AI file)
    6) From here im done with Photoshop and i open both the .AI and TIF files into Adobe illustrator CS4
    7) The .AI file i give a stroke and then on the Swatches tab i hit New Swatch, name it "CutContour", and select Spot Color & RBG
    8) I then copy the CutContour line, paste it onto the TIF image, and line it up over the subject
    9) From here all that's left to do is make it the right size it's to be printed at and save it as an EPS file and im done.
    The main reason im asking for help here is because I'm not happy with the quality of the cutline Photoshop exports to illustrator (the ai file) after i make it a work path. The anchor points and handle's are often in need of a lot of adjustment despite the fact that my selection in Photoshop was right on the money.
    One side note that might be a direction for me to head in,...
    I recently was given a jpg file from a guy who said he had already made the selection for me. I wasn't quite sure what he meant but when i saved the image as a tif, opened it in illustrator, and hit CTRL-A to select everything i noticed a cutline was already present. After further examination of the jpg in Photoshop i noticed a "Path 1" on the paths tab, and more importantly that cutline when opened in illustrator was nuts on! Meaning none of the anchor points and handle's needed to be adjusted at all.
    Now the person who sent me this file was a customer so i can't rightly ask them how to better do my job :-) lol ...but maybe someone here can tell me how they (for lack of a better word) embedded a cutline or path i guess it's called into a jpg file like that? This would at least save me the step of exporting my selection to illustrator as an AI file and im wondering if however they did it is more accurate then the "Make Work Path" option i currently use.

    ...useing File | Export | Paths to Illustrator is what i outlined above that i currently do...
    My apologies for not catching that. Honestly, my eyes glazed over at about step 2 of your procedure.
    I'm not happy with the quality of the cutline Photoshop exports to illustrator (the ai file) after i make it a work path.
    A couple of possibilities come to mind. What Tolerance value are you using when you first make a work path out of your selection in Photoshop? 0.5 pixel is the highest precision available, and that's what you should use if you want your path to accurately reflect your selection. Be warned, however, that your path will likely end up with a lot of points, making for an unnecessarily complex path. (Try it with a simple circle.)
    Another possibility is that you're working with a low-quality, low-resolution JPEG as your source image. JPEG compression artifacts can affect selection accuracy (with automated tools, like the magic wand or eraser), and overall resolution, of course, will limit path precision. Not much you can do about that other than to start with better-quality images.
    After further examination of the jpg in Photoshop i noticed a "Path 1" on the paths tab, and more importantly that cutline when opened in illustrator was nuts on!... maybe someone here can tell me how they (for lack of a better word) embedded a cutline or path i guess it's called into a jpg file like that?
    Using a low tolerance (high precision) value make a path from your selection in Photoshop and save the path. Save As a JPG, and the path will be saved along with the image. Do not use Save for Web to create your JPG file.
    As others have pointed out in earlier posts, learning to use the pen tool is your best bet... and an absolute necessity if you're going to be doing a lot of this stuff.
    Regarding the creation of clipping paths in Photoshop, slap me silly, but I'm going to refer you to the manual (online Help) for that. And if you think that unkind, try posting the question over at the Photoshop forum. Wear a helmet.

  • I'm working in Photoshop CS6 on a Mac and am having trouble when I select a Path it automatically feathers the selection border. I can't seem to find any place to adjust a feather setting. Does anyone have a suggestion? I'm using paths to silhouette an im

    How do I change a default from feathered edge to sharp edge when I select a path?
    I'm working in Photoshop CS6 on a Mac and am having trouble when I select a Path it automatically feathers the selection border. I can't seem to find any place to adjust a feather setting. Does anyone have a suggestion? I'm using paths to silhouette an image on a photograph to use in another document and I need a hard edge on it, not a feathered one.

    In the Paths panel, click the flyout menu (in the top right of the panel) and choose Make Selection (this option will only be available if you have a path selected). Reduce the Feather Radius to 0 (zero) and click OK. This setting will be the default even when clicking the Load Path as Selection button.

  • Objects in a cube: Does it matter whether selected from ODS or infocatalogu

    Hi,
    Objects in a cube: Does it matter whether selected from ODS or infocatalogue?
    When creating a cube, you have the option to select the char and key figures directly from ODSes feeding the cube or from the infocatalogue where the objects originally existed.
    Does it make a different, which of these 2 places you select the objects from for the cube?
    Thanks

    hi Amanda,
    it makes no difference, it doesn't matter.
    the ods/infoobject catalog just serve as template where we can choose infoobjects to be included in infocube.
    later in bi 7.0, we can directly type in infoobject technical name, like in ODS.
    hope this helps.

  • Can't make playlists from selections in iTunes 8

    Can't click on the selections I want to make into playlists and either choose that option from the pull down menu or use the key command. As others are saying, iTunes 8 is quite buggy.

    I am choosing a song or songs from the library and then trying to use the key command (shift command N) to make a playlist from them. However, although I've been doing this for years, I can't do it in iTunes 8. Neither can I choose the song or songs and then make a playlist out of them using the pull down File menu item "Make Playlist from Selection." That menu item is darkened, not available.
    Yes, I can still make a new folder, manually name it, then drag and drop the songs into it.

  • It's is possible to make a select from a view?

    I don't know if it's possible to make a select of a table-view like V_T5F99FW if it's possible does anybody tell me how can I do?
    Thanks a lot,
    Regards,
    Rebeca

    Hi Rebeca,
    You can surely do a selection from a projection and database view but not from a maintenance view.
    The selection from a view works like a normal selection only.
    watch this link
    http://sap.ionelburlacu.ro/abap/ABAPperformance.html#Select_with_view
    Regards,
    Manish
    Edited by: MANISH GUPTA on Aug 31, 2008 1:38 PM

  • Why does "SELECT * FROM [database].[schema].[table]" not work in Azure ?

    Hi all
    In Microsoft Azure I have 2 databases.
    I work since more than 10 years with T-SQL and I always use
    fully qualified object names, means "[database].[schema].[table]".
    When I now make a connection to my database "A" in Azure and
    write a Query against database "B" ("SELECT * FROM [B].[schema].[table]")
    I get an exception. Of course when I connect to database "B" it works
    but again not to database "A". When I use "SELECT * FROM [schema].[table]"
    with the right database connected, it also works in Azure.
    Hope you understand what I mean :-)
    In MS-SQL, this of course works fine.
    Well my question is: What sense does this make ??
    Do I now have to re-write everything just for azure or will this behavior changed sometimes ?
    I know MS-SQL is not the same like Azure-SQL, but hey; does Microsoft think all projects have only one database ?? :-)
    Thanks for any answer
    Frank

    Hi Frank,
    According to your description, you want to retrieval data cross database in SQL Azure, right?
    As June said, Currently cross database joins are not supported in SQL Azure. Also you cannot change database mid query so you cannot, for example, put a USE [MyDB] in your query either. Please refer to the link below to see the details.
    http://www.britishdeveloper.co.uk/2011/11/cross-database-joins-in-sql-azure.html
    If you have any concern about this behavior, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product. Your feedback enables Microsoft to make software and services the best that they can be, Microsoft might consider to add this feature
    in the following release after official confirmation.
    Regards,
    Charlie Liao
    TechNet Community Support

  • I just recently up graded from AI CS6 to AI CC and I am having issues with my pen tool. If I create a starting point and then make another point it does not allow me to make the secnd point an end point. The pen tool stays active and I either have to clic

    I just recently up graded from AI CS6 to AI CC and I am having issues with my pen tool. If I create a starting point and then make another point it does not allow me to make the second point an end point. The pen tool stays active and I either have to click to isolate the path or I have to return to the first point and close the path. Please help.

    artisttouch,
    If you cannot close the Pen Tool by switching to another tool, as a temporary measure you may try pressing P (for Pen).
    To solve it, you may try the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Path does not exit - While trying to save file on SharPoint Server 2013 from client machine

    Hi,
    I have installed Microsoft SharePoint Server 2013 Enterprise Edition on my testing Lab environment (On VM Workstation 10) on Windows Server 2012 with SQL server 2012, I can access all files stored at SharePoint Server from any physical machine, I can share
    a single file among different people to work simultaneously, but here i stuck on saving any file from client machine to directly on SharePoint Server, Attached is the snap shot, whenever I try to save any file directly It says Path Does Not Exist, If I drag
    and drop any file directly to SharePoint I do not see any error message.
    I read from different posts that I need to Enable Desktop Experience Feature on Server 2012, which I installed but no positive result gained :(
    I will appreciate for any possible help?
    Ali

    Hi Ali,
    Please try disabling the protected view per the link below and test the issue again:
    http://social.technet.microsoft.com/Forums/en-US/b8381a19-3394-406f-8adb-1976f45460ef/path-does-not-exit-while-trying-to-save-file-on-sharpoint-server-2013-from-client-machine?forum=sharepointgeneral
    You could simply type the url as http://sp/sites/sitename in the Filename place.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Previously i was able to select tools in the bridge and then select image processor to make jpegs from my tiffs, the image processor tab is no longer on the tools drop down menu

    previously while in bridge, i was able to select tools in the drop down menu and then select image processor to get to the page where i can make tiffs and jpegs. That option is no longer available in the drop down tool selection. How do I make jpegs from my tiffs now in the bridge.
    thanks
    [Moved from the general Cloud forum to the specific Program forum... Mod]

    In current Firefox releases the search bar on the about:home page and the about:newtab page have an autocomplete=off attribute that prevents Firefox from saving form data and now show search suggestions just like you get on the regular Google search page.

  • I try and save a photo (from Path) and it downloads but does not download (save) in iPhoto. The iPad I am using is new, I could perform this task on my old iPad. Why the difference?

    I cannot save a photo on my new iPad (from Path) to iPhoto. The phot appears to download but then does not appear in iPhoto. I can perform the same task with my old iPad. I can also save an emailed photo to iPhoto. Thanks

    Right click on the photo in Safari and use the add photo to iPhoto option - if that is not there then your only choice is to save to disk and then import to iPhoto
    LN

Maybe you are looking for

  • Deliv. date outside period covered by factory calendar IN

    Hi Experts, I am trying to create Purchase Order with 2011 year delivery date system is showing bellow issue in production server. Deliv. date outside period covered by factory calendar IN Message no. ME078 Please advice me how can i overwrite this p

  • About 4/14/2015 - FP17 Release Announcement

    Hi Chris: Same as it happened/reported here, please note that in your last update release announcement, direct download links for Flash Player 17 for Internet Explorer on Windows 8/8.1: 17.0.0.169 (all 4 versions) still point to KB3044132 (March 10,

  • SYSTEM tablespace extend issue

    Hello, I am migrating from 8.1.7 to 9i and I got following error: ORA-1652: unable to extend temp segment by 3200 in tablespace SYSTEM As part of migration I added a new data file to system with 100 MB. So in total I have 250 MB of SYSTEM tablespace.

  • Are Creatvie EP-630 earphones OK for the ZEN 16

    I guess the title about asks it all..... I ordered a new ZEN 6GB and I was thinking about ordering a set of the Creative EP-630 Earphones to go with it. Will these earphones sound OK with the ZEN? Any suggestions?

  • According to material num,for every new material num  one line space.

    Hi, please give suggestion how to get vertical lines without breaking as shown below. I want according to material number(AT1),for every new material number  one line space have to be there. I used 'skip' so the verical line is breaking for every new