Is the lasso tool no longer available in Cc

i just downloaded the trail version of CC. I can't seem to find the lasso tool. Is it no longer available? what did you replace it with?

Thank you. I am new to the full version of photoshop and I did finally figure it out.
Joe
Joe Dooley
[ personal info removed by admin ]
"Don't count the days. Make the days count." -Muhammad Ali

Similar Messages

  • Async tcp client and server. How can I determine that the client or the server is no longer available?

    Hello. I would like to write async tcp client and server. I wrote this code but a have a problem, when I call the disconnect method on client or stop method on server. I can't identify that the client or the server is no longer connected.
    I thought I will get an exception if the client or the server is not available but this is not happening.
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    How can I determine that the client or the server is no longer available?
    Server
    public class Server
    private readonly Dictionary<IPEndPoint, TcpClient> clients = new Dictionary<IPEndPoint, TcpClient>();
    private readonly List<CancellationTokenSource> cancellationTokens = new List<CancellationTokenSource>();
    private TcpListener tcpListener;
    private bool isStarted;
    public event Action<string> NewMessage;
    public async Task Start(int port)
    this.tcpListener = TcpListener.Create(port);
    this.tcpListener.Start();
    this.isStarted = true;
    while (this.isStarted)
    var tcpClient = await this.tcpListener.AcceptTcpClientAsync();
    var cts = new CancellationTokenSource();
    this.cancellationTokens.Add(cts);
    await Task.Factory.StartNew(() => this.Process(cts.Token, tcpClient), cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
    public void Stop()
    this.isStarted = false;
    foreach (var cancellationTokenSource in this.cancellationTokens)
    cancellationTokenSource.Cancel();
    foreach (var tcpClient in this.clients.Values)
    tcpClient.GetStream().Close();
    tcpClient.Close();
    this.clients.Clear();
    public async Task SendMessage(string message, IPEndPoint endPoint)
    try
    var tcpClient = this.clients[endPoint];
    await this.Send(tcpClient.GetStream(), Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async Task Process(CancellationToken cancellationToken, TcpClient tcpClient)
    try
    var stream = tcpClient.GetStream();
    this.clients.Add((IPEndPoint)tcpClient.Client.RemoteEndPoint, tcpClient);
    while (!cancellationToken.IsCancellationRequested)
    var data = await this.Receive(stream);
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(NetworkStream stream, byte[] buf)
    await stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive(NetworkStream stream)
    var lengthBytes = new byte[4];
    await stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await stream.ReadAsync(buf, 0, buf.Length);
    return buf;
    Client
    public class Client
    private TcpClient tcpClient;
    private NetworkStream stream;
    public event Action<string> NewMessage;
    public async void Connect(string host, int port)
    try
    this.tcpClient = new TcpClient();
    await this.tcpClient.ConnectAsync(host, port);
    this.stream = this.tcpClient.GetStream();
    this.Process();
    catch (Exception exception)
    public void Disconnect()
    try
    this.stream.Close();
    this.tcpClient.Close();
    catch (Exception exception)
    public async void SendMessage(string message)
    try
    await this.Send(Encoding.ASCII.GetBytes(message));
    catch (Exception exception)
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.SafeInvoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    private async Task Send(byte[] buf)
    await this.stream.WriteAsync(BitConverter.GetBytes(buf.Length), 0, 4);
    await this.stream.WriteAsync(buf, 0, buf.Length);
    private async Task<byte[]> Receive()
    var lengthBytes = new byte[4];
    await this.stream.ReadAsync(lengthBytes, 0, 4);
    var length = BitConverter.ToInt32(lengthBytes, 0);
    var buf = new byte[length];
    await this.stream.ReadAsync(buf, 0, buf.Length);
    return buf;

    Hi,
    Have you debug these two applications? Does it go into the catch exception block when you close the client or the server?
    According to my test, it will throw an exception when the client or the server is closed, just log the exception message in the catch block and then you'll get it:
    private async void Process()
    try
    while (true)
    var data = await this.Receive();
    this.NewMessage.Invoke(Encoding.ASCII.GetString(data));
    catch (Exception exception)
    Console.WriteLine(exception.Message);
    Unable to read data from the transport connection: An existing   connection was forcibly closed by the remote host.
    By the way, I don't know what the SafeInvoke method is, it may be an extension method, right? I used Invoke instead to test it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I turn off the extra cursor on the lasso tool?

    I'm hoping somebody here knows a way to revert the icon for the lasso tool to its old self... or at least turn it into a simple cursor.
    The lasso tool in this new Photoshop version suddenly forces you to see a double image: both the original lasso and a cursor above it that points to the actual connection point.
    This setup is annoying as hell and no - I haven't gotten used to it.
    The tool ends up so large that it's obscuring part of what I want to select... not to mention that my instinct wants to see the connection point on the tip of the lasso.
    What was great abou the original lasso was the fact that the icon itself was so thin that it didn't obscure what I was trying to select.
    Not just do I suddenly have an icon that's twice as large, the arrow is also thick and opaque - it's very much in my way and totally counter productive!
    I can understand wanting to make things more unified... but this is not the way to do it.
    At least give us the option to have the lasso show up as either an arrow or the old tool. You're allowing us to show the pen tips as cursors... why not include that choice for the lasso tool too?
    A simple dropdown on the top when I select the tool would do the trick just fine. I might actually like having the lasso tool as a thin arrow instead of a lasso shape.
    However -
    As it is now, it's a bad design and makes for a clunky tool that has two origin tips AND obscures my selection area.

    I tend to select things from left to right and every time I am moving in a downward right diagonal motion during lasso selection I am missing a clear view and I am tending to have a more sloppy selection.  All this does is slow me down since I need to go back and hit those areas again.  The big arrowhead just get's in the way.  The original lasso tool with the thin line and small active point at it's lower left was far better for me.
    I don't like turning the cursors to precise because I like to see the active tool icon where my cursor is and as the icon changes as I hold modifier keys down.  If I am forced to get comfortable with using pricise cursors I guess I will, but man, I've never had to do this in my 15 years of photoshop use...
    I would absolutely LOVE to find a way to get the old lasso icon -- without the arrowhead above it.
    Is there any chance this option could be inlcuded in cursor preferences?  I'd give much thanks, Adobe.

  • When using the lasso tools, how do i disengage from it, in order to adjust it?

    When i am in the process of creating a selection, with the lasso tools, I would like to disengage from the tool, briefly to adjust my selection and then to return and continue to make the selection.  If i press the space bar, it does disengage; but the hand tool becomes active at the same time. If i click on the options with the tool, to either add or subtract from the selection, as i drag the mouse to do this, i cause the tool to continue to outline, when i would like it to stop. It seems to remind me of when i used to use an old etcher sketcher magnetic drawing toy, from the late 1970's. ( if you are old enough to know what i mean that is)! Does anyone have a solution to this problem.

    The magnetic lasso tool is very useful and is suited admirably for selecting tiles or shingles. It is important to set up the tool for the task at hand. In the tool's option bar I start out with Feather=1px, check anti alias, Width=2px, Contrast=3%.
    If things don't go well, the first  change that I make is to the contrast setting and give it another try. One can back-track by hitting delete on the keyboard, left click to lay down one or more anchor points, then go on to circumnavigate the area to be selected.
    Now, after having made a complex selection, going to Layer>new>layer via copy puts the selection on its own layer, with surrounding transparency (checker-board pattern). One can use the eraser tool to tidy up, if required.
    I offer this as my workflow. Not infrequently there are several ways to do things in this program.

  • HT4356 I previously was able to wirelessly ePrint to my HP Photosmart Plus e-All-In-One B210a using both my iPad & iPhone (both run IOS 5.1).  For some unknown reason neither one can now print.  I keep getting a message that the printer is no longer avail

    I previously was able to wirelessly ePrint to my HP Photosmart Plus e-All-In-One B210a using both my iPad &amp; iPhone (both run IOS 5.1).  For some unknown reason neither one can now print.  I keep getting a message that the printer is no longer available.  My MacBook continues to print ok.  Any ideas?

    Reboot everything.  Router, printer and pad.  If it used to work, it will again.  It just lost itself somewhere.

  • I cannot play purchased songs in iTunes v11.0.1.12 or sync them to my iPhone and the songs are no longer available for downloard in iTunes store (so, I can't delete and download them again).

    I cannot play purchased songs in iTunes v11.0.1.12 or sync them to my iPhone and the songs are no longer available for downloard in iTunes store (so, I can't delete and download them again).

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • HT1338 im on osx snow leopard but the lion is no longer available on app store. How can i still upgrade to lion? my computer by the way is not compatible with mountain lion. thanks

    im on osx snow leopard but the lion is no longer available on app store. How can i still upgrade to lion? my computer by the way is not compatible with mountain lion. thanks

    Hello royalaqua,
    I do think you should ask yourself if upgrading to Lion is the right course to take.
    Snow Leopard is an excellent OS and Lion has literally been frozen out after barely a year.   Remember too that some of your apps may not work with Lion (those that have Rosetta, for example) so that could mean more new purchases.   Plus you may need to uprate your RAM too.

  • What are the different tools and techniques available to track analytics in SharePoint online 2013?

    I want to know What are the different tools and techniques available to track analytics in SharePoint online 2013. Please provide your suggestions/ inputs. Thanks in advance.

    you can Use the Web Analytics Integration app  to
    connect your SharePoint Online public website to third-party web analytics services, such as Webtrends, Google Analytics, Adobe, and so on.
    Google Analytics
    Webtrends for SharePoint
    CARDIOLOG ANALYTICS
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • I have an app update on my phone through the app store, but i dont have that app and when i hit update it says the item is no longer available for sale,, but i cannot get rid of the little 1 at the corner of the app store app,, how can i get rid of it

    i have an app update on my phone through the app store, but i dont have that app and when i hit update it says the item is no longer available for sale,, but i cannot get rid of the little 1 at the corner of the app store app,, how can i get rid of it,, i have iphone 5

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store notice. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard (command-C).
    In the Finder, press the key combination command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • I downloaded acdsee camera flash (us$0.99) in Hong Kong's app store, but i cannot find it in the app store after i changed to another iphone. it seems that the app is no longer available in HK, how can I get back the app?

    i downloaded acdsee camera flash (us$0.99) in Hong Kong's app store, but i cannot find it in the app store after i changed to another iphone. it seems that the app is no longer available in HK, how can I get back the app?

    First make sure you are searching the name correctly.
    If the app is no longer in the App Store it is no longer available for download. This happens when Apple has found the app violates the agreement with the developer or when the developer no longer wants the app listed in the App Store.
    If the app is truly no longer in the App Store your only option is to copy it from iTunes on the computer you normall sync with.

  • I have an iPad that has one app that loads to only 72%. Apple tells me that the app is no longer available in canada but it has content that I paid for. How do I get the app to work again?

    I have an iPad that has one app that loads to only 72%. Apple tells me that the app is no longer available in canada but it has content that I paid for. How do I get the app to work again?

    If it's not available in your country and you do not have a copy of it in iTunes backed up on your computer, you don't.

  • Using the Lasso Tool crashing Photoshop CC

    Hi,
    Looking for some help as to why Photoshop crashes at least once a day, sometimes more when using the basic Lasso Tool.
    I'm using Photoshop CC, and it's completely up to date. I'm on Windows 8.1.  I'm a freelance illustrator and use the lasso tool when doing all of my artwork.  It crashes on any image I'm working, smaller stuff to larger files, from small amount of layers to over 200.  I'll use the lasso, typically holding alt to use the polygonal option and I'll notice when clicking to close my shape, photoshop will completely stop working.  I'll have to open the task manager and completely end the program.  Crashes across the board from CMYK to RGB, in 8 bits.
    Looking for some help / ideas.  Please let me know if you need any other info, thanks.
    Kevin

    Hi Chris,
    I've updated the system driver on the wacom, which was released in March.  I also tried the mouse and also seems to be up to date.  Here's a shot of the task manager when freezes.  Does that help at all?
    I've just had a freeze 2 minutes ago.  I've been waiting for it to happen, hoping the wacom driver might change.  Apparently not.

  • Why is the lasso tool so slow?

    Has anyone else noticed that the lasso tool is ridiculously SLOW?

    Try resetting the tool. In PSE versions earlier than 11, click on the little arrow, top left, on the tool's option bar
    In PSE v.11&12, look for a box with lines in it on the tool's option bar on the right.

  • Why is the Black Swan no longer available in the US store?

    Why is the movie the Black Swan no longer available in the US store and does any know when it will again be available for purchase / rent?

    Hi...
    This being a user to user forum, not Apple, we have no way of knowing Apple's policy regarding the availablity of movies sold or rented from the iTunes Store.
    However, you can start a wish list.
    In iTunes, click iTunes Store (below Store).
    Find the song, video, or album you want to add.
    Click the arrow to the right of the Buy button for the item you want to add:
    From the menu that appears, choose “Add to Wish List:”

  • Why is the MacBook Pro no longer available in a 17" screen?

    Why is the MacBook Pro no longer available in a 17" screen?

    No one here knows why Apple decided to discontinue the 17" screen.  This is a user to user community.  Click on the Contact Us link at the bottom of this website.  Write a letter to Apple & ask them.  If they respond please post it. 

Maybe you are looking for