Newbie extract help needed

Hi all,
I have a full Photoshop webpage layout file with several layers – and I need to extract parts of it to use on the website.
I do know a little bit about slices – but I would prefer to not use that now. Rather I was thinking of saving a tiff file master with no layers – and simply copying pieces of this off as needed.
I do have one background layer that is wider than the rest – and I would prefer to delete that entire background layer and then save the tiff without that.
Q: Can you tell me how best to accomplish this?

Revdave,
You could follow the video below easily to extract background from Photoshop.
Remove Background from Photo - Photoshop CS6 - YouTube
Let me know if you need more help on this!
Cheers
-Mandhir

Similar Messages

  • Newbie Layout Help Needed

    I am normally an After Effects and Premiere Pro user but have been forced to volunteer for help on a Dreamweaver project. 
    The site is built on the template: HTML, 1 column fixed, centered, header and footer.  I want to be able to insert a photo the width of the main column, 960 px I think.  Then, under that photo, I want to insert 4 photos with different widths, between 150 and 200 pixels wide.  I will need to update this from time to time and the quantity and sizes of the photos will be different each time.  If "Draw AP Div" worked like I expected it to, it would be simple: draw boxes and insert images.  However, as you know, it's not going to be that easy.  I have read the formatting101 page and searched the forum but I guess I don't know enough to know what to search for.
    Is there a way to place images in the way I want to?  Do I need a plug-in?   I need to where to start. 

    You don't need APDivs for this.  If you want the secondary images to be evenly spaced on the page, use CSS floats & margins.
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    If you don't need them evenly spaced, simply insert optimized images into your layout.  Be sure to resize images beforehand in your graphics editor so that their combined widths will fit inside the layout.
    <p style="text-align"center">
    <img src="top-image.jpg" width="xx" height="xx" alt="description">
    </p>
    <p style="text-align:center">
    <img src="image1.jpg" width="xx" height="xx" alt="description">  
    <img src="image2.jpg" width="xx" height="xx" alt="description">  
    <img src="image3.jpg" width="xx" height="xx" alt="description">  
    <img src="image4.jpg" width="xx" height="xx" alt="description">
    </p>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • LO Extraction Help Needed

    Hi All
    Iam triyng to do, LO Extraction on SD Sales Document Header Line ( 2LIS_11_VAH ) and customizing the Extract Structure  by adding more fields like MCVBAK AEDAT,NETWR and KOSTLC.I get erorr when I transfer the  above fields to Extract Structure as
    "Struct App 11cannot be changed duetosetuptable--> Long Text" which means that extract structure is not getting updated .
    Please advice in order to reflect the change ini extract structure under Maintenance.

    Hi
    Another way to enhence data source by appending the required fields directly to the communication structure(i.e. MCVABK, MCVBUK etc...) and then write user exits to populate these fields, then go to the LO cockpit and move appended fields from communication structure to extract structure.
    This is the standard procedure to enhence the data source which is recommended by SAP.
    Previous one which you have used is mainly used when we need not to catch the deltas for the enhanced field but if there is requirement to catch the deltas for appended fields the only way to append the fields in communication structure.

  • Newbie questions, help needed, please

    I am pretty new to Oracle Application Express. I have two problems when I try to create Page with type of "Report and Form". I hope you guys could help me out:
    (1) When I create Pages with the type of "Report and Form", the first column, primary key does not show up in the report page. Why?
    (2) When the table has two primary keys, I have problem when I click the button to go to form page from report page to update the record. It always show error said "Fetch returns more than one rows". How can I tell the application that I have two primary keys?
    Thanks,
    Lee

    Put in "HTML Expression [Insert column value]" part of field which will be a link:
    a href = f?p=&APP_ID.:&APP_PAGE_ID.:&APP_SESSION.::NO::PX_PK1,PX_PK2:'+'#PK1#'+','+'#PK2#')">Edit< /aput in previous sentence "<" in front and ">" on the end and remove blank before "/a" - otherwise you'll not see the content but real link!!!!!
    where :
    <li>"&APP_ID." is the page in which you want to open and start edit</li>
    <li>"PX_PK1,PX_PK2" are items on that page (probably hidden) tha will represent primary key</li>
    <li>"#PK1#" and "#PK2#" are primary key values on current page (from table grid represent with query "SELECT PK1,PK2,...from MyTable"</li>
    P.S.
    I read somewhere that life with Appex should be much easy when people should use PK base on one coulmn (sequence).
    To ensure PK on those fields create UNIQUE index on those two fields and in table define NOT NULL on those two columns.
    When you get expireienced you'll know the benefit of this advise

  • Newbie here help needed!

    Hi Guys,
    Ive hunted high and low to solve this problem but couldn't
    find anything.
    Heres my problem...
    Do you see the broswer bar where you type in the website you
    want to visit, to the left of that is a small image (like the adobe
    one thats there now) Can you do that via dreamweaver 8? if so how
    people.
    Thanks in advance!

    it's called a favicon, an image with the filename of
    favicon.ico
    You can create a square image in your image editor and use
    this free tool to create your favicon:
    Free Favicon Tool
    Place it in the root of your web directory and place the
    following line of code between your <head></head> tags:
    <link rel="shortcut icon" href="/favicon.ico" >
    Hope that helps!

  • Newbie EL help needed

    I've done quite a bit of JSP work and am now trying to grok JSP 2.0 with Tomcat 5.0.28.
    Why does example A work yet B doesn't?
    A) ${33}
    B)
    <% int x = 33; %>
    ${x}

    In EL, there are only four scopes, represented by four scope objects:
    page scope -- the pageContext object
    request scope -- the request object
    session scope -- the session object
    application -- the servletContext object
    EL will find a value stored in any one of these four scopes. However, when you are using scriptlets,
    <% x = 33 %>
    You are inserting that java code directly into the JSP's service method (remember, JSPs are translated into Servlets, and then compiled into .class files before they are displayed...). The value is local to the service method and not stored in any of the four scope objects.
    In order to access a value from a scriptlet, you could do:
    <%
      Integer x = 33; //I don't think you can use int here, I think it needs to be an Object
      pageContext.setAttribute("x", x); //put the value of the variable x into the pageContext with a name of x
    %>
      ${x} //Will give the first value named x when searching page, request, session, application scopes

  • Newbie VPN Help Needed

    Hi,
    This is my first post.  I just purchased a RV110W to get basic vpn access to my small office for me an employees when not onsite.  We have a Comcast business gateway and a static IP.
    So far I have configured the Comcast gateway and Cisco RV110W correctly to alllow internet to work in the office and VPN connections to be established with the RV110W while offsite.  The Comcast gateway is in a "bridge mode" just providing internet to the Cisco box.
    My trouble is nobody can see, ping, or connect to anything on the office LAN while a VPN connection is active offsite.  This is the case with PPTP and QuickVPN.  Again, the VPN connection works, says it is connected but I can't browse anything on the office LAN while offsite and on VPN.
    I am sure there is something obvious I am doing wrong, which is why I am turning here.
    Any help or advise would be greatly appreciated.
    Geoff

    got the same issue with 2 RV110W.
    We can stablish connection via QuickVPN and w8VPN client, acces to remote administration panel, but cant see anything nor ping to the rest of machines in the LAN.
    Any idea?

  • Newbie configuration help needed

    I bought a T-Mobile 8320 about a week ago and am repalcing my windows mobile phone.  I have my calendar, contacts, tasks and primary email all in MS Outlook on my laptop and want to wirelessly sync with my blackberry and my home PC.  I know about the hard wired solution but would like to stay away from that as I'm not at my PCs every day.  I do not have an exchange server.  I signed up for the $20 per month Blackberry program. 
    Can anyone tell me what the best desktop solution is for this?  Do you ue wireless manager or desktop manager, etc.
    Thanks
    Mike

    Without Exchange and BlackBerry Server you can only sync contacts, tasks and calendar via wired connection with Outlook.
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • Hi! I am newbie to Reports need help with check boxes

    Hi! I am newbie to Reports need help with check boxes. I am try-in to make a new check boxes that will validate in runtime. I have created two frames and one frame is dummy and other frame has big X line on it with conditions. Is this a right way to create check box! Please help thanks!

    and one frame is dummy and other frame has big X
    line on it with conditions. Is this a right way to
    create check box! Please help thanks!Instead of creating a frame for X, you can create Ractangle and place X in it. Rest is fine.

  • Help needed on installation of Oracle 9i on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed on installation of Oracle 9i EE on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • EDI IDOC generation for interface with Vendor software help needed.

    EDI IDOC help needed.
    We are NOT an EDI shop, but have a project to output data to Sales Force.com
    Sales Force requests IDOC output - eg. 810 Outbound Invoice.
    We will need to do a historical load of Orders/Quotes/Invoices from the past 2 years.
    Is there a function module or series of FM's that are used to generate the E2EDKxxxxx type segments?
    I have been testing using the IDOC_OUTPUT_INVOIC and IDOC_OUTPUT_ORDRSP FM's, but they generate segments begining with E1EDKxxxxx.
    Basicall we have a report program that the user enteres in the date range of Order/Quotes/Invoices they wish to extract, the the program needs to output a flat file (.txt) on the server which is then picked up by Sales Force.com.
    Also, is there a way to have in the Partner Profile a generic Partner under the "Type KU" that can be used for all orders/invoices so I don't have to create a KU Partner Type for each and every Sold-To customer we have?
    I am very new to EDI so any help would be greatly appreciated.
    Thanks.
    Scott.

    Hi Scott,
    We will need to do a historical load of Orders/Quotes/Invoices from the past 2 years.
    I know it's very tempting to use an interface for such loads if you anyhow have to create one. However, often the volume alone speaks against interface usage for such scenarios.
    Is there a function module or series of FM's that are used to generate the E2EDKxxxxx type segments? I have been testing using the IDOC_OUTPUT_INVOIC and IDOC_OUTPUT_ORDRSP FM's, but they generate segments begining with E1EDKxxxxx.
    Well, the E2* segments basically reflect the external name of the IDoc segment, whereas the function modules you're referring to basically just create an internal version of the IDoc. Once the IDoc framework then passes the IDocs to the partner, the segment names usually (depends on how the IDocs are passed on) get converted to their external name. If there are multiple versions of a segment, then the version number will be appended to the segment name.
    Note that IDoc segment definitions are only partially stored in the data dictionary. If you want to see all versions you should always use transaction WE31 to look at segments. There you can also see for example for E1EDK01 the several versions and when you then use in SE37 function module SEGMENT_EXTERNAL_NAME_GET you will see what SAP produces as the external name for segment E1EDK01. This function module is basically the one that handles the segment name translations.
    Ignore the comments for subsystem, this is basically an option in SAP to possibly trigger further external tools (e.g. mapping etc.) for handling the outbound IDocs.
    Again, the funny thing is that via the WE30 transaction, if i put in INVOIC02 as the Obj. name and see the segments, i can see that E2EDK01 there is a version 005, but if i go to SE11 and put in E2EDK01005 structure line and i get a "not found". We just have up to E2EDK01002.
    In the old days SAP used to generate E1, E2 and E3* structures in the data dictionary (SE11). The E1* structure reflected the character type representation of an IDoc segment, whereas the other two (definition and documentation) contained actual references to data elements (e.g. if you used a quantity field). However, in newer releases those dictionary structures (E2* & E3*) are no longer generated, because they're superfluous (meta data defined via WE31 is sufficient).
    Cheers, harald

  • Help needed in writing a function.

    I am using Oracle 11g and SQL plus. I am a complete newbie, so I need some help here in writing a function. I guess my question is more about writing the trigonometric functions within the function.
    latA, longA latB, longB // these are the four input parameters,
    theta = longA - longB
    distX = sin( latA * PI / 180) * sin ( latB * PI /180) + cos ( latA * PI/180) * cos ( latB * PI/180) * cos ( theta * PI / 180)
    distY = acos(distX) // this is arc cosine
    distZ = distY * 180 / PI // PI refers to the mathematical PI
    distP = distZ * 60 * 1.1515; // this value should be returned. Of course the intermediate variable names don't matter.
    Please help. Thanks.

    CREATE OR REPLACE FUNCTION fucntion_name(latA IN NUMBER, longA IN NUMBER, latB IN NUMBER, longB IN NUMBER) RETURN NUMBER
    IS
    pi      CONSTANT NUMBER:=3.14159;
    theta NUMBER;
    distX  NUMBER;
    distY  NUMBER;
    distZ  NUMBER;
    distP  NUMBER;
    BEGIN
    theta :=longA - longB;
    distX :=sin( latA * PI /180) * sin ( latB * PI /180) + cos ( latA * PI/180) * cos ( latB * PI/180) * cos ( theta * PI / 180);
    distY :=acos(distX); --this is arc cosine
    distZ :=distY * 180/PI;  --PI refers to the mathematical PI
    distP :=distZ * 60 * 1.1515; --this value should be returned. Of course the intermediate variable names don't matter.
    RETURN distP;
    END;Edited by: Ora on May 3, 2011 11:46 PM

  • Greetings from a Photoshop Newbie. I need a computer, preferably a Mac laptop, with some serious processing power. I take photos with a Pentax 645Z; files are 50MB raw. I upload from Adobe Bridge and manipulate the photo, sometimes turning them into files

    Greetings from a Photoshop Newbie. I need a computer, preferably a Mac laptop, with some serious processing power. I take photos with a Pentax 645Z; files are 50MB raw. I upload from Adobe Bridge and manipulate the photo, sometimes turning them into files in excess of 250MB. I cannot resize as the large files are needed for enlargements. Have all sorts of problems trying to manipulate, add effects and saving most large files. I need some serious processing power. Can anyone suggest what Mac i should purchase? I thank you in advance for your help :-)

    It sounds as if you're having some system-related problems now, unrelated to processing power as such. In particular, a buggy video driver can cause everything to slow to a crawl.
    Medium format files are big, true, but not so big as to cause significant slowdowns on a normally functioning and reasonably current computer. A laptop will always be slower than a well-equipped desktop system, though. Mac vs PC plays no part in this, performance is unrelated to platform.
    Bottlenecks are different in ACR and Photoshop, so that should give you a clue. ACR is computing-intensive and mostly limited by CPU speed. Photoshop, however, is mostly bandwidth-intensive and mainly limited by memory and disk throughput. It's also sensitive to GPU issues.

  • Data uload to ODS ending up with an error. URGENT HELP NEEDED!!!!!!

    Hi
    My Sceniro is Full load from ODS1 to 5 other ODS. Iam uploading the data to other 5 ODS by selecting 1 ODS at a time.
    Problem i am facing is upload is ending up with error mesg. Error Mesg are
    <b>Error 8 when starting the extraction program - R3019
    Error in Source System - RSM340
    Req xxx in ODS2 must have QM ststus green before it is activated - RSM1110</b>
    I have seen the the OSS notes for given error no, but they are not applicable to me. what could be the other possible solution.
    In detail tab of the monitor i see red light at Extraction step and Subseq. processing.
    Its quite urgent bcoz this error is occuring in Production system.
    Plzzzz urgent help needed.
    Thanks
    Rohini
    Message was edited by: Rohini Garg

    rohini,
    go to RSA1->Modeling->Source Systems and right-click on your BW system, and click on 'Replicate Datasources'.
    also, go to the ODS that's causing the problem (via RSA1->InfoProvider and go to your ODS), right click and click on 'Generate Export Datasource'.
    one more thing, make sure that all your record/s in the source ODS is active. if you're not sure manage its contents and click on 'Activate'. if there are any entries in the the next screen that comes up, you need to activate it first, then try everything again.
    let me know what happens. also try to look for error messages in ST22 and SM21 that may be related to this and post whatever possible error you see there here.
    ryan.

Maybe you are looking for

  • My brand-new iPod touch (5th Gen) battery takes a very long time to fully charge, even while not in use. Why is this and what should I do?

    Just recently bought a brand-new iPod touch, 5th generation. To be exact, got it two days ago, this past Saturday, on 12/13/2014. Initially, when I first turned it on, it had a fully charge and I didn't need to charge it. I also didn't see anything i

  • Downloaded files do not open

    I can't install software after downloads because a icon with the form of a white sheet of paper with the corner folded appears. Here are examples of downloaded files that do not open: Flip4Mac WMV.mpkg DivX for Mac Installer.pkg MacOSUpdCombo10.4.5PP

  • LrFtp.makeFtpPresetPopup - what should itemsBinding be set to?

    LrFtp.makeFtpPresetPopup( params ) Creates and returns a pop-up menu view object for accessing FTP presets. First supported in version 1.3 of the Lightroom SDK. Parameters 1. params (table) a table with these fields factory: (LrViewFactory) The view

  • Final Cut Express 2.0 / Final Cut Express 3.0

    Hi there. I got Final Cut Express 2.0. It don't runs on my MacBook 2.16GHz. AGP card is needed. Anyone know, if and how to run it without AGP card? Second question: apple support told me, that FCE 3.0 HD runs on MacBook 2.16GHz. I've seen it on apple

  • How seed data being called in OAF/EBS?

    Hi experts, I'm new to OAF technologies, and I'm wondering if someone could point me to some documents/links that explain how these blocks work/ being called in EBS, e.g., BEGIN FUNCTION BEGIN EXECUTABLE BEGIN PROGRAM BEGIN MENU BEGIN PROFILE Thanks!