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?

Similar Messages

  • TS1314 Need help tranfering images to iphone...

    I need help tranfering images from my computer to my iphone. I've synced the images but they don't appear on my iphone, also on the file that contains the images, there's a file that says IPOD PHOTO CACHE. I don't know what to do. Please Help...

    Hope these help, do you not find them at all in the photos app?:
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPhoto '11: View photos or slideshows on iPod, iPhone, iPad, or Apple TV
    http://support.apple.com/kb/PH2437
    iTunes: Understanding the iPod Photo Cache folder
    http://support.apple.com/kb/TS1314
    ============================
    - Oz

  • 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 getting images for blog aggregator

    I need help trying to grab images into a blog aggregator...
    Here is the code that gets the image.
    <!--- Get thumbnail, if exists --->
    <cfset content_to_parse = temp_description_full>
    <cfinclude template="module_get_images.cfm">
    <cfif IsArray(image_array) AND ArrayLen(image_array)>
    <cfloop from=1 to=#ArrayLen(image_array)# index="j">
    <cfhttp url="#trim(image_array[j].link_url)#"
    method="get" throwonerror="No" timeout="15" getasbinary="Auto"
    resolveurl="No" />
    <cfif IsBinary(cfhttp.filecontent)>
    <cfset tmp_filename = "thumbnail_entry_" & GetID.id
    & "." & image_array[j].file_type>
    <cffile action="WRITE"
    file="#ExpandPath(request.base_relative_url &
    '/blog_thumbnails/' & variables.tmp_filename)#"
    output="#cfhttp.filecontent#">
    <cfset thumb_image = request.img.process_image(image_path
    = ExpandPath(request.base_relative_url & '/blog_thumbnails/'
    & variables.tmp_filename), max_width = 120, max_height = 120,
    crop_area = "center")>
    <cfimage source="#thumb_image#" action="write"
    destination="#ExpandPath(request.base_relative_url &
    '/blog_thumbnails/' & variables.tmp_filename)#"
    overwrite="yes">
    <cfquery name="UpdateEntry"
    datasource="#request.data_source#" username="#request.db_un#"
    password="#request.db_pw#">
    UPDATE aggregated_blog_entry
    SET aggregated_blog_entry_thumbnail_image_tx =
    '#left(variables.tmp_filename,255)#'
    WHERE aggregated_blog_entry_id = #GetID.id#
    </cfquery>
    <cfbreak>
    </cfif>
    </cfloop>
    </cfif>
    ---------This is the module_get_images.cfm
    code----------------
    <cfset start_pos = 1>
    <cfset image_array = ArrayNew(1)>
    <cfset regex_image = "<img[^>]*>">
    <cfset regex_image_url =
    "(((https?:|ftp:|gopher:)\/\/)|(www\.|ftp\.))[-[:alnum:]\?%,\.\/&##!;@:=\+~_]+[\-A-Za-z0- 9\/]">
    <cfloop condition="1">
    <cfset temp_image_pos = REFindNoCase(regex_image,
    variables.content_to_parse, start_pos, true)>
    <cfif temp_image_pos.pos[1]>
    <cfset temp_link =
    mid(variables.content_to_parse,temp_image_pos.pos[1],temp_image_pos.len[1])>
    <cfset link =
    REFindNoCase(regex_image_url,temp_link,1,1)>
    <cfif NOT link.pos[1]>
    <cfset temp_link_url = "">
    <cfelse>
    <cfset temp_link_url =
    mid(temp_link,link.pos[1],link.len[1])>
    </cfif>
    <!--- Don't show links to images --->
    <cfif len(trim(temp_link_url)) AND
    ListFindNoCase("jpg,jpeg,gif,bmp,png",left(ListLast(temp_link_url,"."),3))>
    <cfset image_array[ArrayLen(image_array)+1] =
    StructNew()>
    <cfset image_array[ArrayLen(image_array)].link =
    temp_link>
    <cfset image_array[ArrayLen(image_array)].link_url =
    temp_link_url>
    <cfset image_array[ArrayLen(image_array)].file_type =
    left(ListLast(temp_link_url,"."),3)>
    </cfif>
    <cfset start_pos = temp_image_pos.pos[1] + 1>
    <cfelse>
    <cfbreak>
    </cfif>
    </cfloop>
    This is the type of code it has a hard time getting the image
    becuase it doesn't have a regular IMG tag.
    <div style="float: left; width: 82px; height: 59px;
    overflow: hidden; background: url(
    http://pix.crash.net/motorsport/80/388493.jpg);
    background-position: center center; background-repeat: no-repeat;
    margin: 1px;" onMouseOver="showTipGallery(Stoner, Australian MotoGP
    2007);" onMouseOut="clearTip();">
    Is there a way to modify this code to make it be able to look
    for the backround: url?? I am thinking that woul help it.. It knows
    that an image is there.. It just doesn't know what to do with
    it.

    How difficult is it for you to do a google image search for large images of this subject?
    While you appear to be doing this project for an educational endeavour and can get away with mild copyright abuse as "fair use", you probably should not expect the participants in this forum to 1) work for Disney either as a direct employee or as a contractor and 2) offer their copyrighted work for free.
    If you really want to impress a teacher and a future employer, you would use your own art. Why dont you create your own movie concept? Suppose you and your classmate are up for the same employment position. Who do you think will get hired if you show work that is not all your own, while your classmate has produced all of his/her own work?

  • 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

  • Need help regarding image scanning from scanner and resizing it...

    Hi,
    I need help regarding scanning of image directly from scanner. Here is the scenario when the person clicks scan button on the webpage should scan the image and resize it and store it in some temp location. Is there any way i can do this. Any Help regarding this would be great!!!
    Thanks,
    Avinash.
    Edited by: Kalakonda on Jul 24, 2009 8:08 AM

    Kalakonda wrote:
    I need help regarding scanning of image directly from scanner. Here is the scenario when the person clicks scan button on the webpage should scan the image and resize it and store it in some temp location. Is there any way i can do this. Any Help regarding this would be great!!!So what you are doing is you have a Scanner (hardware: like an HP flatbed scanner) attached to a server that you want to use as a scanning station? Is this the senario that you are talking about?

  • Need Help With Image Gallery

    Hey all, I need a simple image gallery to load when you click a button.  I've tried shadowbox but have had absolutely zero luck. I'm not sure how to load it from a flash file and I know there is work that has to be done outside of flash like in the root folder. All I need is  for a simple image gallery, nothing fancy, to open when I hit a button. If anyone could explain how to use shadowbox in lamens terms or knows how to easily script a gallery that would be amazing.

    What script version is your target? AS2 or AS3

  • 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

  • So frustrated! Need help positioning image...

    Hi folks...
    I am learning CSS in fits and starts, and clearly I don't have a good enough grasp on it. I hope someone can help me.
    I created this page, and tried to place an image in the large "main content" area to the right of the slideshow. It didn't work, kept getting shifted elsewhere. So I specified it as the background image for that div instead... It looks fine in Firefox and Safari (I'm on a Mac), however, a colleague with Internet Explorer 7 on a PC says that it shows up way down at the bottom of the page after the slideshow
    I've looked at all the ways to insert the image but none of them work. I know I must be missing something very simple. Can anyone help?
    Here's the URL... http://greatdiamondrentals.com/index.html
    and the source code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Great Diamond Rentals, Diamond Cove, Great Diamond Island, Maine</title>
    <script src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">
          google.load("jquery", "1.3.2");
        </script>
    <script type="text/javascript" src="js/jquery.cycle.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
        $('#slideshow').cycle();
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    </script>
    <style type="text/css">
    <!--
    body  {
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
        color: #000000;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
        margin-top: 20;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        padding: 0;
        background-image: url(images/gradient900.jpg);
        background-repeat: repeat-x;
    .twoColFixLtHdr #container {
        width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
        background: #FFFFFF;
        text-align: left; /* this overrides the text-align: center on the body element. */
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
        height: 660px;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: none;
        border-left-style: solid;
        border-top-color: #006;
        border-right-color: #006;
        border-bottom-color: #006;
        border-left-color: #006;
    .twoColFixLtHdr #header {
        padding-top: 0;
        padding-right: 0px;
        padding-bottom: 0;
        padding-left: 0px;
        width: 940px;
        height: 30px;
        background-color: #7092c3;
    .twoColFixLtHdr #header h1 {
        margin: 0;
    .twoColFixLtHdr #sidebar1 {
        float: left; /* since this element is floated, a width must be given */
        width: 380px;
        height: 600px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    .twoColFixLtHdr #mainContent {
        height: 579px;
        width: 940px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-right: 0px;
        padding-bottom: 0;
        padding-left: 0px;
        margin-left: 0px;
        background-image: url(images/GDRmaincontent.jpg);
        background-position: right top;
        background-repeat: no-repeat;
    .twoColFixLtHdr #footer {
        width: 940px;
        top: 630px;
        height: 30px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        font-variant: normal;
        text-transform: none;
        color: #FFF;
        background-color: #7092c3;
        text-align: center;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-right-style: solid;
        border-bottom-style: solid;
        border-top-color: #006;
        border-right-color: #006;
        border-bottom-color: #006;
        border-left-color: #006;
        padding-top: 5;
        padding-right: 5;
        padding-bottom: 8;
        padding-left: 5;
    .twoColFixLtHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: normal;
        color: #FFF;
        vertical-align: middle;
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    a:link {
        text-decoration: none;
        color: #FFF;
    a:visited {
        text-decoration: none;
        color: #FFF;
    a:hover {
        text-decoration: underline;
        color: #600;
    a:active {
        text-decoration: none;
        color: #CCC;
    -->
    </style><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <meta name="Keywords" content="Maine, Vacation, rentals, Great Diamond Island, Diamond Cove, vacation homes, Island, Casco Bay, Portland, Maine Coast, Atlantic Ocean, Oceanside, seaside, Family, New England, lobster, beach, beaches, islands, rental, hotel, inn, bed and breakfast, holiday, ferry, fort, historic" />
    <meta name="Description" content="Vacation on a Maine island! Beautiful historic homes available for rent at Diamond Cove on Great Diamond Island in Casco Bay near Portland, Maine." />
    </head>
    <body class="twoColFixLtHdr" onload="MM_preloadImages('images/visited_homes.jpg','images/visited_about.jpg','images/vi sited_amenities.jpg','images/visited_map.jpg','images/visited_faq.jpg','images/visited_con tsact.jpg')">
    <div id="container">
      <div id="header">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td><a href="http://greatdiamondrentals.com/view_our_homes.htm" target="_top" onclick="MM_nbGroup('down','group1','viewhomes','images/visited_homes.jpg',1)" onmouseover="MM_nbGroup('over','viewhomes','images/visited_homes.jpg','images/visited_hom es.jpg',1)" onmouseout="MM_nbGroup('out')"><img src="images/nav_viewourhomes.jpg" alt="View Our Homes" name="viewhomes" width="186" height="30" border="0" id="viewhomes" onload="" /></a></td>
            <td><a href="about_the_island_2010.html" target="_top" onclick="MM_nbGroup('down','group1','about','images/visited_about.jpg',1)" onmouseover="MM_nbGroup('over','about','images/visited_about.jpg','images/visited_about.j pg',1)" onmouseout="MM_nbGroup('out')"><img src="images/nav_about.jpg" alt="images/visited_about.jpg" name="about" width="192" height="30" border="0" id="about" onload="" /></a></td>
            <td><a href="amenities.htm" target="_top" onClick="MM_nbGroup('down','group1','amenities','images/visited_amenities.jpg',1)" onMouseOver="MM_nbGroup('over','amenities','images/visited_amenities.jpg','images/visited _amenities.jpg',1)" onMouseOut="MM_nbGroup('out')"><img name="amenities" src="images/nav_amenities.jpg" border="0" alt="amenities and activities" onLoad="" /></a></td>
            <td><a href="map_2010.html" target="_top" onClick="MM_nbGroup('down','group1','map','images/visited_map.jpg',1)" onMouseOver="MM_nbGroup('over','map','images/visited_map.jpg','images/visited_map.jpg',1) " onMouseOut="MM_nbGroup('out')"><img name="map" src="images/nav_map.jpg" border="0" alt="island map" onLoad="" /></a></td>
            <td><a href="FAQ_2010.html" target="_top" onClick="MM_nbGroup('down','group1','FAQs','images/visited_faq.jpg',1)" onMouseOver="MM_nbGroup('over','FAQs','images/visited_faq.jpg','images/visited_faq.jpg',1 )" onMouseOut="MM_nbGroup('out')"><img name="FAQs" src="images/nav_faq.jpg" border="0" alt="FAQs" onLoad="" /></a></td>
            <td><a href="contact2009.html" target="_top" onClick="MM_nbGroup('down','group1','contact','images/visited_contsact.jpg',1)" onMouseOver="MM_nbGroup('over','contact','images/visited_contsact.jpg','images/visited_co ntsact.jpg',1)" onMouseOut="MM_nbGroup('out')"><img name="contact" src="images/nav_contact.jpg" border="0" alt="contact us" onLoad="" /></a></td>
          </tr>
        </table>
        <h1> </h1>
      <!-- end #header --></div>
      <div id="sidebar1">
          <div id="slideshow">
    <img src="/images/slide1.jpg" />
    <img src="/images/slide2.jpg" />
    <img src="/images/slide3.jpg" />
    <img src="/images/slide4.jpg" />
    <img src="/images/slide5.jpg" />
    <img src="/images/slide6.jpg" />
    <img src="/images/slide7.jpg" />
    <img src="/images/slide8.jpg" />
    <img src="/images/slide9.jpg" />
    <img src="/images/slide10.jpg" />
    </div>
      <!-- end #sidebar1 --></div>
      <div id="mainContent">
        <h1> </h1>
      <!-- end #mainContent --></div>
        <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
        <div id="footer">
          <p>Great Diamond Rentals, c/o Phoenix Management, P.O. Box 759, Saco, Maine 04072 - (207) 766-3005 - fax (207) 571-3066 -<a href="mailto: [email protected]"> [email protected]</a></p>
          <!-- end #footer -->
    </div>
        <br class="clearfloat" />
      <!-- end #container -->
    </div>
    </body>
    </html>

    staceyetc wrote:
    Hi folks...
    I am learning CSS in fits and starts, and clearly I don't have a good enough grasp on it. I hope someone can help me.
    I created this page, and tried to place an image in the large "main content" area to the right of the slideshow. It didn't work, kept getting shifted elsewhere. So I specified it as the background image for that div instead... It looks fine in Firefox and Safari (I'm on a Mac), however, a colleague with Internet Explorer 7 on a PC says that it shows up way down at the bottom of the page after the slideshow
    I've looked at all the ways to insert the image but none of them work. I know I must be missing something very simple. Can anyone help?
    Here's the URL... http://greatdiamondrentals.com/index.html
    The width of your #mainConent <div> is too wide hence in IE it is displaced to beneath the side bar.
    Change it to 560px wide and also add float: left; as shown below:
    .twoColFixLtHdr #mainContent {
        height: 579px;
        width: 560px;
        float: left;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-right: 0px;
        padding-bottom: 0;
        padding-left: 0px;
        margin-left: 0px;
        background-image: url(images/GDRmaincontent.jpg);
        background-position: right top;
        background-repeat: no-repeat;
      background-color:#609;

  • Need help with image

    I sure could use a buddy who has Skype or something who I can shoot questions like this to.  My designer wants a retainer of $3,000 but I can do most of my own stuff in Photoshop.  Sometimes I get stumped though, and just need a 30 second tutorial. So I am coming here. 
    I basically need to figure out how to change this image:
    But along with that comes figuring out how to change it from a square image to one with a rounded top and bottom-right corner.   Also a 2 pixel shadow going up the right side and along the bottom.  I can manually draw in those two pixels easily enough.  But the corners look terrible when I try to manually do it.
    Is there an easier way?  I have been cropping the new image to the proper size, and then drawing in the two pixel fade on the side and bottom.  Then trying to pixel by pixel create the rounded edges.
    Its not looking natural. 
    Before you say "Its a drop shadow!" please remember, in order for me to copy that exact drop shadow, I would need to know all their settings, colors, pixel widths, etc.  All I have is a flat, finished image, so I have none of that information.  Plus, I dont know how to do a drop shadow on a curved corner, which deletes the original squared corner on the image.  :-\
    If you give instructions, please be as clear and detailed as possible. This is why I prefer a chat medium for this type of thing. 
    Thanks much to anyone who can assist.
    PB          

    Here is a TUTORIAL on doing rounded corners.  Hope it helps.   Could not get insert link to work so try this.  http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CDYQFjAA&url=http%3A%2 F%2Fmatthom.com%2Farchive%2F2004%2F09%2F10%2Ffast-rounded-corners-in-photoshop&ei=q2l8T_T8 LcKZiQKQnt3uDQ&usg=AFQjCNEsGI12k8Ck-GiuIWMUOLC6m3xoYw
    Don't know what magnification you are using on this image, but the fact you have pixels shows it will be difficult to make a nice rounded edge.
    You might need a higher resolution image, or at least convert from 8 bits to 16 bits to do edits, then change back to 8 RGB to save.  Beware not all toolsand saves will work in 16 bit.

  • Need help placing images

    Hey everybody hows it going? Any help you could give me would
    be greatly appreciated!
    Here is my problem. I am working off a template and have been
    able to do everything I want so far but ive run into a problem.
    Check my site to follow along
    Shine Media House (Click
    Here). Whenever the user clicks on About, Services or Contact a
    random image appears along with the background on the corresponding
    page. I need to be able to link it to a specific image. I found the
    action for the random sequence and it reads as follow,
    (_root.link !== 3) {
    _root.pic_num = (Math.ceil(Math.random()*105));
    Anybody know a way to fix my problem? It probably is really
    simple I just have no clue.
    Any help would be greatly appreciated!!!

    This is a perfect answer. I am now able to specify what
    number image from an array of images. Now, is there a way to
    specify different photos for the three different buttons?
    I am thinking that is what the
    if (_root.link !== 3)
    piece is about.
    Any thing would be great!!!
    Thanks!
    I can post the fla file somewhere if that would help!

  • Urgent - need help, Powerpoint images require quicktime???

    Hi guys, I'm a lecturer and I prepared a powerpoint on my G5 to show to students last week. the text loads on the Dell PC they have in the classroom, but the images come up with a message "requires Quicktime and a decompressor". As far as I know these are just jpg files which I downloaded from google images as jpega. I then opened the jpgs in Preview and copied and pasted them into the Powerpoint slides.
    what's requiring Quicktime here? How can I get around this e.g. by using "insert" for the picture and then clicking the picture to insert? More important how will I know that the umages have loaded as simple jpgs and won't continue to require Quicktime? I have to give a lecture on Monday and I need this Powerpoint to work!!!
    thanks for any help
    andy evans

    Have Powerpoint but seldom use it, maybe this link has some info?
    http://www.indezine.com/articles/crossplatformpowerpoint01.html

  • Need help on image for my business.

    hi. I'm Mike Gambino, admin/founder of my own website called http://gambinoarmy.co.cc/. I've been using macromedia for this stuff but apparently, y'all have better stuff than macromedia and I started using the schools. I have a trial on my computer for 30 days and I have been using it and I need to know how to do something. I see that lots of business owners have images that are linked on their site and it is making me mad that everytime I want to make an image, fireworks will not let me do anything on it.
    there is something I want to do and it is to make an image that shows their signature, if they are online or not, when level their at, how long they have been playing, and so forth. I want to know if someone can help me give me a tutorial on how to make an image with HTML embeded into the image source so I can make it so that it is live and will work like most businesses do.
    since I hardly go on since I'm trying to edit my site still, I would like someone to email me at [email protected] so I can get it right on my computer and I will not have to hunt down this forum post. I'm mostly busy and I'm trying to keep my site running and up to date and it is a busy week for me since I'm trying to do a grand opening of my site since someone hacked my site and edited a lot of things and now I secured it and everything and recovered my lost data.
    please help me.

    gambino90 wrote:
    I wish I had the money too. I can't invest anymore on my site till lots of people come on my site and donate.
    I can't speak to your business model.
    is there even a way to take HTML scripts of PHP scripts, put it in a document and try using a <img src=" " /> code to try making it into an image?
    The wording of that question doesn't even make sense. HTML is not scripting, it isn't programming. It is markup for text display. The image tag is also not programming; it is the markup for HTML that displays an image that has been created and stored.
    For your desired functionality, something could probably be done with PHP and a database, if the person doing the work knew what he or she was doing. In any case, it isn't a Fireworks question. Fireworks creates graphics and it can output some HTML. It is not a programming environment.
    If you want to put the your desired functionality into your site yourself, you first need to learn what HTML is and is not, what it can and can't do. Then, you need to move on to learning a programming language (for example PHP, ColdFusion, Perl, C#/.NET), as well as SQL (the language) and some database expertise. You also will need to learn about securing your database-driven site.
    Good luck!

  • Need help Loading images with selection on a form field?

    So I'm kind of a newb.. I can do basic forms but I need to set up a form field drop down box that will give me the ability to load images correlating to the users choice. I'm at a total loss for where to start, so ANY help would be appreciated. If you know of any good books or tutorials on the subject please share.
    Thanks in advance
    Sincerely,
    Stumped4now 

    P.S. I think I'm getting a better understanding of OCGs after lots of research today. However I still seem to be missing something
    var docOCGs = this.getOCGs();
    for (var x=0; x < docOCGs.length; x++)
      if(docOCGs[x].name == "Layer1")
      docOCGs[x].state = !docOCGs[x].state;

  • Hard drive recently failed and iPhoto brings a -36 error when copying need help accessing image files

    I recently updated my computer to mountain lion and after doing so my computer would no longer boot up.  I took it to the apple store and they told me that the hard drive was damaged and needed to be replaced.  They were booting my computer with an external drive and in doing so could access my computers HDD.  Upon starting to drag and drop files to a new hard drive I started to get a lot of -36 errors.  I proceeded to go go,e and create my own bootable thumb drive and try doing the same process with more time to look through it.  I have up till now been able to copy most of my files but have run into a problem with iPhoto.
    I have been searching around for a while now and have yet to find a method that helps me in my particular situation so I am now asking for help myself. I will explain what my current system of file recovery is and see if anyone can help me out.
    I have since then replaced the HDD in my computer and purchased a SATA external HDD enclosure for the original drive.  This allows me to still access all files and folders from the original drive.  I have managed to recover a majority of the files but have recently run into a problem with the iPhoto library.  Every time I try to drag and drop the iPhoto library to my new HDD it fails after "transferring" 2.02GB and tells me it has encountered a -36 error because some files cannot be read or written.  I believe I am using iPhoto '09, I will check and confirm that later.
    I am looking for a way to open iPhoto's library and access the image files it seems to be hiding from me. Please understand that I cannot open the iPhoto library either, I have lost access to the library entirely and want to see if there are any image files that I can save.  I dont have the computer backed up recently and want to save my photos.  Thanks for looking and I'm hoping someone can help.

    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command). Rebuild it to the Pictures Folder. This might overcome the -36 issue.
    (This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.)
    Failing that you're into recovering your Originals from the damaged Library and creating a new Library and starting over from scratch.
    Regards
    TD

Maybe you are looking for

  • New icon on screen - yellow circle with white lines with a 1 next to it - what is it please?

    Hi. New to hear so please bear with me.. i have had my blackberry for about a month and a new icon has appeared (next to where the message icon normally sits). It shows a '1' next to a yellow circle with white lines through it.. I have a feeling it i

  • Help syncing iphone to new MacBook Pro

    I got a MacBook Pro for Christmas, and I need help syncing my iPhone to it without losing my pictures, contacts, and music. I already wirelessly shared my iTunes library to from my old mac to the new one. Is there a way to sync my phone to the new co

  • Problem with dataPosition and charts

    In the following code: billingsSeries.setStyle("labelPosition", "outside"); is causing this error: Type Coercion failed: cannot convert mx.charts::ColumnChart@6b380a1 to mx.charts.chartClasses.Series. But I am setting the property on the ColumnSeries

  • How to access a node using ID?

    Hi All, I have defined specific id for each node object. How can i access one particular node using the id? Can any one help me on this? Thanks, Thamizharasu S

  • Xalan error in Weblogic console

    Hi, I'm trying to deploy an existing application (developped for Weblogic 8.1) on Weblogic 10.0 MP1. My application is packaged as a WAR file and contains xalan.jar (because I use XSLT). After my application is deployed when I try to access some page