CS6 - Render Lightning Effects not working properly. :(

Hello, i am having problem on Photoshop CS6 *yes, it is Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64*. I am having problem with Render > Lightning Effects which are not rendering properly. Well, it shows me different, than I am getting it in final.
Here you can take a look:
Image before : http://img210.imageshack.us/img210/7003/dwm2012090722362755.jpg
Image inside Render > Lightning Effects : http://img694.imageshack.us/img694/8977/dwm2012090722370166.jpg
And, what i get : http://img826.imageshack.us/img826/353/dwm2012090722370807.jpg
I am really sorry for my bad english, becouse, I am Latvian ^_^

Well, it's just gradient with Texturiser Filter on it.
So, i tried to make diference more visible.
I have 3 images again, where you can see...
So, first image, as it shows me in Render > Lightning Effect, this is my ideal variant:
Well, second one is, when i click OK while loading and taking screenshot while cursor is on *loading*
And third one, after it's done loading, well not result what i expected...
And, i tried recreating same lightning as yours, but same results, whole image is iluminated
Starting to think, maybe something wrong with my Photoshop?

Similar Messages

  • Render lighting effects not working properly

    I seem to be having a problem with the 'Render > Lighting Effects' feature. It works, but not the first time I use it. I can go in, set the controls how I'd like them, and click OK to apply. The effects will remain for about 5 to 10 seconds, and then it will revert to the image I had before the lighting effects were applied. If I repeat the process a second time, the effects will remain in place.
    I'm using CS6 via Adobe Creative Suite on a Windows 7 operating system. Any ideas?

    Don't really understand what you are saying.
    Without the ability to change the size of the oval the lighting effect will always be the same size.  How can I get the buttons to appear?  I have just watched several video tutorial on the lighting effects in CS6 and the buttons were showing in all of these and it was demonstrated how to change the size of the effect by using them.

  • Eye Dropper tool in After Effects Not working Properly

    I am using Adobe After Effects CS5 on a mac. And most all of the eyedropper tools in the software are not working properly. They always select a way different color than it should be. What is wrong?
    One day they just all decided to not work. Its really frustrating. Its been a few weeks now.

    Well, For some strange reason its working just fine today. I did restart my computer yesterday and after that it seems to be working.
    I haven't recenitly messed with my hardware acceleration/graphics card or monitor color profile. So if that was it, then it did it on its own.
    None the less its working now. Thank you for your help!!!

  • "Ken Burns effect" not working properly

    Whenever I try to add a still photo to an iMovie 6 project, i get an error chirp and then nothing ends up in the timeline. Often, if I turn off the ken Burns Effect, it imports fine.
    Do I need to reinstall? If so, won't that mess up the iLife '09 software already installed? And will it mean that I have to reinstall all my Slick Effects?
    Anybody know the answers to these questions?
    Thanks in advance.

    As Rich839 writes.
    My list in another way of putting it
    *Not knowing the origin to Your problem - General approach when in trouble is as follows.*
    • Free space on internal (start-up) hard disk if it is less than 10Gb should rather have 25Gb
    • Delete iMovie pref file - or rather start a new user/account - log into this and re-try
    iMovie pref file resides.
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    and is named. *com.apple.iMovie.plist *
    While iMovie is NOT RUNNING - move this file out to desk-top.
    Now restart iMovie.
    • Hard disk is untidy. Repair Permissions, Repair Hard disk (Apple Disc Util tool)
    • Garageband-fix. Start it, Play a note and Close it. Re-try (Corrects an audio problem that hinders iMovie)
    • Screen must be set to Million-colors
    • Third party plug-ins that doesn't work OK (not relevant for iMovie’08 or 09)
    iMovie updated ?
    QuickTime updated ?
    Mac OS version ?
    • Program miss-match. iMovie 5.0.2, up to Mac OS X.4.11 AND QuickTime 7.4.1 - is OK
    • Program miss-match. iMovie 6.0.3 or 6.0.4, Mac OS X.4.11 AND QuickTime 7.4.1 - is OK (might work under Leopard)
    • Program miss-match. iMovie’08 v. 7.0.1, Mac OS X.4.11 AND QuickTime 7.4.1 - is OK (might work under Leopard)
    From LKN 1935. (in this case = iMovie HD (5), I tried it all, but nothing worked.
    Your answer (above) has been helpfull insofar as all the different trials led to the conclusion that
    there was something wrong with my iMovie software. I therefore threw everything away and reinstalled
    iMovie from the HD. After that the exportation of DV videos (there has not been any problem with HDV videos)
    to my Sony camcorders worked properly as it did before.
    Lennart Thelander
    I run "Cache Out X", clear out all caches and restarts the Mac.
    Yours Bengt W

  • Flip effect not working properly

    Hello Friends,
    I am just a beginner in flex. Sorry for asking such a silly question. In the below code I am trying to make a Flip effect using Alex Uhlmann's libraries. When I click on the Datagrid, its not flipping properly. (When the table flips the red colored canvas is supposed to be on the other side of the datagrid. But it just stays in the background). I am missing something in my code. I very much appreciate your help
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:mxeffects="com.adobe.ac.mxeffects.*" layout="absolute">
        <mx:states>
            <mx:State name="anotherState">
                <mx:AddChild relativeTo="{tab1}">
                    <mx:Canvas id="canvas2" left="10" right="10" top="110" bottom="10" backgroundColor="red"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:transitions>
            <mx:Transition fromState="" toState="anotherState" effect="{flip}"/>
        </mx:transitions>
        <mx:Sequence id="flip" duration="2000">
            <mxeffects:Flip target="{canvas1}" siblings="{[canvas2]}"/>
        </mx:Sequence>
        <mx:TabNavigator right="10" left="10" bottom="10" top="100" cornerRadius="6">
            <mx:Canvas id="tab1" label="Tab-2" width="100%" height="100%">
                <mx:Canvas id="canvas1" left="10" right="10" top="110" bottom="10">
                    <mx:DataGrid width="100%" height="100%" click="currentState='anotherState'">
                        <mx:columns>
                            <mx:DataGridColumn headerText="Column-1" dataField=""/>
                            <mx:DataGridColumn headerText="Column-2" dataField=""/>
                            <mx:DataGridColumn headerText="Column-3" dataField=""/>
                            <mx:DataGridColumn headerText="Column-4" dataField=""/>
                        </mx:columns>
                    </mx:DataGrid>
                </mx:Canvas>
            </mx:Canvas>
        </mx:TabNavigator>
    </mx:Application>

    Same problem here. Still looking for advice or solutions in all threads. Reverse works fine on movies taken with the MacBook minicam, but doesn't seem to work on movies imported from outside minicams.

  • Crumble animation effect not working properly

    Crumble effect is not working. Other effects seem fine. Tried moving the one slide to a new presentation. Tried changing speed.  I've rebooted. Can't locate any pref files to remove. I'm using it on a .png object I made in photoshop. Hmm. maybe I'll convert to .jpg and see what happens.
    Using Keynote 6.2
    OS X 10.9.4
    Mac Mini 2.7 core i7
    16gb ram

    Crumble effect works perfectly with me.
    You are aware that crumble is a build out effect?  Therefore it removes an image from the screen using the effect.

  • Can you help? photo booth effect not working properly.

    The pop art effect is no longer working on my mom's G5. It only shows a pic in the upper left rahter than the four it used to show: upper left, upper right, lower left and lower right.

    parp,
    You don't mention which model of G5 your mother has.
    However, you need to install a "fresh" copy of the Photo Booth application from the install DVD or a working copy from another machine.
    Mine POP ART effect stopped working like you mentioned with only the one photo in the upper left. I deleted that copy of the Photo Booth application and installed a fresh one. Now all 4 or the photos are showing.

  • Leopard Video Effects Not Working Properly

    When ever I have a video conference and try to use a video backdrop the picture becomes very flaky, with parts of my me being covered up by the back drop and random parts of the back drop not working. I think I'm doing everything right but it still isn't working right.
    Thanks,
    David

    I have that same problem too. I called up Applecare and was on the phone with them for at least and hour and they couldn't fix it either. They said that everyone is having this problem. I was at the Apple Store today for my ProCare Appointment and the creative told me that it does the same thing on all the computers in the store. Its such advanced technology that it need a nice clean background. There is a way to get it to work if you have a plain white background and I have yet to try it out. I am positive that apple will fix this through a software update in the future.
    The support agent on the phone said this might help too:
    http://docs.info.apple.com/article.html?artnum=306714

  • Photo Booth Backdrop Effects Not Working Properly

    Special Effects and Distortion Effects work but Backdrop Effects (Clouds, Color Dots, Earthrise, Eiffel Tower, Fish, Rollercoaster, Sunset, Yosemite)
    doesn't. It would ask me to step out of the frame and I do, then I get Background Detected and I step in the frame but here's the problem. The backdrop doesn't show correctly. Say I choose 'Eiffel Tower' I can't see the whole backdrop just some of it because my actual background (wall) interferes, in other words I can see both my wall and the backdrop. How can I fix this?

    I'm not sure I understand what you mean

  • Photobooth Effects not working properly

    I'm having an issue with Photobooth that is quite odd. When there aren't any effects turned on, Photobooth is fine. When I click on the effects buttons however, they are all screwed up. I can't even explain it, so I've included a link to a few screen shots.
    Bear in mind that I'm sitting dead center of the camera. My iSight works fine in other apps, so I'm assuming that it's the effects plugins that are causing this problem. Any help will be greatly appreciated.
    http://tomcrawford.org/photobooth

    Hi,
    Welcome to the    Discussions
    I would delete them.
    They are placed in the Hard Drive/System/Library/Compositions folder.
    Technically this is not good Practice as that should be for Apple's own stuff only and any Add-Ons should either go to Hard Drive/Library/Compositions for every Mac User to use or to Hard Drive/Users/(your account)/Library/Compositions for just you to use.
    The second more important thing is that they are older style Quartz files and not compatible with the current Quartz/Quicktime management of Video.
    8:21 PM Friday; June 25, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Transitioning effect not working properly (cross dissolve)

    I had a clip and split it in two in FCP. I took the later half and imported to AE to make my effect. The plan was to import it back to FCP and add a cross dissolve between the two half-clips to make it look like the effect fades in. Makes sense, right?
    Weeeell, the darn thing won't let me add an editable transition. I place the two perspective clips side by side (so they continued with each other), right clicked the part where they met and added the cross dissolve. It only added a one frame effect to the later (AE) clip. I've tried even going through the menus and doing the cross dissolve, but it still does the same thing. Is there something that I must have missed or something extra I'm not doing? All I want to do is have my two halves of a clips edited together with a dissolve. Can anyone help me?

    Basically, a handle is media that extends beyond what exists in the timeline. You can use the search feature of this forum for hours of amusing and informative reading.
    When you exported out of fcp to ae, you effective lost any possible handle, because you started at what you wanted to be the middle of the dissolve.

  • Lighting Effect not work in CS6*

    Why Filter/ Render/ Lighting Effect not work in CS6?
    It's not work only in CS6 Beta or in anything else :-/. It's Useful with me

    A bit more information would be helpful.  What is happening on your system when you go to  lighting effects?
    What system are you running on? What video card are you using? Are you using the most recent driver?
    Do check our system FAQ as GPU is requried for lignting effects to work properly.
    FAQ: What features use the GPU and how do I troubleshoot GPU issues?
    Pattie

  • Selection tools not working properly -- Illustrator CS6

    The two selection tools in CS6 Illustrotor not working properly.  They don't select the object when I click and drag a box around them and the handles on drawing path won't stay highlighted when I use the direct selection tool so I can adjust them -- Worked in Illustrator for about 12 years and never had this problem.

    Have you tried:
    View > Show edges

  • Camera Raw CS6 not working properly

    I have upagraded from Ps Cs5 to CS6.
    I open a file in CR, and modify the exposition. After that, I modify the clarity: immediatly, the exposition goes back as it was before the modification ...
    After the work on CR, I finish the file and go back to bridge: the image is not modified ! But if I dobble click on the same image in bridge, the file is opening in CR with the modifications: so this modifications are note visble on bridge ...
    Some body can help me ?
    I work with the last version of Br and Ps CS6.
    Thanks,
    Michel,   [email protected]

    Thanks a lot, Adriana, it is working ! You are right, it is the Nike plugins responsibility. Everything is OK now.
    Salutations and many thanks from Guadeloupe, French West Indies
    Michel GOGNY-GOUBERT
    Le 4 mars 2014 à 17:42, adriana ohlmeyer <[email protected]> a écrit :
    Re: Camera Raw CS6 not working properly
    created by adriana ohlmeyer in Adobe Camera Raw - View the full discussion
    If you have Nik plugins installed, please check reply # 8 on this thread:
    http://forums.adobe.com/message/6045415#6045415
    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/6179192#6179192
    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/6179192#6179192
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6179192#6179192. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Camera Raw at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I bought creative suite cs6 design standard student and teacher edition and the download did not work properly - files appear incomplete/ or damaged - none of the program items work at all. File size for installation seems very small for a product of this

    I bought creative suite cs6 standard student and teacher edition and the download did not work properly - files appear incomplete/ or damaged. File size seems very small for a product of this size. Can you assist with download issue or provision of software ?

    Lalalaladog where did you download CS6 from?  I would recommend downloading the installation files for Creative Suite 6 Design Standard at Download CS6 products

Maybe you are looking for