How to save a slice of selected layer or selected object

I am new to Fireworks CS3. I have a layered PSD and want to
create slices (or images to be used separately on a web page via
Dreamweaver) from certain selected layers or certain objects
showing the selected layer and / or object only. I tried and got a
slice that contains all visible layers cropped to the size of the
object I wanted. Can someone point me to a resource that will show
me some tutes or offer an explanation?
For example, suppose I have an apple as a background image on
a bottom layer, with other images on other layers overlapping the
apple in my psd file. How do I create a slice of just the apple?
And, suppose I have an apple, an orange and a banana on the
same layer, but I want to create a slice of each fruit
individually. How is this best done?
Thanks.

WorWicWebmaster wrote:
> I have dealt with this type of problem for years now. I
have been asking for a
> solution and oddly enough, Microsoft has provided the
solution. The latest
> release of Expression Design 2 now has slicing support.
They took it to the
> next level and allow you to indicate which layers, even
which elements on
> layers, you want to be "visible" to the slice. If a
layer or element is not
> marked as visible, it will not be exported with that
slice. It's as if the
> graphic(s) were unseen by the slice.
>
> This is a very elegant solution to an old problem ever
since slices were first
> introduced. I sincerely hope Adobe takes notice of how
competitors are
> innovating similar tools. I personally prefer Fireworks
over Expression Design,
> but I've been using Design lately just for this slicing
feature.
>
Yes let's hope they do
Jim Babbage - .:Community MX:. & .:Adobe Community
Expert:.
http://www.communityMX.com/
CommunityMX - Free Resources:
http://www.communitymx.com/free.cfm
.:Adobe Community Expert for Fireworks:.
Adobe Community Expert
http://tinyurl.com/2a7dyp
.:Author:.
Lynda.com -
http://movielibrary.lynda.com/authors/author/?aid=188
Peachpit Press -
http://www.peachpit.com/authors/bio.aspx?a=d98ed798-5ef0-45a8-a70d-4b35fa14c9a4
Layers Magazine -
http://www.layersmagazine.com/author/jim-babbage

Similar Messages

  • How to save the variant and select it for displaying output

    For       ALV variant use the FM_REUSE_ALV_VARIANT_F4 and REUSE_ALV_VARIANT_DEFAULT_GET to allow the user to save the variant and select it for displaying output.If   any of the data (Z fields in VBAP) is blank,the cell in the column must be highlighted in red.

    Hi,
       Refer thsi code
    DATA : wa_variant  TYPE disvariant,       "Work area for variant
           wa_variant1 TYPE disvariant,       "Work area for variant
    *&      Form  sub_get_default_variant                                  *
    This form will initialize the variant                               *
    FORM sub_get_default_variant .
    *--Clear
      CLEAR wa_variant.
    *--Pass the report name
      v_repid = sy-repid.                     "Report ID
      wa_variant-report = v_repid.
    *--Call the function module to get the default variant
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save        = c_save
        CHANGING
          cs_variant    = wa_variant1
        EXCEPTIONS
          wrong_input   = 1
          not_found     = 2
          program_error = 3
          OTHERS        = 4.
    *--Check Subrc
      IF sy-subrc = 0.
        p_varnt = wa_variant-variant.
      ENDIF.
    ENDFORM.                                  "sub_get_default_variant
    Regards,
    Prashant

  • How to "Save for web" just the layer effect but not the content area?

    I fill the area with white, then add outter glow to the layer. Now I want to "Save for web" the outter glow effect but not the white area. I want the white area to be transparent. If I delete the white area, the layer effect goes away, if I merge the layer with another to flatten (think then I can delete the white middle while keeping the layer effect stay),  the layer effect look totally different after flatten.

    Set the fill to 0% in the layers panel (not the opacity). Then save for web as a PNG24, with transparency checked.

  • How to move and resize a whole layer with different objects and groups

    Ok, I am a bit confused here.Things are not working like I thought they would and the documentation has confused me more.
    currently in my code I have
    var embedLeftSleeve = new File(folderPath+"/LeftSleeve.ai");
    var leftSleevePlaced = doc.groupItems.createFromFile(embedLeftSleeve);
                            leftSleevePlaced.top = currentHeight;
                            leftSleevePlaced.left = 0;
    I am importing an AI file and trying to put it into its own layer. I want it (the imported ai file) into into it's own layer. And I would like the layer to be setup the exact way it was in the original. But, after the import it seems to group non-grouped items, some of the objects are not showing the same way they did (like a shape with a gradient fill in it).
    And finally, I want to scale all of the items in that layer as if I selected the layerer in illustrator and scaled it by hand (but scripting it to a set scale).
    Can someone please help me. I am digging deep into the documentations and looking all over online to find what I want with little luck.
    John

    Any chance of a sample of your art? I had a quick and my test art does NOT break up or look any different.
    I've been trying to build myself a set of library functions so my methods may appear a little odd.
    This was fine for me…
    #target illustrator
    var sleveArt = new File ('~/Desktop/Untitled-2.ai');
    var artName = sleveArt.name;
    var docRef = app.activeDocument;
    with (docRef) {
    pageOrigin = [0,0];
    rulerOrigin = [0,0];
    var docHeight = height;
    myLayer = layers.add();
    myLayer.name = artName;
    myGroup = myLayer.groupItems.createFromFile(sleveArt);
    myGroup.top = docHeight;
    myGroup.left = 0;
    resizeObject(myGroup, 140, 140, 100, 'BL');
    selection = null;
    function resizeObject(obj, sX, sY, clw, tr) {
    if (verifyObject(obj)) {
    var transAbt = getAnchor(tr);
    obj.resize(sX, sY, true, true, true, true, clw, transAbt);
    return true;
    function verifyObject(obj) {
    if (obj.typename == 'CompoundPathItem'||'GraphItem' || 'GroupItem' || 'PathItem' || 'PlacedItem' || 'PluginItem' || 'RasterItem' || 'SymbolItem' || 'TextFrame') return true;
    else return false;
    function getAnchor(x) {
    var thisTrans;
    switch(x) {
    case 'B' : thisTrans = Transformation.BOTTOM; break;
    case 'BL' : thisTrans = Transformation.BOTTOMLEFT; break;
    case 'BR' : thisTrans = Transformation.BOTTOMRIGHT; break;
    case 'C' : thisTrans = Transformation.CENTER; break;
    case 'DO' : thisTrans = Transformation.DOCUMENTORIGIN; break;
    case 'L' : thisTrans = Transformation.LEFT; break;
    case 'R' : thisTrans = Transformation.RIGHT; break;
    case 'T' : thisTrans = Transformation.TOP; break;
    case 'TL' : thisTrans = Transformation.TOPLEFT; break;
    case 'TR' : thisTrans = Transformation.TOPRIGHT; break;
    return thisTrans;

  • How to save and retrieve an excel file as an object into lob column?

    Hi ,
    I need to save and retrieve the whole excel file with 3 or more sheets as an object into the lob column of table.
    For example:
    t_docments
    (doc_id number,
    excel_data clob
    All excel files need to be saved to excel_data column.
    What should I do?
    Thanks

    Did you check the asktom thread posted by Jens?
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P1
    1_QUESTION_ID:232814159006
    There's example of varies file types.Yes, I did try some examples.
    Those work for .doc/.pdf/.jpg files, BUT NOT for excel file.
    The following error happened when retrieving excel file(retrieving .doc/.pdf are OK)
    ORA-29285: file write error
    ORA-06512: at "SYS.UTL_FILE", line 18
    ORA-06512: at "SYS.UTL_FILE", line 375
    ORA-06512: at "SYS.UTL_FILE", line 990

  • How to save slices selected by the slice-select-tool ?

    How to save slices selected by the slice-select-tool ? In the past, I select several slices in edit window and saved for web(ctrl+alt+shift+s) But now, selected slices are unselected in the Save-for-web dialog except first slice.
    I'm sorry my short english.

    How to save slices selected by the slice-select-tool ? In the past, I select several slices in edit window and saved for web(ctrl+alt+shift+s) But now, selected slices are unselected in the Save-for-web dialog except first slice.
    I'm sorry my short english.

  • How to save a variant with dynamic selections parameters

    Anybody knows how to save a variant for an ABAP that uses a Logical database with Dynamic Selections?
    Have a look for example to the following:
    SE38 - DEMO_PROGRAM_GET - Execute - Shift F4 - Connection Number.
    How to save 0820 as Connection Number?
    Function Group SVAR seems good but FREE SELECTIONs are not easy to manage...

    Hello,
      I tried to save the variant of DEMO_PROGRAM_GET with dynamic selection field (Connection Number) filled. It gets saved without any problem. Just click 'SAVE' and enter the variant name and description.
    Thanks,
    Venu

  • How to save layer image

    Hi, I'm a newbe
    I need to save the image of a layer, but my asset is a psd file, how do I get the image from it?
    Thx

    hi nnzz! welcome to the forum!
    a layer's image pixels are gotten in the same way regardless of the source.
    if your effect is applied to it, you'll have the pixels handed to you from AE automatically.
    in any case you can get the layer's source item and render it through the render suite.
    once you have the pixel datayou can process it and save it in any way you like.

  • How to save passwords. Setting already selected but still does not save.

    How to save passwords. Setting already selected but still does not save. Web site does allow password saving.

    Could you try a fake username and password on another site, and see if you can save there? You can use this website's login form at [https://support.mozilla.com/tiki-login.php] to test.
    Let me know the result of doing this, and whether any password-related errors appear in Tools->Error Console

  • How to save the  selected rows from Advance table into database

    Hi
    I have requirement like..
    In custom page , Manager Search the Candidates and selects the candidate ROWS from advance table.
    The reqt is how to save the selected multiple rows into the database.

    hi Reetesh,
    In Custom page
    Supoose the Recruiter Search is for Position Finance Mangager , it retrieves 100 rows , out of which Recruiter select 10 rows .
    So in Such scenario how to save this 10 rows against Recruiter
    , i mean , Is i need to create custom table, to save Recruiter , these selected 10 rows.
    I hope u understand my question

  • How to SAVE a selected Characteristic Restriction

    I'm using BW 7.0.
    How to save a selected Characteristic Restriction so the next time the user access the report he or she can re-use the saved selection?
    For a specific SRM report the user can restrict report result selecting buyers, which can be too many (~200). It’s very important that the user does not have to select each one every time he or she access this report.
    Any tips?
    Thanks in advance.
    Raphael Barboza

    See the description of the new filter option here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/7e1042197de42ce10000000a1550b0/content.htm
    Under new features:
    New Functional Features
    ●     The filter of a query can be saved as a reusable object.
    Details on this Filter object are here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/fcf20384631a71e10000000a422035/content.htm
    Make sure you set auth to allow usage of this on auth object S_RS_COMP.

  • How to save the selected row number to NSUserDefaults

    I am trying to save the indexpath.row of the selected row to NSUserDefaults temporarily until my detail view controller can load its UITextFields based on which row is tapped. First of all is this good? I chose this design because the detail view controller cannot access the master view controller so I can't find out which row its tapped. To save to NSUSerDefaults, I did the following code, and the NSLog is always returning row 0 no matter what row I tap. Plus the title is not being set: its still blank.
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        [patientList deselectRowAtIndexPath:indexPath animated:YES];
        [[NSUserDefaults standardUserDefaults] setInteger:indexPath.row forKey:@"rowSelected"];
        NSLog(@"The selected row saved is row %d"), [[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"];
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
            PatientDetailViewController *detailViewController = [[PatientDetailViewController alloc] initWithNibName:@"PatientDetailViewController" bundle:nil];
            detailViewController.title = [patientDisplayName objectAtIndex:[[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"]];
            // Pass the selected object to the new view controller.
            [self.navigationController pushViewController:detailViewController animated:YES];
            [detailViewController release];

    I have also tried setting the title differently (I also added comments to explain each line what it does, the rest is the same), but neither methods work
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Deselect the row
        [patientList deselectRowAtIndexPath:indexPath animated:YES];
        // Save to memory the row selected
        [[NSUserDefaults standardUserDefaults] setInteger:indexPath.row forKey:@"rowSelected"];
        // Show saved row to make sure it saved correctly
        NSLog(@"The selected row saved is row %d"), [[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"];
        // Check if user is using iPhone
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
            // Load the view
            PatientDetailViewController *detailViewController = [[PatientDetailViewController alloc] initWithNibName:@"PatientDetailViewController" bundle:nil];
            // Set the title of the detail view controller based on row selected
            detailViewController.title = [patientDisplayName objectAtIndex:indexPath.row];
            // Push the detail view controller
            [self.navigationController pushViewController:detailViewController animated:YES];
            // Release the detail view controller
            [detailViewController release];

  • How to save the selected records from Table control in dialog programming

    Hiiiiiiii Every1
    Actually the problem is like this:-
    I have to select some records from table control and then want to save the selected records in DB table.
    Example
    I have some rows having inforamtion bout employees...
    Now what i want is that when i click on 'SAVE' button then these selected rows should be moved into DB table.
    Sachin Dhingra

    see below example, I have added INSERT option after DELETE option.
    REPORT demo_dynpro_tabcont_loop_at.
    CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
    DATA cols LIKE LINE OF flights-cols.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: itab TYPE TABLE OF demo_conn.
    TABLES demo_conn.
    SELECT * FROM spfli INTO TABLE itab.
    LOOP AT flights-cols INTO cols WHERE index GT 2.
      cols-screen-input = '0'.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE read_table_control INPUT.
      MODIFY itab FROM demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'TOGGLE'.
          LOOP AT flights-cols INTO cols WHERE index GT 2.
            IF  cols-screen-input = '0'.
              cols-screen-input = '1'.
            ELSEIF  cols-screen-input = '1'.
              cols-screen-input = '0'.
            ENDIF.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDLOOP.
        WHEN 'SORT_UP'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) ASCENDING.
            cols-selected = ' '.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'SORT_DOWN'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) DESCENDING.
            cols-selected = ' '.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'DELETE'.
          READ TABLE flights-cols INTO cols WITH KEY screen-input = '1'.
          IF sy-subrc = 0.
            LOOP AT itab INTO demo_conn WHERE mark = 'X'.
              DELETE itab.
            ENDLOOP.
          ENDIF.
        WHEN 'INSERT'.
          READ TABLE flights-cols INTO cols WITH KEY screen-input = '1'.
          IF sy-subrc = 0.
            LOOP AT itab INTO demo_conn WHERE mark = 'X'.
              itab1 = itab.
              modify itab1.
            ENDLOOP.
          ENDIF.
          if not itab1 is initial.
            INSERT dbtab FROM TABLE itab1.
          endif.
      ENDCASE.
    ENDMODULE.

  • 'Save for Web & Devices' selects multiple artboards - AI CS4

    I have a simple, two-artboard document (like the old FreeHand days!) but, when I go to 'Save for Web & Devices' to optimise it, the graphic from both pages appear as one optimised image. How can I get it to select only the artboard I am viewing?
    Many thanks.

    Well, one way would be to create an artboard that's the size of your art. You can do this easily enough by choosing the Artboard Tool and clicking once on your artwork. Alternatively, you can define slices.
    :) Mordy

  • Saving Dialog Box - how to save to a folder 3 layers deep

    Finally through the leopard install!! 3 times a charm
    I know this is a really basic question... but how do you save directly to a folder a few layers deep in my folder set up. I click on file save as.... then click on the "where" drop down box but I am unable to click through to the folder I want. It seems basic (was able to do this easily through a PC years ago) have never found out so I thought I would post here.
    Appreciate any solutions.
    Thanks

    Click the large blue button with the downward pointing triangle on it next to the filename box in the "Save" dialog & it will expand into a fully navigable Finder-like view of the file system, complete with a toolbar containing the Spotlight search box (very useful for finding folders by name); a selector for list, icon, or column view; forward & back buttons; & even the sidebar.
    In this expanded view, you should be able to navigate to any conceivable folder location as easily as with the Finder.
    BTW, if you happen to have a Finder Window open & accessible, you can also drag & drop a folder from it into the "Save" dialog & it will select it as the location.

Maybe you are looking for

  • Giving up default gateway in Solaris 10

    Good Morning !!! Hi .. could you tell me, how can i add default gateway in solaris 10? i mean , i wanted give up as follows: rute add default 100.110.120.130 but it does not work !! Thanks.

  • Nikon D810 and DNG files still not working

    I have the D810... I just downloaded the DNG converter and still not showing in LR. Help!!!!!

  • What to write query to get know if a checkbox is checked

    hello, I have created a checkbox with name Entertainment containing static values Movie,Play,music. Now i have to write query to check which value of checkbox is checked ,means play or movie or music. According to that i have to mail a particular lin

  • Payment Options for iPhoto 08 Orders

    Hi there - Just wondering if there is any way to use a Maestro to purchase calendars from iPhoto 08? I'm a bit puzzled that I paid for my MacBook with a Maestro, and it's accepted on iTunes, but iPhoto won't accept it. All this after I spent ages des

  • Sapccm4x agent terminates

    Hi ,   I am facing a strange problem.The sapccm4x agent for our quality box terminates after 5 minutes after starting with following error. INFO: entering  sReInitSapccmsrLight ERROR: Reinitialization called more than 10 times in the last 5 minutes E