Unable to chance BG image need help - link attached.

Using a template, I want to replace the George Washington image that is there with a bird image and have it be just as long, in other words turn my bird image into a mask as of right now when I enlarge, it gets big, and can make it large horizontally.
Here is the link and I want the bird to be the same size as the George Washing image.
http://img67.imageshack.us/my.php?image=needhelppagessl2.gif
Thanks!

First, for your "constrain" problem, uncheck Constrain Proportions in the metrics inspector. You can then drag a side handle to stretch the image. Like this:
For masking, insert your image then insert a square/rectangle & resize it to what you want. Now move the rectangle on top of your image, shift-click to select the image (in addition the rectangle) then select Format > Mask with selected shape.
Now I can move Muffin around in the mask

Similar Messages

  • I need help linking Microsoft SDK to My visual studio 2010 sp1 project?

    I need help linking Microsoft SDK to My visual studio 2010 sp1 project?
    Hi, I'm on windows 8.1 and I'm getting a lot of Direct x sdk errors every time I try to debug or release a project. Please help me I'm lost trying to fix's this, thanks.

    Hi programmerblizz,
    According to your description, could you please tell me which kind of project you try to debug or release? Is it a c++ project or other?
    If it is a c++ project, I suggest you can refer the following thread check your issue in your side.
    Reference:
    http://stackoverflow.com/questions/26303922/directx-9-cannot-find-the-include-libaries
    If no, please tell me more detail message about your issue.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need help Linking Images

    I copied and pasted pictures from online into my indesign document. By doing that my document size is over 100mb. I need to reduce the file size.
    I am trying to reduce the file size because I am working on a project for college and need to submit it. How can I use the image source (website link) to add an image to my indesign document so that I am able to reduce my file size...
    Any ideas?

    What, exactly are you supposed to submit?
    The correct way to do this is to save the images to your hard drive, then PLACE them in the ID file. THis will make the file smaller, BUT you must still include the images in any package of native files you deliver, so the overall size of the project on disk is not going to be reduced unless you are using images more than once (in which case you only deliver the single linked file, but ID keeps multiple pointers to it in the document -- pointers are very small, images tend to be big).
    Can you submit a PDF?

  • HT4009 In-App purchase is turned on and still unable to purchase it. Need help for that! Thanks!!

    I turned on my In-App purchase under "setting- general" but still unable to complete the purchase. Need Help!! Thanks!!!!

    If you are also getting a message to contact iTunes Support then you can do so via this link and ask them why the message is appearing (we are fellow users here on these forums, we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Need help linking spry tabbed panel from external page

    Could use some help.  I need to link to a specific spry tabbed panel on page "A" from a link on page "B"  I have tried several "solutions" on the web and had no luck.  When I add the code needed at the bottom of the code where you initiate the instance, it stacks the content of ALL panels in the first panel, and renders the tabs inoperable.  This is a key feature I need in a new site being developed.

    I need to link to a specific spry tabbed panel on page "A" from a link on page "B"  I have tried several "solutions" on the web and had no luck. 
    Have you tried http://foundationphp.com/tutorials/spry_url_utils.php ?
    When I add the code needed at the bottom of the code where you initiate the instance, it stacks the content of ALL panels in the first panel, and renders the tabs inoperable.
    Depending on what the code looks like, it can do all sorts of things.
    Please be reminded that the best way for us to help you is by you supplying a link to your site with a one sentence description of the problem.
    Gramps

  • Header with 3 backgroud images, need help

    Hi! I'm learning Dreamweaver CC atm, and i am confused in building my header, i need help, if you got time for a beginner.
    First, i made a Wrapper Div, added an header div inside that include 3 more div. Each of those 3 div inside my header have a backgroud image: left side, middle side and right side. They are both relative, left and right have a fixed size. The right one float right of the screen. I have trouble with the middle div: it's a 1px width backgroup that reapeat on x. I cant find the way to make it reapeat up to the right div. How can i do it?
    I want my page width to adjust to the user screen.
    (sorry for my bad english, second language )
    Thx for your time and help!

    Copy & paste this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, Responsive Header</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        /**put this into your CSS Reset**/
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    #wrapper {width: 98%; margin:0 auto}
    header {
        width: 100%;
        margin: 0 auto;
        min-height: 50px;
        color: #FFF;
        text-align: center;
    #col-1 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    #col-2 {
        float: left;
        width: 80%;
        background: #A200A2;
        min-height: 50px;
    #col-3 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    .gradient {
    background: #000333;
    background: -moz-linear-gradient(left,  #000333 0%, #a200a2 16%, #a200a2 84%, #000333 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#000333), color-stop(16%,#a200a2), color-stop(84%,#a200a2), color-stop(100%,#000333));
    background: -webkit-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -o-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -ms-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: linear-gradient(to right,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000333', endColorstr='#000333',GradientType=1 );
    </style>
    </head>
    <body>
    <div id="wrapper">
    <h3>WITH FLOATED DIVS</h3>
    <header>
    <div id="col-1">10%</div>
    <div id="col-2">80%</div>
    <div id="col-3">10%</div>
    </header>
    <h3>WITH CSS BACKGROUND GRADIENT</h3>
    <header class="gradient">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus.</p>
    </header>
    </div>
    </body>
    </html>
    Nancy O.

  • Technical Newbie Need help linking 2 computers with WRT54G

    Hi, Please excuse my non-technical language!
    I have 2 PCs that I would like to connect together so that one can get files from the other and vice versa.
    I have a broadband modem hooked up to a linksys wrt54g wireless router, and each computer is hooked up to the router with cables. I figured out how to configure it so that both computers can get on the internet and I haven't had any problems there.
    This may sound dumb since I was able to get online using the router, but what I need some basic help with is how to connect the 2 computers to each other.
    I read the information on the website and I'm sure this is possible, I just don't know what I need to download or change on the computers to make it happen.
    Any help is much appreciated! Thanks!
    Message Edited by stv on 06-23-2007 05:02 PM

    What operating systems do you have on your PC's?  There are a few ways to configure your network but largely depends on your operating systems you have.  Basically you can open the network wizard and set up the network on each PC or you can do it manually.  Depending on your OS go to your control panel and click on Network Connections or Network Setup Wizard .  If you use the network Wizard just go through the set up or you can click on Network Connections and on the left side there is a link to "Set up a home or small office network" if your OS is Windows XP.  Make sure both PC's are on the same workgroup and file and printer sharing is turned on.
    Richard Aichner (Ikester)

  • HELP!  Need help linking Nano to existing Nike+ account

    Hope someone can help as I'm going out of my mind. I searched but couldn't find another topic like this.
    I had to restore my nano (2nd gen) to its original factory settings in itunes, which erased all songs and data. My Nano is working great now, but it's no longer linked to my Nike Plus account. When I now connect the restored Nano, under the Nike + tab in itunes I cannot check the box to automatically send my workout data to Nike+. The only option is to register. I'm already registered but there isn't an option to link to an existing account?
    After the restore on my nano, how do I link it in itunes to my existing Nike+ account that has all my run data stored? Like I said, the only option on Itunes is to register and that's not what I want to do since I already am registered!
    I guess this would be the same problem if I bought a new Nano so I'm sure this question has been raised before.
    Please help! I need this fixed before my run tomorrow! Thanks folks!
    Scott

    GFF,
    Yes, I checked the link you provided below and couldn't find any topic with a similar problem. I already did my run for the day so won't know until tomorrow if the receiver and sensor gather info but everything appears like it will work just fine. When I plug the receiver in the Nike+ option pops up in the menu and it looks ready to go. It even recognizes the sensor so I think that's okay.
    I did email Nike Plus but they haven't answered yet.
    When I connect the Nano to itunes, I cannot check or uncheck the box to automatically send the info. The only option is to "create a Nike account." I clicked this and tried to just add my existing account and it wouldn't let me saying it already exists.
    There has to be a simple way to do this. Can't imagine you lose everything if you get a new Nano or have to restore one.
    Maybe more options will pop up after my run tomorrow morning when I plug in the Nano to itunes with a run to send to Nike+
    I'll let you know. Until then, any other suggestions would really be appreciated!

  • Z Index, layering images, need help (going crazy!)

    Need some help on layering images. As you can see, the "polaroid" has tape on it - I want that tape to overlap the menu bar.
    The menu bar is a grapic (there is a slight gradient to it) and on top of it are the actual menu graphics.  If I remove the menu graphics, the photo overlaps fine.  But if I insert the menu graphics, they lie on top of the polaroid.  Thanks in advance for any help you can provide.
    Gary
    Here is the code for the page:
    <h1>SanDiegoHomegrown.com</h1>
    <img src="images/menuBar.gif" />
    <ul id="menuBar">
       <li id="listen"><a href="songs.html">Listen</a></li>
      <li id="submit"><a href="submit.html">Submit Songs</a></li>
      <li id="seals"><a href="seals.html">Help the Seals</a></li>
      <li id="about"><a href="about.html">Our Story?</a></li>
      <li id="sponsors"><a href="sponsors.html">Sponsors</a></li>
    </ul>
    <div id="polaroid">
    <img src="images/band2_polaroid.png" width="280" height="354" />
    </div><!--polaroid-->
    Here is the CSS:
    #polaroid {
        height: 354px;
        width: 280px;
        padding-left: 50px;
        margin-top: -40px;
    #menuBar {
        height: 30px;
        width: 960px;
        padding: 0px;
        font-family: "Courier New", Courier, monospace;
        list-style-type: none;
        position: absolute;
        display: block;
        background-repeat: no-repeat;
        margin-top: -30px;
    #menuBar a {
        width: 175px;
        display: inline-block;
        color: #2F3032;
        text-align: left;
        vertical-align: 0%;
        margin: 0px;
        list-style-type: none;
        float: left;
        height: 35px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 10px;
        text-indent: -9999px;
    #menuBar #listen {
        background-repeat: no-repeat;
        position: absolute;
        background-image: url(images/titles/listen_bar_orig.gif);
    #menuBar #submit {
        background-image: url(images/titles/submit_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 150px;
        width: 200px;
        z-index: 1;
    #menuBar #seals {
        background-image: url(images/titles/seals_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 375px;
        width: 225px;
    #menuBar #about {
        background-image: url(images/titles/about_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 625px;
    #menuBar #sponsors {
        background-image: url(images/titles/sponsor_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 800px;

    Auggh, just figured it out.  The Polaroid needed to be relative positioning!

  • Need help linking to an external PDF file

    How can I create a link inside my robohelp project that links to a PDF file that has NOT been copied into the project. I am looking for a link with a relative path in the event the files may someday need to be moved.
    Thanks

    Hi,
    Microsoft's HTML Help documentation includes a script with which you can link to an external file. See:
    http://msdn.microsoft.com/en-us/library/ms644690(vs.85).aspx
    This opens the external file in the topic pane of the Help viewer. If you'd rather open the file in its native application (Acrobat or Adobe Reader, in your case), you'd need to use a script like this one:
    http://groups.google.co.uk/group/microsoft.public.helpauthoring/msg/fa85cc619be13e3d?hl=en
    You may also find these resources useful:
    http://helpware.net/FAR/far_faq.htm#Script_to_External_File
    http://www.cybertext.com.au/tips_HTML_chm_external.htm
    Pete

  • Disk utility unable to repare hard disk, need help !!

    I have Dual 2.7 Ghz PowerPC G5
    I have 2 hard disks one of which is used for the system (10.4.6). recently I run a disk utility verification on Macintosh HD (primary for MAC system disk).It found some errors ,but when I tried to repaire them I got this:
    Error: The underlying task reported failure on exit
    I tried to safe boot, but the computer just won't start. It starts for a few minutes ( I suppose it checking the system) and then restart again ( and if you hold the magic button fro safe boot it will restart and restart and restart).
    I tried to write some unix command ( I can remember which ones- but there are for the sort of deep repairing, but they do nothing at all.
    Please some one help me to repare my disk ( may be suggest some third party program or something else.)
    Thanks in advanced.

    Journaling is explained here
    http://docs.info.apple.com/article.html?artnum=107249
    It aids system recovery but the operation is automatic and not visible to the user.
    Have you have checked the files suggested in The hatter's link?
    Sorry, losing the thread a bit between all these different posts and problems. I can only suggest going back to basics:
    Back-up your data if possible - if you haven't already.
    Reset the PMU
    Disconnect all non-essential peripherals leaving just display, keyboard and mouse; unplug from the mains and leave for at least 30 mins; re-connect mains plug to G5(to earth the casing), then reset the PMU
    http://macosg.com/group/viewtopic.php?t=5819&highlight=resetting+pmu
    Note static precautions and the warning to press the button once only.
    Then boot from the system DVD and run the Apple Hardware Test.
    Then, while booted from the system DVD, run Disk Utility on your internal boot drive and try to repair it. Some further notes here
    http://docs.info.apple.com/article.html?artnum=302672
    If it still finds unrepairable errors you will probably have to Erase & Install
    http://docs.info.apple.com/article.html?artnum=301270
    Then use the combo updater
    http://www.apple.com/support/downloads/macosx1046comboforppc.html
    Re-install applications and restore user data.
    Apologies if this is overkill - or if there are any omissions - have to go to bed now - no, have breakfast - no, wait a minute, what day is it? - what's the Prime Minister's name...?
    Anyway, Good Luck. Let us know how you get on.

  • Problem importing a vbox gold image, need help

    Hi ppl, I finally got VDI3 up and running, following the installation instructions
    on the wiki page, the servers seems to be up:
    venezuela - Sun xVM VirtualBox Desktop Provider Summary
    Status: Desktop Provider Status Image OK
    Pools: TestPool
    Hosts:
    CPU Usage:0%
    Total Memory:3.87 GB
    Memory Usage:95%
    Storage:
    Number of Storages: 1
    Total Capacity:75.32 GB
    Usage:12%
    General Information
    Connections:Enabled
    Desktop Assignments: Flexible
    Provider: venezuela
    Cloning Enabled
    Template: -     
    Clone Jobs Running: 0
    but when I try to import the image, copied from the xVM server to the vdi core
    secondary via nfs, it fails without any error that I can see:
    Importing Desktop      TestPool      12:21:41      12:21:41      Job Failed
    what should I start looking for to correct this?

    Hi Velithion ,
    After you import the desktop to VDI,you need to convert this desktop to a template.You can either use Admin UI
    or ./vda desktop-template <desktop-id> .This will convert the desktop to template.
    Now when you do pool settings,I mean defining the pool size,recycling,etc. there you can specify what template(in the drop down list) you want to use.
    (Note : Only the desktops which are converted to a template will be shown under this drop-down list)
    Also refer to
    http://wikis.sun.com/display/VDI3/How+to+Enable+Cloning+for+an+xVM+VirtualBox+Platform
    --Chirag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • NEED HELP LINKING TO FILES!

    Hi,
    I have a pdf in flash that i want clients to be able to
    download or print. I put the file on my host server, then created a
    getURL action to get it. But then when you click on the link, the
    flash message pops up restricting access. Is it possible to embed
    the pdf in the swf and download from the swf. Kind of link an
    internal link. Similar to powerpoint's "link to file".
    Thanks in advance for any help!

    Not sure about your environment or what version of AS but I
    posted valid AS3 code on my site that does this using
    FileReference. If you are interested, you can find it on my site
    title Using FileReference To Download PDFs
    http://www.sd-dezign.com/

  • Need help linking 2 Computers via QMaster (clustering)

    I think I understand the general gist of how to accomplish this, but when I tried what various tutorials recommend, I wasn't able to see my MacBook Pro cluster while looking in the QAdministrator panel on my iMac. I had the two comps linked up via an ethernet cable, and used Command-K while in Finder to actually connect to the local address.
    So, my only guess as to why the clusters can't see each other is because I'm not running the same version of QMaster. I have (I believe) 3.5.2 on my iMac, as well as the entire Final Cut Suite, whereas I only have Final Cut Express, and QMaster 3.0.5 on my MacBook Pro. Is this why the clusters can't see each other?
    If this is the case, what's programs DO need to be the same version? Do both computers need the same versions of the Final Cut Suite, Compressor, AND QMaster in order to link up? If so, I'm assuming I can just take my original FCP disks and install them on my MacBook. Is that a correct assumption?
    I appreciate all feedback, and any other tips or recommendations any of you may have.
    Jason T.
    Message was edited by: Daeris

    You are correct with your diagnosis. Mismatched versions of QMaster and Compressor will not work together as a cluster. Here's some more information:
    Installing the Software
    The End User License Agreement for Final Cut Studio says that you can install your copy of FCS on one desktop and one laptop that you own, but they cannot launch similar apps simultaneously. What that means, is you can install FCS 3 on your MacBook Pro, (which will give you matching versions of Compressor and QMaster, and matching codecs). Then you should be able to set up your cluster.

  • Needs help Linking back the audio to video files (MXF)

    I already unlinked the audio from certain video files (MXF) because I needed only the video, but now I would need only the sound, but it seems like the audio of those clips is gone. I tried importing the clip again (audio + audio linked to it) but there is no waves in the sound. Can't hear anything. Tried to import the sound by itself, but still no sound. When I look in the P2 viewer there are only 2 soundraks showing (3&4). Track 1 & 2 are gone and still no sound. How can I get the sound back for these clips. There must be a way?
    Thanks for your time

    Import the entire P2 Contents Folder again.

Maybe you are looking for

  • Urgent: Ultiboard consistently crashes on DRC check

    On my design that is several months in the working I've reached a point where I don't get DRC errors anymore (even though I know there are several) and if I press the DRC check button manually ultiboard crashes. I've tested this on three of my cowork

  • Unable to kill a session in SM50 or SM66

    One of our developer was working on a program and there was a network failure.  When we got the network back the system shows the process is till running since 3 days. Tried to kill it from SM50 and SM66.  While logging in it is giving 3 options and

  • How to start service to run Discoverer Viewer on 10.2 EE on web-port 7778?

    I have installed 10.2 EntEdition db on Windows, with OLAP and DataMining options "on", and wish to know what steps can enable me to run Discoverer Viewer (for example, http://mymachine:7778/discoverer/viewer ). What service must be turned on for ther

  • Error -1 occurred at CDK_Utility_GenerateErrorCluster.vi - IB_Source_Container.lvclass:Report_Preview_Error.vi

    All, I ever built this applicatio software with LabVIEW 2010 successfully. Now I changed to LabVIEW 2013 and want to build this software again, but encountered this undefined error, "Error -1 occurred at CDK_Utility_GenerateErrorCluster.vi -> IB_Sour

  • Class casting & class specific methods

    I have an array of JComponents, over which I iterate. Depending on the type of component(JLabel || JTextField), I will do different methods on the components, from which some are component type specific. Can I somehow do class casting to allow doing