Need Help Making Background

All I want is to make the background colour go from sky blue
to horizon dark blue...
So In Flash I have the blue background but I forgot how to
make it blend with white to make it look like it's getting lighter
and lighter as you look down the flash.

Shan-Dysigns wrote:
> "There is only a solid color option."
> The poster wasn't talking about the background color of
the stage as said in
>
> Topic Summary Don't know what graphic to use.
>
>
"All I want is to make the background colour go from sky blue
to horizon dark
blue...
So In Flash I have the blue background but I forgot how to
make it blend with
white to make it look like it's getting lighter and lighter
as you look down
the flash."
Please read before posting useless input. The users says "I
have the blue background"
which could as well be "stage" itself. Hence clearing the
obvious before explaning forther
"There is only a solid color option." for stage background
color, unless make one manually
as shape and place on layer.
Best Regards
Urami
"Never play Leap-Frog with a Unicorn."
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones.

    I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones. It currently looks fine on desktops and androids. I am using wordpress with a responsive theme (Canvas). I will need you to document The url is http://adamhtc.org.s183459.gridserver.com.

    Thanks George, interesting thought.  I looked on Adobe's site and they "advertise" fillable forms for the iPhone and Android markets, but on the Windows Phone tab, that is mysteriously missing.  lol    Maybe it will come later?   Meanwhile, I'll google to see if there are any PDF viewers that can handle it now.   Thanks for the reply.  :-)

  • My grandma is a new apple user and she needs help making an apple account.

    my grandma is a new apple user and she needs help making an apple account.

    She should call Apple support or visit the Genius Bar at an Apple store (make an appointment first at http://apple.com/retail). They will walk her through the process.

  • Need Help making a Screencast for IPHONE

    Hello there
    I need some serious help making a screencast for a client - for it's Iphone Apps -
    something similare to this
    http://www.newsluxe.com/chaumet-et-iphone.php
    but more sexy, with a animated background and a different type of cursor.
    Anyideas ?
    I really don't know where to start - I found leads however :
    Camtasia Studio , screenflow, ,
    Maybe you could help me filling the gaps.
    Thanks for your help !

    does anyone know how apple made these forums?
    I think they use Jive:
    http://www.jivesoftware.com/products/forums/
    The Apple way for users to add photos is the .Mac web gallery:
    http://www.apple.com/ilife/iphoto/#webgallery

  • Need Help Removing Background

    I need help removing a background from a picture.  My boss wants some t-shirts made but the only image I have is one with a tie-dye background and I need it to just be the black and white that is on the image.  I have been trying for 2 weeks to do this and I can get real close but it leaves the colors around the edges and I need this gone.  Any ideas?  Anyone that can help me out?  I have the original photo and the one with almost everything removed if someone can help me fine tune the rest that would be great.

    You've done all the hard work and are almost there!
    Starting with your b/w rendition, duplicate the background layer, and shut off the visibility of the background layer. Work on background copy layer
    Go to Enhance menu>convert to black and white>vivid landscape style
    Open a blank layer between the background and background copy layers and fill this layer with white
    Make the background copy layer active and use the eraser tool to clean up a few smudges on the background copy layer
    Open a blank layer at the top of the stack, and press CTRL+SHIFT+ALT+E to create a stamp visible layer
    With the rectangular marquee tool, make a rectangular block selection of "DRIVE-IN THEATRE" and place this on its own layer (CTRL+J). Make the blending mode multiply, then duplicate this layer 3-4 times.
    For the text on the bottom, suggest that you erase this and replace the information with the type tool.

  • I need help making a square that scans across a screen.

    i'm trying to make a program that creates images of a square scanning across a black background.  so far all i have is a program that makes one image where i can alter the size of the square and its position.  I'm very very new to labview and i need help with the structure that would create all the images of the square scanning across and then shift down and scan across again.
    thank you very much,
    Joseph Sadler
    Attachments:
    Drawexample.vi ‏24 KB

    As Lynn found, there is a memory problem with the vi which didn't show up in my limited testing.
    Using Shift Registers with Picture Controls can cause problems.
    See this thread.
    Try the attached "mod" version.
    Then I got to thinking, why redraw the box (2x with "erase") - when you could just move a box around?
    (Note: I used a picture for the box, but you could use other objects.)
    The "mod1" version does it this way.
    steve
    Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
    question. Give "Kudos" to replies that help.
    Attachments:
    squarescan mod.vi ‏20 KB
    squarescan mod 1.vi ‏20 KB

  • Need help making a simple script for my webcam

    Hey everyone, fairly new to applescript programming. I just bought a usb camera for my macbook because I use it for video conferencing/playing around, and it is better quality than the built in isight. However, in order to use this camera I need to use drivers from a program called camTwist. This being said camTwist needs to be opened first and the usb camera must be selected from camTwist Step 1 list in order for any other application to use the camera. I just want to make a simple program that would open camTwist first, then select "webcam" from the list (double click it like I always have to in order to select it) in order to activate the driver, and then open photo booth which would then be using the camTwist driver in order to take pictures.
    I made a crude program but it does not automatically select "webcam" from the Step 1 list in camTwist:
    tell application "CamTwist" to activate
    delay 10
    tell application "Photo Booth" to activate
    that’s basically it. I set the delay to 10 seconds so that when camTwists boots up first I can manually select my webcam. HOWEVER, I would like to make a script that would boot up CamTwist first, select my webcam from the list automatically, and then open Photo Booth with the CamTwist webcam driver already selected.
    Don't know much about applescript so any help to make a working script to solve my problem would be greatly appreciated! Thanks!

    Solved my problem but now I need help with something else! First I used CamTwist user options to create user defined hot keys with the specific purpose to load the webcam. I chose Command+B. I tested it out in CamTwist and it worked. The program follows a logical order from there. First it loads CamTwist, then after a short delay it presses the hot keys in order to load the webcam from the video source list, then another short delay and Photo Booth is opened with the driver loaded from camTwist. Everything works Perfect! Here's the code:
    tell application "System Events"
    tell application "CamTwist" to activate
    delay 0.5
    --Press command+b which is a user defined hot key to load webcam
    key code 11 using command down
    end tell
    delay 0.5
    tell application "Photo Booth" to activate
    My Next question is, would it be possible with this same script to have both applications quit together. For example I always quit Photo Booth first, so when I quit photo booth is there a way to make CamTwist also quit and keep everything within the same script? Please let me know. This forum has been very helpful and lead me to a solution to my problem! Hoping I can solve this next problem as well! Thanks everyone.

  • I need help making a new Arch install ISO

    I have posted a couple of messages, but as yet no one seems to have responded, probably because they have not read them.
    I need help building a new ISO for Arch, to take account of dmraid.
    I can and have built ones that get so far, and clearly I am not that far away.
    All I need help with now is getting at the contents of the initial ramdisk (/isolinux/initrd.img) so I can make a new one with modifications, and if anyone can help, I need a hand working out how to use the kernel26.img that I will end up with on a system.
    Any help appreaciated.

    As far as I know this will be included in the next ISO release. I solved it by manually bringing the dmraid package to the install and wrote a guide on installing your root system on dmraid. However when the system crashes I have the slight inconvenience of having to install dmraid and manually mount the sets to do a recovery. I guess this is the part you want to get rid of aswell. I decided to wait until the next holy ISO.

  • Need help making photo page look clean,Time to show up on Google? Photoshop

    Just bought this Mac 2 days ago and am trying to make the switch. I was computer illeterate on my Dell as well but so far this program is pretty neat. I am trying to get my photo page cleaned up. I would like all the photos in a single row across the page with only one photo displayed underneath. I have seen a few demos with that done but I cannot figure it out. Ideally a slideshow would start automatically but I really just want a cleaned up page vs. a blob of photos.
    My site is http://www.greasysideup.com
    The picture demo is here http://www.apple.com/ilife/iweb/#album - the scuba picture on the far right of the iweb showcase is the look I am going for.
    Additionally how long does it take to show up on a google search? I am following one of the listings on here on how to do that. On the google search pages there is a brief description of the page as well, I believe it is the title page. How do I make Google say how cool my site is? if it ever shows up on google?
    Last question - is there a program on my Mac similar to photoshop? I want to do some simple 3-d looking text angled slightly as if it is coming out of the screen with my name and the name of my business.
    The other thing I want to do is take this picture, make the background black and make the planes orange or red then put those in the background on one of the pages.
    /Users/joshwilson/Downloads/Yak50_profile.jpg
    (I need to learn to post a jpg in the forums as well I guess!!) The photo is the last one on my website photo page labeled Yak 50_profile. I want to make the background black and the outline orange.
    Thanks for all the help. This site is great! I think I'll be glad I made the Mac Switch.
    Message was edited by: GreasySideUp
    Message was edited by: GreasySideUp

    I've done a section on search engines here...
    http://www.iwebformusicians.com/SearchEngines/SEO.html
    The page about sitemaps is here...
    http://www.iwebformusicians.com/SearchEngines/Sitemap.html
    There's a link on the above page to a free sitemap generator that will produce the sitemap for you in the correct format.

  • Needing help making a Slideshow in Premiere 7

    Back in 2008 several contributors on this forum helped me make a slideshow using Photoshop Elements 6 and Premiere Elements 4, which I am forever grateful for. It was a long process as I had never made a slideshow before, but after much labor I created a wonderful slideshow of my Alaska photos with music. After a lot of reading I decided to upgrade to Elements and Premiere 7, which I was able to actually do for free.   I purchased the Muvipix.com Guide to Adobe Premiere Elements 7 as I was told this would be a great resource to help me out. Well, here I am two years later trying to make a slideshow again and still as confused as ever. I am trying to make the slideshow in Adobe Premiere Elements, as I was told last time it was easier to do it that way if I wanted to add music to it. I am just getting started and am already confused.
    My first question is: Am I best off making the slide show in Premiere Elements rather than Photoshop Elements? I want to add music to it.
    I have tried using both the book that came with the program and the Muvipix book and I am lost on step one.
    In the Adobe manual it says to deselect the Show Video and Show Audio buttons. Why do I need to deselect these?
    In the Muvipix book it tells me to select a number of clips amd then either right-click on them or click on the ">>" button to access the "Create Slideshow" too.  I can't find the ">>" button. How do I access the the "Create Slideshow" feature?
    I have a question about the stills that show up in the panel. Many actual photos appear in this panel. However, there are also a large group of boxes with two swirling arrows, one green and one red. Why are they there rather than actual photos? I have tried double clicking on a few and they all bring up the same photo folder from "my pictures." I am confused.
    Sorry if my questions seem very basic, but this is not what I do for a living. It is a once every couple of year hobby. Perhaps if I ever get it downpat I will do it more often.
    Thanks for any help you can give me. I am sure I will need a little more handholding. I have been looking for the last two years for a class on this program. I know that is what I need. However, none have been available in my area.

    Thanks for the response Steve. I am hoping it will be easier this time around.
    "If you're seeing empty boxes with swirling arrows in them instead of your photos in the Project panel, it means that the program no longer has access to the photos -- either because they were moved or the device that they were on (your camera?) was disconnected from the computer. You really need to copy these photos to your computer's hard drive if you're going to use them in a project"
    These photos were still on the harddrive. I checked in Photoshop Elements and they needed to get reconnected. Here is what I think happened. When I download my photos, they go into MY PICTURES. When I move them from where they automatically get placed by the program, into a folder of my choice, they seem to get "unconnected". I was able to reconnect them and now they appear in Premiere Elements. Thanks for the tip which actually led me to a solution.
    "There are actually at least four different ways to make a slideshow in Premiere Elements and Photoshop Elements. Each has advantages. Which method are you using? (In all cases, as I say in my book, you should make sure your photos are sized to no larger than 1000x 750 pixels in size before you begin.)"
    I am just starting and I was using Premiere Elements 7. I thought I was told back in 2008 on this forum it was easier to do it all in Premiere Elements if I wanted to add music rather than creating it in Photoshop Elements and then moving it to Premiere. As far as photo size, I am a real beginner here. I have no idea what size they are or where to look to find that out. All I know is that  my Alaska slideshow turned out great and did nothing about changing pixels. Where would I find out how to change pixel size?
    "It sounds like you're using the Create Slideshow tool in the Project media panel. (As I say in Chapter 1, you'll only be able to see the >> menus if you go to the Window drop-down menu and select Show Docking Headers.) You can also access this tool by selecting all of the photos you want to include in the Project panel and right-clicking on them."
    I did read about Show Docking Headers and did follow that instruction. That was the first thing I did, actually. However, when I am in Premiere ELements, I still don't see where I find the Create Slideshow tool that you mention on p. 59. I am a bit confused with this option. I can move the photos I want from the panel to the Timeline, but I am confused as to where the "Create Slideshow Tool" is located.
    Thanks again for your help.I know I will get this done, just very slowly.

  • Need Help making a navigation menu for a website

    Alright so I've been having some problems getting this to work correctly. I am making a navigation menu for a website and I'm trying to get when I hover over the main header a drop down appears animated of course below it. I also want when you highlight a specific text line for it to highlight blue along with a rectangle behind it to change to a lighter shade of red.
    Some of the problems  I have been running into is play and stop commands on mouseover and them not stopping when they should and getting the text to change color.
    Thanks for the help.
    Here are some screen grabs of what I am doing
    http://imgur.com/W2bZuF3
    http://imgur.com/W2bZuF3
    http://imgur.com/2GI3y71

    Your page's code is still a bit of a wreck.  Do you ever look at it?
    <html>
    <style type="text/css">#p7MBM_1 {
      width: 951px;
    You need a doctype first - I recommend HTML4.01 Transitional.  Open this (and other pages) in DW and use FILE | Convert > HTML 4.01 Transitional, then save.  But wait until you do the other changes recommended below before doing this.
    Add a <head> tag below the <html> tag.
    Add a <title> tag below the <head> tag.
    Add this below the <title> tag - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Add </head> below this -
    <style type="text/css">
    <!--
    .style10 {font-family: "Goudy Old Style"}
    -->
    </style>
    You may want to change that font-family style to "Goudy Old Style, Geneva, Times, 'Times New Roman', serif", since Goudy is not web safe.
    Move <body> below that </head> you just added.
    That will clean your code up a bit.  Let's look at the page again when you have done these.

  • PSE7, Novice needs help w/background

    I would like to take Grandpa's hairy knee out of our new granddaughter's face.  I've tried selecting her image and used a feather of 2 pixels. I then used a blank background with different effects, clouds, etc. It's not working because it is too stark and not natural looking. Is there a way I can make it look as though she is resting her head on a soft blanket?  If so, PLEASE give me details as to how to obtain that result.  I am trying to learn and need specifics.
    I'd also like to learn how to "soften" her image and change it to B/W....so much to learn, so little time.  Thanks!!

    Hi Mark,  here come the questions, so elementary it's embarrassing. I found an image of a blanket from a picture I took earlier:
    I assume I bring this image into PSE and make a selection with the selection brush.
    2) You then said to "copy this selection to the clipboard". What is the clipboard, and how do I copy it there?  I have four books on PSE and couldn't find the "clipboard"
    3) Next, open my picture and paste the blanket from the clipboard, creating a new layer.  Again, can you give me the specifics?
    I know I can use your image, but I really want to learn how to do this by myself.  And, i want the image in high resolution. Your help is appreciated!

  • I need help making a pie chart

    Hello, hoping for some help with making a chart that will update as i continually input data
    I have a chart that has many columns logging details of win/loss records. I would like to make a pie chart that represents a set of columns and shows the ratio of wins for each of the columns.
    I will try and give some better details. There are 5 columns (j,k,l,m,n) and each represents a color. In each column there are check-boxes. 1 or more will be checked on each row. On the same row there is a tally of wins. each row represents a different day. What I am looking for is a pie chart that shows how many wins i have in each color.
    for example.
    nov 1st: 5 wins in color J
    nov 2nd: 2 wins in color k
    nov 3rd: 4 wins in colors m and n
    the pie chart will contain a total of 15 'wins' split up on the chart between each color....... 5(j) + 2(k) + 4(m) + 4(n). theoretically the J should take up 1/3rd of the pie and so on.
    I also have a total at the bottom of the colors column, but this will not show which color got the wins.
    Hopefully this makes some sense to understand and if I am very fortunate someone much smarter then me will be generous enough to help me out.
    Thank you very much, all help is appreciated.

    Hi Anthony,
    This table may be  what you want. I added a row at the top (you don't need that row. It is just may way of getting around the poor screen shots in this forum).
    I hid some columns, then I copied the table and pasted directly into this reply (I have had it with screen shots ).
    A
    F
    J
    K
    L
    M
    N
    Date
    Wins
    Colour J
    Colour K
    Colour L
    Colour M
    Colour N
    Nov 1
    1
    TRUE
    Nov 2
    1
    TRUE
    Nov 3
    2
    TRUE
    TRUE
    Checkboxes show as TRUE (not a tick) in this pasted table. But a tick = TRUE .
    Formula in F3 (Wins, Nov 1)
    =COUNTIF(J3:N3,"=TRUE")
    I hope this helps with your pie chart.
    Regards,
    Ian.

  • I need help making rounded edge rectangular buttons

    Howdy, I need to know how to make the buttons I insert appear
    rectangular with rounded edges. Any help anyone can offer would be
    appreciated. I have a subscription to an online tutorial, but I
    don't even know how to ask it to teach me what I need to know.
    Please help, It has been a long, frusterating day trying to give my
    marketing director what she wants. Any guidence would be
    appreciated. -nicki

    As Michael says, the easiest way of doing this is creating
    the button with
    rounded corners in Photoshop or similar graphics application.
    But a client of mine wanted to upload images without having
    to keep rounding
    the corners, so I created an image containing a chromakey
    coloured rectangle
    with rounded corners, I used the same background colour as
    the website
    background, then saved the image as a transparent gif,
    applying the
    transparency to the rectangle colour.
    I then used the background-image property to stack the image
    with the
    transparency OVER the top of the image that I want to have
    rounded corners:
    <img src="images/transparent_bkgrnd.gif" width="260"
    height="194"
    style="background-image:url(images/pretty_picture.jpg)"
    alt="" />
    Hope this helps.
    Cheers
    Nick
    "n1cdavis416" <[email protected]> wrote in
    message
    news:frsc54$pc2$[email protected]..
    >
    > Howdy, I need to know how to make the buttons I insert
    appear
    rectangular
    > with rounded edges. Any help anyone can offer would be
    appreciated. I
    have a
    > subscription to an online tutorial, but I don't even
    know how to ask it to
    > teach me what I need to know. Please help, It has been a
    long,
    frusterating
    > day trying to give my marketing director what she wants.
    Any guidence
    would be
    > appreciated. -nicki
    >

  • I need help making a mailserver.

    Hey all, this is my first post on the Arch-Linux forum. As you can tell by my title, I would like to allow this computer (running arch, as you may have guessed) to work not only as a desktop machine, but also an e-mail server, with the possibility of expansion in the future. I've found some guides, but I do have some questions, so I decided to ask them here.
    First off: Will this even work? The guides to do this that I've seen recommend a server-based distribution, like ubuntu server edition, to do this. I'm making the assumption that this desktop system can do it as well, but I'm not sure.
    Second: To do this, and be able to access it from a remote location (my ipod at a wifi hotspot, or a friend's house, for instance), will I need to register a domain name, or is there an easier way?
    That's pretty much it. Thanks in advance for the help!
    -Suilenroc

    Hello and welcome to the forums!
    First off: Will this even work? The guides to do this that I've seen recommend a server-based distribution, like ubuntu server edition, to do this. I'm making the assumption that this desktop system can do it as well, but I'm not sure.
    You can install the mail-services on any computer. It doesn't matter if it is a "server" or a "desktop".
    Second: To do this, and be able to access it from a remote location (my ipod at a wifi hotspot, or a friend's house, for instance), will I need to register a domain name, or is there an easier way?
    Check out DynDNS
    But please keep in mind, that making services aviable trough the internet implies a much higher security-risk than just having a linux box behind a firewall. Especially mail-servers need elaborate configuration - don't let your box become an open mail relay...
    Br

Maybe you are looking for

  • How can i un disable my ipod?, how can i un disable my ipod?

    so i changed my ipod password and when i tried unlocking my ipod it says it was incorrest and now it says to connect to itunes but it wont work,, how do i un disable it

  • Sync folders in home folder

    I have AD-OD home folders set up fine. I have a small problem however. When I make another folder in the Users home folder, ie Downloads or whatever, that won't sync because of permission issues. Folders created on the desktop works fine. Any ideas?

  • Can't access emc and/or management shell

    Really need some help with this. Researched all day and no fixes have helped. Exchange 2010 - Windows 2008 R2 Standard. EMC error:  Connecting to remote server failed with teh following error message: The WinRM client cannot process the request. It c

  • Events in CMC

    Hi All, How we can create Events in CMC & why need to create it? please reply ASAP Regards,

  • How to use iTunes as a recorder

    How do I use an Ipad2 for voice recording, via iTunes or an new app? Cheers