Need help with an effect I am going for

Can anyone offer advice on how to create an image where the central subject is in color while making the remaining background B&W?
Thank you.

Thanks Steve,
I had tried that but when shooting cars, there is a high risk of desaturating the car color. I am trying to create huge contrasting effects. I was hoping that there may have been some function to "replace" colors.
Thank you for your advice.

Similar Messages

  • Need help with a customized interactive web application for  apparel

    Help!!!!
    Hi I am a web designer at beginners stage with web
    devlopment. I am seeking guidance on how to develop a customized
    interactive web application so that the end user can change color
    and patterns of apparel on vector images such as teamsports
    uniforms and tshirts. Once the design is customized to their liking
    they can save it with all of the spec information in a file to
    there desktop or to a database to send to the manufacturer.
    Also looking for a possible way to use a CMS so I can upload
    templates of the garment easily for the end user to customize
    online. Can this be done and if so how? This is an example the kind
    of application I am looking for:
    http://www.dynamicteamsports.com/elite/placeorder.jsp
    I am in desperate need of some brilliant developer to help
    with this.
    Thanks in advance for anyone who is willing to assist or give
    me guidance,
    Danka
    "Reap what you sew"

    some parts of that are doable using non-advanced skills, but
    will be difficult and unwieldly if there are more than a few
    colors/patterns.
    saving the image to the server is a bit more advanced and
    you're going to need some server-side scripting like php, perl, asp
    etc. in addition to some flash programming ability.

  • I need help with shooting in my flash game for University

    Hi there
    Ive tried to make my tank in my game shoot, all the code that is there works but when i push space to shoot which is my shooting key it does not shoot I really need help with this and I would appriciate anyone that could help
    listed below should be the correct code
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    listed below is my entire code
    import flash.display.MovieClip;
        //declare varibles to create mines
    //how much time before allowed to shoot again
    var cTime:int = 0;
    //the time it has to reach in order to be allowed to shoot (in frames)
    var cLimit:int = 12;
    //whether or not the user is allowed to shoot
    var shootAllow:Boolean = true;
    var minesInGame:uint;
    var mineMaker:Timer;
    var cursor:MovieClip;
    var index:int=0;
    var tankMine_mc:MovieClip;
    var antiTankmine_mc:MovieClip;
    var maxHP:int = 100;
    var currentHP:int = maxHP;
    var percentHP:Number = currentHP / maxHP;
    function initialiseMine():void
        minesInGame = 15;
        //create a timer fires every second
        mineMaker = new Timer(6000, minesInGame);
        //tell timer to listen for Timer event
        mineMaker.addEventListener(TimerEvent.TIMER, createMine);
        //start the timer
        mineMaker.start();
    function createMine(event:TimerEvent):void
    //var tankMine_mc:MovieClip;
    //create a new instance of tankMine
    tankMine_mc = new Mine();
    //set the x and y axis
    tankMine_mc.y = 513;
    tankMine_mc.x = 1080;
    // adds mines to stage
    addChild(tankMine_mc);
    tankMine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal(evt:Event):void{
        evt.target.x -= Math.random()*5;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseMine();
        //declare varibles to create mines
    var atmInGame:uint;
    var atmMaker:Timer;
    function initialiseAtm():void
        atmInGame = 15;
        //create a timer fires every second
        atmMaker = new Timer(8000, minesInGame);
        //tell timer to listen for Timer event
        atmMaker.addEventListener(TimerEvent.TIMER, createAtm);
        //start the timer
        atmMaker.start();
    function createAtm(event:TimerEvent):void
    //var antiTankmine_mc
    //create a new instance of tankMine
    antiTankmine_mc = new Atm();
    //set the x and y axis
    antiTankmine_mc.y = 473;
    antiTankmine_mc.x = 1080;
    // adds mines to stage
    addChild(antiTankmine_mc);
    antiTankmine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal_2(evt:Event):void{
        evt.target.x -= Math.random()*10;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseAtm();
    function moveForward():void{
        bg_mc.x -=10;
    function moveBackward():void{
        bg_mc.x +=10;
    var tank_mc:Tank;
    // create a new Tank and put it into the variable
    // tank_mc
    tank_mc= new Tank;
    // set the location ( x and y) of tank_mc
    tank_mc.x=0;
    tank_mc.y=375;
    // show the tank_mc on the stage.
    addChild(tank_mc);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onMovementKeys);
    //creates the movement
    function onMovementKeys(evt:KeyboardEvent):void
        //makes the tank move by 10 pixels right
        if (evt.keyCode==Keyboard.D)
        tank_mc.x+=5;
    //makes the tank move by 10 pixels left
    if (evt.keyCode==Keyboard.A)
    tank_mc.x-=5
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    if (tank_mc.hitTestObject(antiTankmine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(antiTankmine_mc);
    if (tank_mc.hitTestObject(tankMine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(tankMine_mc);
        //var maxHP:int = 100;
    //var currentHP:int = maxHP;
    //var percentHP:Number = currentHP / maxHP;
        //Incrementing the cTime
    //checking if cTime has reached the limit yet
    if(cTime < cLimit){
        cTime ++;
    } else {
        //if it has, then allow the user to shoot
        shootAllow = true;
        //and reset cTime
        cTime = 0;
    function updateHealthBar():void
        percentHP = currentHP / maxHP;
        healthBar.barColor.scaleX = percentHP;
        if(currentHP <= 0)
            currentHP = 0;
            trace("Game Over");
        updateHealthBar();

    USe the trace function to analyze what happens and what fails to happen in the code you showed.  trace the conditional values to see if they are set up to allow a shot when you press the key

  • Need help with buying graphics card and ram for MSI 865PE NEO 2-V

    Hi,
    I want to buy 1GB of ram for motherboard MSI 865PE NEO 2-V I need help with finding correct parts.
    I also want to buy 512Mb or 1GB graphics card.
    as i said before i need help with finding correct ones so they match motherboard, I would appreciate if any one would post link to cheap and fitting parts.
    I found graphics card allready, i just need to know if it will fit.
    the card is
    NVIDIA GeForce 7600 GS (512 MB) AGP Graphics Card
    Thanks for help.

    here you can see test reports for your mobo:
    http://www.msi.com/product/mb/865PE-Neo2-V.html#?div=TestReport

  • I need help with re installing my apple account for itunes.

    Had problems with my itune account, so I uninstalled and now need help with re-installing the program with the songs I have already purchased.

    Your iTunes account is something at the iTunes Store online.  It is not possible to uninstall it.  Do you mean the iTunes application?  Even if you delete the application and restore it, it should not have deleted your iTunes library (essentially the contents of the iTunes folder in Music) on your computer unless you did a separate steep and specifically deleted that too.  You need to tell us what it was you deleted.

  • Need help with gunshot effect in FCP

    New to FCP and am trying to add a gunshot effect to a short film. Doesn't have to look top notch...just looking for something simple.
    I added a muzzle blast for the shooter from detonationfilms.com, which worked great. When i overlayed the muzzle blast, the background was black. I was able to fix this by using Modify>Composite>Screen.
    Now I'm trying to add the bullet hitting the victim, but all the shots from detonationfilms.com have white backgrounds. For some reason, when I go to Modify>Composite>Screen it doesn't work for white. What I'm I missing? Are there any other websites that have bullet hits with a black background? As I said, I'm not too picky.
    Lastly, I have about a 40 frame shot of the victim collapsing to the ground after being shot. He's wearing a white T-Shirt, which I'd like to stain with blood. Can someone tell me what program would work best for this? I basically think I need to go frame by frame and "paint" the blood on him, but not sure what program is best for this (and simple).
    Thanks! Much appreciated.

    welcome to the family. We're not really here to help you with practical effects and filmmaking tips, we're here to help you with the software. But we'll see who shows up.
    For some reason, when I go to Modify>Composite>Screen it doesn't work for white. What I'm I missing? < </div>
    Screen drops out black pixels. It's not really the best way to get luma key effects but it's quick and easy for high contrast effects footage that is delivered on superblack. Try a luma keyer to key out the white.
    Lastly, I have about a 40 frame shot of the victim collapsing to the ground after being shot. He's wearing a white T-Shirt, which I'd like to stain with blood. Can someone tell me what program would work best for this? I basically think I need to go frame by frame and "paint" the blood on him, but not sure what program is best for this (and simple). < </div>
    Should have been done as a practical effect while shooting. A simple squib and blood packet would have been FAR easier to deal with than rotoscoping and hand painting. You need After Effects or, if you have Motion, crack the manual and get set for some long sessions. There is nothing simple about handpainting on a moving object.
    bogiesan

  • Need help with after effects render engine setup

    I use AE CS6 on a mac computer running Mountain Lion. I also own a PC running Windows 7, and I am wanting to use it to assist with network rendering. How do I install the after effects render engine on a PC, when all that I own is the Mac version of the software?
    Any help would be appreciated

    Did you purchase a perpetual license for the software, or do you have a Creative Cloud Membership subscription?
    If the former, you need to purchase an additional license to get the Windows version. If the latter, you can just download the Windows version as part of your subscription.

  • Need Help With After Effects. Please read.

    Hey,
    So I'm using after effects cs6. The problem I have with it is that the final video after exporting stucks in between and never runs smoothly. I exported my almost 7 minutes video as a quicktime file that is (.mov). SO whenever I play the video in quicktime or any other player, it stucks, sometimes i pause it but it pauses after 10 seconds i click the pause button. sometimes the voice is ahead of sound and vice-versa. It doesnt stuck at the same point everytime. I need my video to run smoothly. Can someone please help.
    Appreciate your reply.
    Thanks

    FAQ: Why is my output file huge, and why doesn't it play back smoothly in a media player?

  • Urgent - Need help with Lighting Effects Filter

    Hi,
    I need urgent help on something regarding the Lighting Effects filter in Adobe Photoshop CS5. I need lighting effect urgently to complete a project.
    I am using Photoshop CS5 on a Windows Vista computer in 64-bit mode.
    On the net it is given that you can run photoshop CS5 in 32-bit mode to use the lighting effects filter - both on Mac and PC.
    My Problem:
    While on the net it is given how to change from 64-bit to 32-bit and vice-versa, I have my Photoshop CS5 installed on 'E - Drive' and not on 'C - Drive' due to lack of space. I have followed all the instructions on how to open it in 32-bit mode on the net, but I still cannot use the lighting effects plugin.
    What I need is if someone could give simple and clear instructions on how to open Photoshop CS5 32-bit version instead of opening the default 64-bit version on Windows Vista - that would be great.
    Looking forward to answers.
    Thanks.

    That advice about running the 32 bit version of cs5 for the Render> Lighting Effects filter
    only pertains to the mac version of photoshop cs5.
    The lighting effects filter does work in the 64 bit version of photoshop cs5 on windows, your
    document just has to be 8 bits/channel and in the RGB Color mode (Image>Mode) same
    for using the lighting effects filter in the 32 bit version of cs5.
    Added: In general it's frowned upon installing photoshop on drives other than C drive.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Need Help with an effect

    Does anyone know how to take an image of grass and make it
    look like it's blowing in the wind? I've seen images bent in
    directions before, just don't know how.
    Please help.
    Thanks.

    If your grass is a bitmap - then my FLA won't help you
    anyway. You can't manipulate bitmaps like
    that in flash - your only options are to re draw it in flash
    with vectors or use Anime Studio's
    Bones and Warp Image features (awesome!!!) - check it out at
    www.e-frontier.com. Then import it into
    flash as an image sequence.
    Chris Georgenes
    Animator
    http://www.mudbubble.com
    http://www.keyframer.com
    Adobe Community Expert
    *\^^/*
    (OO)
    <---->
    San Diego Living wrote:
    > hmmm I get an error trying to open your fla file :-(
    >
    > My grass image is not a vector image. I'm guessing it
    has to be to make this
    > type of effect? I do want it to look somewhat like what
    you have, only my
    > grass has been mowed a lot more ;-)
    >
    >
    >

  • NEED HELP WITH SOLARIZING EFFECT!

    So I am editing my final film project at the moment on FCP, and I need to know how to make the solarizing video filter do a few specific things. I need to make it look like the effect is SLOWLY CREEPING INTO THE CLIP and not just simply BOOM, THERE! And then on the following clip, I'd like it if my actors remained in regular color, as they were, and for only the BACKGROUND behind them to have the soarized filter.
    Does anybody know how to do this at all? It would be a tremendous help to me as right now the effect honestly looks a bit silly! Thanks, I really appreciate it a lot!
    Cheers,
    Liz

    I need to make it look like the effect is SLOWLY CREEPING INTO THE CLIP< </div>
    Create a next of all of your finished sequence. Pull two copies fo the next into a new sequence, on on top of the other (you only need audio from one of them). One copy of your sequence does not have the filter, the other does. Create a wipe or another transition or use a motion track matte to add the effect. Using an animated track matte you can have the solarization effect selectively applied to any location on the screen.
    If this is a big part of your finished school project, you may want to have Plan B ready to go. You may not be able to get what you think you want without exploring several special effects design functions that you apparently have not covered in class.
    bogiesan

  • I  need help with Shatter effect

    For the first time in my life I've chosen this effect. I'll be quick, I need to blow up Moon, but when I put shatter to it I can't see the moon anymore, I tweaked those settings, nothing. I can only see the trajectory of Moon's revolution I created. Any help tweaking those settings?

    There are resources here that show you how to use the Shatter effect.
    You description of your problem isn't very clear (Screenshots help.), but I'll venture a guess:
    You haven't set View to Rendered in the Effect Controls panel for the effect. So, you're just seeing the wireframe representation of the forces and such.
    Please, do us all a favor and read the documentation for features before using them and while you use them. There's a search box in the upper-right of the application window.

  • Need help with Lighting Effects; CS3

    So, let's say that you were trying to work out some customization using the Lighting effects under: Filter > Render > Lighting Effects.
    I understand that there is a very specific file that has the Styles.
    Any chance I can fix this problem?

    If you mean that they're grayed out then that's because you're not in RGB color mode with 8bits/channel. If you mean that the filters simply don't show up in the Filters menu then they're probably hidden in which case go to Edit->Menus and make sure that the Set dropdown is set to Photoshop Defaults (switching to the Basic workspace changes the menus to the Basic set that hides a lot of menu items)

  • Need help with ECHO effect

    My problem is explained in this video

    didn't offend me. I just don't have the patience to wade through videos when a succinct typewritten question does the job. We've gotten along pretty well around here for decades without questions posted as videos but, you know what, video clips may be the coming trend and you're just on the front of the wave.
    The biggest issue with video links, however, is that many of us are behind corporate firewalls that are quite picky about what gets through. My firewall, for instance, is controlled down to granular youtube channels and makes most public-access photo and photo sump sites totally inaccessible. If you want to make sure people other than Rick can help you out, post a question. Otherwise you will restrict the number of possible views and responses to only those who can, or will, view your video files. 
    Rick will help anyone if he can.

  • Hi i need help with After effects 7 please

    Hey i have installed AE7 but days later this error appears and i cant open the application, can somebody help me?
    after effects warning: unknow BIB error. Invalid cncoding, BRV, 0

    It may be a hard disk problem.
    Check your disks before installing.
    Dual G5 @ 2GHz   Mac OS X (10.4.5)  

Maybe you are looking for

  • I have problems to connect with Database Server in MDM SP5

    Hi, I am upgrading to SP and get problems to connect to the database server. I am able to start and stop the MDM server, but if I tru to create a new repsoitory or unarchive a repository I get this errormessage. "Unable to connect with Datase Server"

  • Exporting Photos from Lightroom 3 vs. Saving JPEGs from Photoshop IMAGE QUALITY

    Hi all, I'm not quite understanding why if I export a photo from Lightroom 3, the thumbnail looks great in Finder (if you max out display size) but when I edit the same photo from Photoshop and save it, the thumbnail image is blurry. Opening images c

  • Will there be an ios update for ipod touch 4g?

    Is there going to be and ios update for the ipod touch 4g? its honestly bs that the IOS 7 isnt for the ipod touch 4 g. so are they planning on making one compatible for the ipod touch 4g at some point? like people out there still use their ipod touch

  • Problems with Danish characters after 3.4 update

    Hello I have now tried to update photos to my archieve - http://www.fodboldfotografen.dk/coppermine14x/index.php - Coppermine as I have always done. In the description, keyword and meta data text I am using Danish Characters such as ø æ å Ø Æ Å. Unti

  • User forgot to add delivery costs to purchase order

    Got a user that forgot to add delivery costs to a purchase order, now it has been GR and IRd, now they want to add the delivery costs, of course they have to reverse the IR and possibly the GR as well, go to change mode and add this missing condition