How to use filters purchased online in photoshop CC ?

I've downloaded some pretty expensive filters intended for Photoshop. My question is how do I use them through Photoshop CC???

Hi
after you install the filter on the computer, please restart the Photoshop and then under the filter tab you must be able to see the filter there
as show in this screen shot below

Similar Messages

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • How to use Color Splash Effect in Photoshop CS6?

    Hi everyone
    Can you guy help me out How to use Color Splash Effect in Photoshop CS6? I need to use in slide in my web
    Thanks

    You mean "leave part in color and make the rest black and white"?
    Just select or mask the part that should be B&W and desaturate, or use the B&W adjustment.
    Or you can add a B&W adjustment layer and mask out the parts that should stay in color.

  • How to use form has online exam

    Hi,
    I need to configure a form as an exam. The user fills the form but has to have all the rigth "answers" before an e-mail is sent to him stating that he has completed the training.
    Thank you for any clues the would help me do this.
    Mathieu

    How much would you charge me to setup the basic code that I could manage myself afterwards.
    I am a quick learner.
    I did the whole site by myself with your help and BC. www.geppp.com
    I just need to have an e-mail send if a user has all the right answers to the an online exam.
    Le 2013-10-08 à 20:54, Liam Dilley <[email protected]> a écrit :
    Re: How to use form has online exam
    created by Liam Dilley in Business Catalyst - View the full discussion
    You will need to do some javascript and a matrix system to know what the options are and what the right answers are relevent to those.
    How is your knowledge in this area?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5746256#5746256
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5746256#5746256
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5746256#5746256. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Business Catalyst at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Mathieu Norton-Poulin, M.Ps., psychologue
    Institut de Psychologie Clinique de Gatineau
    4 Impasse de la Gare-Talon
    Suite 202
    Gatineau, Qc
    J8T 0B1
    Courriel: [email protected]
    Web: www.mnppsychologue.com
    Web: www.pftgatineau.com

  • How to use the update mechanism in Photoshop CS10 for Camera Raw?

    Good Evenning!
    I would like to open .NEF files with Adobe Photoshop CS10 (RAW for Nikon D5200) but my version of Camera Raw is too old.
    I need at least the 7.3 version.
    When I try to download it, I have this message: Please use the update mechanism in Photoshop CS10 for Camera Raw. But how?? When I go to "Help" tab, to "Updates", it says that no update available.
    Can please someone help me?
    Thanks a lot!!
    Kinds Regards
    Vanessa

    Which version of photoshop or photoshop elements are you using?
    Which operating system?
    There is no such version as cs10.
    Do you mean photoshop shop elements 10?
    If you go to Help>About Photoshop Elements (windows) or Photoshop Elements Editor>About Photoshop Elements (mac), that should tell you which version you have.

  • How to use .eps files in Adobe Photoshop CS

    I purchased some vectorshapes from Vectorstock, and downloaded .zip files to my desktop. I then extracted the files to the /presets/customshapes folder in Adobe Photoshop CS. (I have Windows 7). I then found out they were not .CSH files but Encapsulated PostScript or .eps files. How can I use them in Adobe Photoshop? Please help

    Thanks, that helps.

  • How to Use VuPoint Wand Scanner with Photoshop?

    I have recently purchased a VuPoint Magic Wand Portable Scanner. I would like to be able to use my Photoshop program with these scans. I can locate the images, open them in Photoshop, make adjustments to them, but I cannot figure out how and where to save them for export to a website. I am 58 years old, and the advancements in technology have left me a bit confused about what to do next. The SD card will not let me "save" the changes made to the image. So, how and where do I go from here?

    I'm not experienced with Windows 7, so for more detailed directions (including videos) on that stage of the process, I recommed this web page: http://windows.microsoft.com/is-IS/windows/explore/photos
    Once your scans are on your computer, you can start Photoshop, click on the word "File" on the top menu, and mouse down to the word "Open". The Open dialog will appear. In that dialog, you can navigate to the location where you stored your scans (the Picture library, for example). Once you've found it, click on one of your scanned images and click the "Open" button in the Open dialog.
    At this point, you can make any adjustments in Photoshop that you wish. When you've finished, click on the word "File" on the top menu, and mouse down to the word "Save". You can save the edited image with the same name, or you can change the name.
    One more thing: 58 is not old! ;-)

  • How to use a purchase condition in the sales order

    Hello,
    Customer would like to have a purchase "day-price" appearing in the pricing of the sales order. 
    I would suggest to write abap code (reading the correct PU condition record) in a condition base value routine that would be added in the customizing pricing procedure at SD side.
    Is there any "more standard" solution for this ? 
    Thanks,

    Hello,
    Here is the case in more detail :
    This question concerns a product that is just purchased, stored, and sold.  The purchase-price is based on a "day-price" that is maintained in a purchase condition record on a daily basis.  The sales-price should be that daily price with a markup in %. 
    So, in the sales order, this purchase condition record should be picked up with the material and the pricing date as key.  From that base price, a markup can be calculated in sales pricing. 
    I would suggest to use the field "condition base value" in the setup of the sales pricing procedure (Ref to IMG sales and distribution, pricing control, define and assign pricing procedures).  In that field a new routine could be entered that (with a select or function or Bapi) picks up the purchase condition record-value. 
    I would like to know if this would be a "correct" way of solving this requirement,  if there is no "more standard" solution,  if anyone has experience with a similar requirement and how you solved it ?
    Thanks,

  • How do I activate purchased version of Photoshop Elements 12?

    I purchased a package through QVC that included Adobe Elements 12 with a Dell Inspiron Computer.  I installed the program and was able to import pictures, but when I try to use the editor it wants me to sign up for the 30 free trial version of PE12.  I entered the serial number when I installed.  Because the Dell has Microsoft 8, I also changed my email to Outlook.  I had a previous version of Photoshop Elements where I used a yahoo email.  Now I am confused about which email I associated with PE12.  Help!!!

    Try the Elements forum:
    http://forums.adobe.com/community/photoshop_elements?view=discussions

  • Issue using newly purchased copy of Photoshop CS5 - licensing from beta version

    Hello,
    I was part of the Beta Testing group (through adobe) with Photoshop CS5 before it's release. As such, I had Photoshop CS5 prior to its release. When the License expired I don't think I deleted it correctly from my computer. Now, I've purchased my new copy of CS5 (including Photoshop) and it installed (after much problems. It saw that I had copy elements of Photoshop. It suggested I get the Photoshop cleaner and run it. I did run it and finally was able to install the full CS5, including Photoshop). Now... when I try to RUN/OPEN photoshop CS5 it says my license has expired. It hasn't. I just bought it. So, I used the application in the CS5 folder that had the uninstall application. I ran the  uninstall And then RE-INSTALLED it off the dvd. I tried AGAIN to launch Photoshop and it still says its license has expired. What do I do? I've spent hours on this and have gotten no work done in Photoshop today. HELP.

    Hi,
    I'll send you a private message, so we can try and straighten this out.
    regards,
    steve

  • How to use manifest file in Adobe Photoshop Filter Plugin

    Hi all,
    I am developing the Photoshop Filter plugin using wxWidgets-2.6.2 on PhotoshopSDK CS2 for windowsXP.I am unable to use XP themes in my plugin.Though I have already added the following line in my Plugin .rc file ----->
    2 RT_MANIFEST "Plugin.manifest"
    I have also added the "ISOLATION_AWARE_ENABLED" in the properties.
    But still I am unable to use XP themes in my Plugin. Please Help!!!
    Regards
    Deepesh Negi

    Thanks, that helps.

  • How to use filters in AggregateAware(,) function

    Post Author: masha43
    CA Forum: Semantic Layer and Data Connectivity
    Good afternoon, everybody!
    I would appreciate any help from you.
    Does somebody know how is it possible to specify a filter on an object that is specified with the help of @Aggregate_Aware() function?
    I have an object (REVENUE in Rubles) that is specified as @Aggregate_Aware(sum(F_FACE_TOTALS.CLEAR_REVENUE_RUR),sum(F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR))
    I want to get something like this @Aggregate_Aware(( sum(F_FACE_TOTALS.CLEAR_REVENUE_RUR) ) where F_FACE_TOTALS.TRAFFIC_MIN>0,( sum(F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR) ) where F_PRIMARY_TOTALS.TRAFFIC_MIN>0).
    But it shows a mistake.What is the right way to use WHERE and where and how I can use WHERE? Is it possible to do it?

    Post Author: masha43
    CA Forum: Semantic Layer and Data Connectivity
    it works!
    @Aggregate_Aware(sum(case when F_FACE_TOTALS.TRAFFIC_MIN>0 then F_FACE_TOTALS.CLEAR_REVENUE_RUR end),sum(case when F_PRIMARY_TOTALS.TRAFFIC_MIN>0 then F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR end))

  • How to use filters in single reports

    Hi
    how to write filter condition for this
    i have gldate,startdate,enddate,invoice date,revtype
    i need condition like
    gldate>=startdate and <=enddate and invoice date>=startdate and invoicedate<=enddate and revtype='REV' and flag=y based on measure amount
    and
    without using timeseries functions how to find quarterago sales this year,previous year
    Edited by: ARYABRAHMA on Feb 18, 2013 2:04 AM

    Try something like below
    CASE WHEN gldate>=startdate and gldate <=enddate and invoice date>=startdate and invoicedate<=enddate and revtype='REV' and flag=y THEN measure amount else 0 end
    Try to create a repository variable as suggested in your post
    previous quarter
    After that you may use filter on amount column->fx->Filter
    Try to respond on your posts
    If helps mark

  • Can I transfer and use my purchased applications like Photoshop and Lightroom on my new Macbook Pro?

    Can I transfer my purchased applications; photoshop CS5 and lightroom 4, to my new Macbook Pro, without having to purchase them again?

    Yes. Deactivate them on your old system and instal lthem on teh new one.
    Mylenium

  • Anyone know how to use the mac pro to photoshop

    Is there a software where i can use it to put my face on someone else body or vice versa on a pic? If so can i just choose any pic online to do it? Thanks alot

    http://cgit.freedesktop.org/ModemManager/ModemManager/tree/uml290.txt

Maybe you are looking for