How would you do this "star burst" tutorial but have transparent backgrounds when you're finished

I been playing around with this tutorial and have a really fun project to apply it to, but I really need a transparent background so I can use it on a couple different backgrounds.  I tried just selecting the backgrounds and snipping them out, but can't figure out how stop the gradient layer at top from filling the entire background. I also tried just flattening it and cutting it out.  Really neither of those solution make for anything that look slick.  Is there another way to do this tutorial or way to not have a background at the end?  I'm using Adobe Photoshop CS4, thanks.
http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/

csuebele wrote:
Yes, Trevor is correct about the antlines.  They are only an average of the selection.  There are lots of ways to create burst effects like this.  You could smooth out the jagged lines with a slight radial blur.  The only problem with it is that you either have to have what you want to blur perfectly centered in you document, or attempt to guess where the center is in the very small dialog box.  With the above image, I use the angle gradient tool set to noise.  This give a wild multcolored gradient, which I then converted to B&W, adjusted the contrast, put in screen mode, and manually masked the areas I wanted.
Jack you have some great workflow ideas.  Using the gradient tool that way was new to me, but what a great tool to have in your virtual Photoshop toolbox.  I had to hunt for how to set the Angle gradient to noise, but these two links did the trick for me:
http://www.webdesignerdepot.com/2010/07/exploring-photoshop%E2%80%99s-angle-gradient-tool/
http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-77e1a.h tml
(Click on create noise gradients or scroll to the bottom of the screen).

Similar Messages

  • How can I place a MP4 into Dreamweaver and have it autostart when you load a web page?

    Hi All
    I am trying to place a MP4 video/music clip into a webpage.
    I would like it to auto start once you click on the page, play and then the page loads.
    Is this even possible?
    Thanks in advance to all those who will be able to help

    Video Streaming Basics -
    http://www.mediacollege.com/video/streaming/
    Embed Tag Attributes for QuickTime player -
    Look at AutoHref and AutoPlay
    http://www.apple.com/quicktime/tutorials/embed2.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Is it possible to install windows 7 on my macbook from a removable hard drive using boot camp? How would I do this?

    Is it possible to install windows 7 on my macbook from a removable hard drive using boot camp?
    How would I do this?

    If you have Lion installed, and run Boot Camp, it will create the boot flash for you, just followe the tutorial on screen. As far as I remember, this was not possible prior to Lion.

  • My ipod was stolen, can I find out what the serial number of it is, based on looking at a connection history in my itunes? How would I do this? I didn't register it.

    My ipod was stolen, can I find out what the serial number of it is, based on looking at a connection history in my itunes? How would I do this? I didn't register it. I think I found the guy selling it, just looking to confirm the serial number and I'll make a phone call to the police.
    Thanks

    kevilay2013 wrote:
    is this possible?
    Yes.
    Open iTunes on the computer you used to sync the iPod and select Preferences… from the iTunes menu.
    Select the Devices pane. Position the cursor over any of its backups. The iPod's serial number will appear in a popup window.

  • HT1349 My Macbook Pro was stolen and I need the serial number. How would I find this? I need it for the police report so if I could get answers soon that would be great, thanks :)

    How would I find this? I need it for the police report so if I could get answers soon that would be great, thanks

    Lanlani wrote:
    ... It there any other solution ?
    Consider using this site: http://www.stolenlostfound.org/
    This is Apple's official word on the subject:
    Reporting a lost or stolen Apple product
    If you have lost or found an Apple product, please contact your local law enforcement agency to report it. Although Apple does not have a process to track or flag lost or stolen product, you can use My Support Profile to find a list of serial numbers for items purchased or registered with your Apple ID.

  • I am considering switching from MIE to Firefox. But I need to use an outdated version (7.3.1) of QuickTime, and I do not want Firefox to update it. If I installed Firefox, how would I prevent this?

    I am considering switching from MIE to Firefox. But I need to use an outdated version (7.3.1) of QuickTime, and I do not want Firefox to update it. If I installed Firefox, how would I prevent this?

    Firefox doesn't update plugins like that. The worst you might see is a "nag" from Firefox after an update, about that plugin being outdated; and you can dismiss that "nag" by just closing it.

  • How would I do this?

    I have to say I'm completely lost. I need to make two files - WordFrequencyAnalyzer.java that has all the functions and TestWordFrequencyAnalyzer.java that should be a GUI that calls the first one. I know how to make GUIs without a problem but its these functions that baffle me.
    This is what I need to do - WordFrequencyAnalyzer.java needs to have a constructor that opens us a text file and reads it and saves what is needed for analysis. This is what I have:
    public void WordFrequencyAnalyzer(String filename) throws IOException
         {//Constructor.  Uses file name to open file reads it, saving what is needed, then closes the file.
               BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(filename))));
         }Now these are killing me:
    public int frequency(String word)
    *****This needs to be able to check the number of times the particular word occurs in the file. How would I do this? Please help give me a clue. The next few seem to tie in together if I could figure out how to do one of them.
    public String mostFrequentWord()
    //The word that occurs most often in the file
    public String[] wordsOccurringAtLeast(int minimumNumberOfTimes)
    //An array, alphabetized, of all the words occurring at least the given minimum number of times...I'd figure I'd use a search and compare method here.
    public int numberOfWords()
    //The number of words (counted once each) in the file
    public String toString()
    //Returns a string which, when printed, will show two columns, with a word on each line on the left and its frequency on the right. The result must be alphabetized.
    Who could give me some pointers. I don't want the code done for me because I need to learn too. Do I need to put the data from the text file into a Collection interface in the java.util package or should I use something else?? And how would I go about doing something like that?
    Thank you very much,
    Henry

    I modified the code above for the Hashtable to a Collection and came up with this and emailed him:
         What about this:
         Collection words = new Collection();
         String line;
         while ((line = br.readLine()) != null)
         StringTokenizer st = new StringTokenizer(line);
         while (st.hasNext())
         { words.add(st.next().toString());
         Storing in a Collection is what you want right? I don't want to do something that you don't approve of. I remember the time I used a Hashtable and you didn't like it. ...
    This is his response:
    As for your suggested solution: A collection is a good idea, but Collection is
    an interface, so you can't do anything like
    Collection words = new Collection();
    You must figure out what kind of collection to use. And here's a hint about
    something else:
    If every time you see a word like "the" you store it in the collection, you'll
    have two problems: the word will be stored over and over, which is inefficient
    use of space, and your program will have to do a lot of repetitive work to
    implement the methods, which is inefficient use of time.
    I new he wanted a Collection. I'm starting to know him a little better now I guess, which still doesn't help as much. If anyone has any ideas please post - this is all new to me. Does anyone know the best kind of Collection to use as he put it?
    Thanks,
    Henry

  • I had downloaded and used Final Cut Pro 7 (studio 3) on my mac, but it died. Can I download it to my new computer without buying a new copy? I'm not sure of the number of installations for academic copies. How would I do this?

    I had downloaded and used Final Cut Pro 7 (studio 3) on my mac, but it died. Can I download it to my new computer without buying a new copy? I'm not sure of the number of installations for academic copies. How would I do this?

    AH...good. 
    There is no limit on the times you can install it from the DVDs. There's just a limit as to being able to run it on multiple machines AT THE SAME TIME. If your old computer dies, or you sell it (please reformat the drive so they don't get FCP for free), then you can install on a new computer fine.  And you are allowed to install on (1) desktop and (1) laptop at the same time as well...but only use it on one machine at any given time. Meaning you can use it on the desktop at work, and then when away from the office, on your laptop.
    Long story short...you can install it fine without any issues.

  • I am looking into Buying Retail a New Blackberry Q10. Doing this to avoid having to Give up my old Data Plan. Have read that when you activate a new Phone it forces you to pick a new Plan. Is this True? and How to I avoid this? 20 Year Verizon Client

    I am looking into Buying Retail a New Blackberry Q10. Doing this to avoid having to Give up my old Data Plan. Have read that when you activate a new Phone it forces you to pick a new Plan. Is this True? and How to I avoid this? Any other advise in this matter would be greatly appreciated.
    20 Year Plus Verizon Client

    The only "unlimited" plan I can think of where this would not apply is the old Connect plan for multimedia/basic phones.  That unlimited data, on devices such as the LG Voyager, EnvTouch, and other "multimedia" devices is  not the same.
    If you currently have an individual $29.99 unlimited data plan with a 3G Smartphone, then you can buy a BBQ10 retail and activate it with the same data plan and keep the unlimited.

  • I want to reset my bootcamp Windows 7 to factory setting. How would I do this without damaging or effecting my Mac data?

    I want to reset my bootcamp Windows 7 to factory setting. How would I do this without damaging or effecting my Mac data?

    If you want to erase the BootCamp Partition, you'd use the Bootcamp utility.
    Then that part of the Mac's hard disk drive may be available for use in OS X.
    {Or, if you want to install a clean Windows 7 in the same BootCamp partition
    you'd use the BootCamp utility to erase/install Windows in the same location.
    There is a BootCamp Support section in Apple Support online, and also there
    is a fairly OK ASC discussions area specific to that purpose. }
    But you may have to check to see if the partition map is correct for Mac OS X
    after you've used Bootcamp utility to remove Windows and the partition map.
    If you do not use the BootCamp utility to remove Windows, correctly or if a
    different method to install Windows was used, you'd have to move your Mac
    OS X system and applications off the computer to an external hard drive by
    use of a clone utility (carbon copy cloner, or superduper, etc) then use the
    OS X disk utility (from running clone, is easiest) to erase the computer's HD
    and then correctly partition map and format the hard drive for Mac OS X.
    At that point, the entire drive would be erased to reclaim any untouched
    partitions from alternative Windows utilities that were used, or not used in
    the time frame of proper opportunity.
    I've had a few Macs that had been partitioned for Windows and found one
    second hand MacBook to have more actual hard disk drive capacity than
    the previous owner and the Mac HD info suggested on first glance. About
    70% of the drive had been a Windows partition, but was invisible to OS X.
    So that turned out to be a lucky find, it was like installing a larger HDD.
    The wording of your question leaves a lot
    of important information out of the picture.
    Good luck!
    edited

  • I have os x version on an imac but want to upgrade to mountian lion how would oi do this?

    I have os x version 10.5.8 on an imac but want to upgrade to mountian lion how would i do this?
    this is in my about this mac section (if this helps)
    Hardware Overview:
      Model Name:          iMac
      Model Identifier:          iMac7,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          4 MB
      Memory:          2 GB
      Bus Speed:          800 MHz
      Boot ROM Version:          IM71.007A.B03
      SMC Version (system):          1.21f4
    cheers Nino

    Hi nino8881
    1) It has to be an iMac Mid 2007 or newer. If this is the case ...
    2) Make sure you have Lion or the latest version of Snow Leopard. (You can't upgrade from 10.5.8 to Mountain Lion.)
    3) If step 1 & 2 are checked, you can download OS X Mountain Lion from the Mac App Store and install it.

  • How would I fix this AppleScript error?

    So I'm trying to do a square root so lets use the example of:
    set x to -11
    set y to -11 ^ (1 / 2)
    It then returns error number -2702, how would I fix this error?

    AppleScript can't recognize or use imaginary numbers. If you need to use these, use a program which can.
    (66383)

  • How would I express this correctly

    How would I express this correctly?
    elseif ($row_rs['loggedinip'] != $_SERVER['REMOTE_ADDR'] AND
    now("Y-m-d H:i:s") < $row_rs['lastlogin']+120 minutes) {
    die(header("Location:
    http://domain.com/login.php"));
    else {...

    .oO(jsteinmann)
    >Its not on a unix system
    Doesn't matter. Unix timestamps also work on Windows, they
    are just one
    way to store a time code withing the range of (roughly)
    1902-2038.
    >mysql data is in a datetime format
    You could also let MySQL already return the date as a Unix
    timestamp or
    even do the entire calculation in MySQL, as already
    suggested. You could
    let MySQL return both: the normal 'lastlogin' field and
    another one with
    'lastlogin'+120 minutes or whatever. Or do the entire date
    test in SQL
    and just return a boolean value if the last login was more
    than 120
    minutes ago or not ... there are several different ways.
    Micha

  • HT204053 i restarted my apple id email because i deleted my old email.. but now my phone won't backup to icloud because it's asking for the password to the old email. How would i fix this?

    i restarted my apple id email because i deleted my old email.. but now my phone won't backup to icloud because it's asking for the password to the old email. How would i fix this?

    If your phone is signed into your old iCloud ID ("email"), you need to delete the existing account then sign back in with your new ID.  To do this go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I share my iTunes with my family's iPods.  We all buy music on our iPod's and would like to transfer the purchases to the iTunes library.  How would we do this?

    I share my iTunes with my family's iPod's.  We all buy music seperately on our own iPod and would like to transfer the music to our iTunes library, how would we do this?

    Oh jeez, that was simple. Thanks!

Maybe you are looking for

  • Create table in Database Under Creating Direct Database Request in Answers

    When creating the table, I got the following error: State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43093] An error occurred while processing the EXECUTE PHYSICAL statement. [nQSError:

  • WebDb 2.2 listening ...

    I am running Oracle 8.1.5 with WebDb 2.2 on Redhat 6.1. Everything is working great on the local machine. I can run Netscape and access WebDb just fine. HOWEVER if I port scan this box from another machine I can see the wdblsnr on its port (Nor can I

  • How to open pdf from a dvd

    My laptop is an HP Pavilion dv6.  How do I get access to pdf from a purchased dvd guitar lesson(s)? It says when i insert the dvd my computor will show me how.  I have put in the latest version of Adobe Acrobat, which is the required program it said

  • Premiere Pro Sequence Markers are not showing up in Audition CS6 anymore

    Hello, If you look in Audition Help "Working with video applications" you will find following sentence: "Any sequence markers appear in Audition, and separate tracks can be retained for maximum editing flexibility." http://help.adobe.com/en_US/auditi

  • Audio and video not linking

    Hi all, For some reason, the audio and video in my timeline won't link anymore. I have Linked Selection turned on, and when I highlight the video and audio clip and go to Modify < Link, it shows that Link is checked. So it should be on. However, when