How to make Group clip it's content ?

Currently I've done this by using the clipAndEnableScrolling="true" property and my case scenario is simple:
<s:Group width="100%" height="100%" clipAndEnableScrolling="true">
     <s:Group id="bgOver" width="100%" height="100%">
        <s:Group y="-4" height="{bgOver.height+4}">
          <s:Rect width="100%" height="100%">
             <s:fill>
                 <s:SolidColor color="0x000000" />
             </s:fill>
         </s:Rect>
        </s:Group>
        <s:filters>
            <s:GlowFilter blurX="4" blurY="4" color="0xbcc2ca" alpha="0.70" inner="true" knockout="true" />
        </s:filters>
    </s:Group>
</s:Group>
When you have an inner Glow but you want to have it on left right and bottom but not top for example case like tab bar above, what I do is increase the height of the background by the blurX/Y value and move it y = - blurX/Y value. So it gets outside of the container and gets cut off.
It's not cut off till I set clipAndEnableScrolling="true", although I don't want to scroll anything, I just want to clip. I could also mask for example...
That's why I am asking what's the right way to clip? Anyone?

thanks!

Similar Messages

  • How to make a clipping mask in this particular case?

    Okay, Just to begin I know how to make a clipping mask, but for the case that I'm going to present right now I just can't figure out what mistake I am doing (if any). However I am a beginner.
    http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-medieval-paper-scroll/
    In the link to above tutorial on how to make a medieval scrol I'm stuck at step 25 and would be glad to anyone who helped.
    As said in step 25 that expand the appearance of the scroll and select the two then clip the mask. In th above picture I have just selected the scroll to show how it looks.
    Now as you can see in the image below I have expanded the appearance of the paper scroll. Then I selected the paper scrol and the yellowish green grunge background placed below it. And the moment I hit Ctrl+7 (in windows) or Command+7 (in Mac) to make a clipping mask the error that showed up has been highlighted.
    One more thing, I have clipped masks before too in the same tutorial given above but I don't know what has gone wrong for me in this step.
    Please help.
    Signed,
    Awais Rauf

    Why would you want a clipping mask? I don’t see a reason for it.
    However, for what you want I would use the Pathfinder panel to combine all the paths into one shape. First use the ungroup and release compound commands a few times each, to make sure you have nothing grouped. Then press the top left button in the Pathfinder p[panel. This should produce one closed path that just surrounds the scroll.

  • How to make a clipping of an email address

    Hello...
    My situation is that I'm in the middle of a job search, and I'm registering all over the place, and everyone wants my email address -- in fact some use it for my "user name" -- and so (for security etc.) I set up a couple of new mailboxes (which I can then simply dump once I land a gig). And I'm getting tired of typing in the whole address all the time, so I thought I'd make a couple of text clippings of my addresses and just drag the appropriate one into the "user name" box as needed. (Yes, I know I can do this in Text Substitution sysprefs, but I'm a mouse-oriented kind of guy, I use key commands relatively rarely; think of this question as an academic exercise.)
    The first thing I tried was what I do whenever I want to make a clipping: I highlighted my address in a document and dragged it to my desktop. When I try that, however, instead of a clipping, I get a .mailtoloc document. If I then change the extension to .textclipping, I get an useable clip, but the contents of the clip include "mailto:" appended to my address ( e+.+g., "mailto:[email protected]"). And that's where I'm stuck. I can't find how to edit out the "mailto:" yet keep it a clip. If I open it with TextEdit I see a bunch of html code; if I edit that down, and save it as a .textclipping, the resulting clip itself is empty ("Clipping contents: unknown"); if I open it with TextWrangler it opens a Mail message (which is annoying).
    So that's what I want to do, I want to make a standard text clipping, the contents of which are a standard email address -- without "mailto:". It would seem the simplest way would be to edit that string, if I could find it. I am competent and confident using Terminal and other system-level tools, and have Developer Tools installed. (If this were still pre-X, at this point I'd whip out my copy of ResEdit and start looking for a 'STR ' resource. Alas, I did not keep up.)
    TIA,
    Jeff

    Good suggestion. It gets rid of the "mailto:", but I have to remove the space after dragging the clip into the user name box. Interestingly, I can open the clip with TextWrangler, remove the space, and save it as a clip. However, the clip, as a clip, still has the space! When I open it again in TextWrangler, the space is gone, but still appears when I drag the clip or open it in the Finder. So not quite a cigar. But definitely useful.
    So the question remains, where is a clip's data stored? Is it editable? If so, how? If not, why not?

  • How to make a clip art (diagram )interactive report?

    Hello ABAPers,
                           I want help from you. I have a requirement like ..when i am excuteing a report i should get a clip art and the clipart which i got i have to double click on it there by i should get the details of that clip art. I have succeed till getting the clip art and from here i am not getting the idea how to make the clipart(diagram) active so tht when i am doubleing it i should get the details.
    The code that i am using to get the clip art just copy and execute you will get the output till clipart.
    *& Report  ZCLIPART_IR                                                 *
    REPORT  ZCLIPART_IR.
    START OF DO NOT CHANGE***********************************
    DATA: docking TYPE REF TO cl_gui_docking_container,
          picture_control_1 TYPE REF TO cl_gui_picture,
          url(256) TYPE c .
    DATA: query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
          html_table LIKE w3html OCCURS 1,
          return_code LIKE  w3param-ret_code,
          content_type LIKE  w3param-cont_type,
          content_length LIKE  w3param-cont_len,
          pic_data LIKE w3mime OCCURS 0,
          pic_size TYPE i.
    END OF DO NOT CHANGE***********************
    DATA : sum(4) , num1(4) , num2(4).
    PARAMETERS: p_dummy(4) DEFAULT '4' .
    PARAMETERS: p_dummy1(4) DEFAULT '5' .
    AT SELECTION-SCREEN OUTPUT.
      PERFORM show_pic.
      START-OF-SELECTION.
    *& Form show_pic
    FORM show_pic.
       DATA: repid LIKE sy-repid.
             repid = sy-repid.
      CREATE OBJECT picture_control_1 EXPORTING parent = docking.
      CHECK sy-subrc = 0.
      CALL METHOD picture_control_1->set_3d_border
        EXPORTING
          border = 5.
      CALL METHOD picture_control_1->set_display_mode
        EXPORTING
          display_mode = cl_gui_picture=>display_mode_stretch.
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 50
          left   = 40
          top    = 30
          width  = 190.
    CHANGE POSITION AND SIZE ABOVE****************
    IF url IS INITIAL.
    REFRESH query_table.
        query_table-name  = '_OBJECT_ID'.
    CHANGE IMAGE NAME BELOW UPLOADED IN SWO0*****************
        query_table-value = 'ENJOYSAP_LOGO'.
        APPEND query_table.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            query_string        = query_table
            html                = html_table
            mime                = pic_data
          CHANGING
            return_code         = return_code
            content_type        = content_type
            content_length      = content_length
          EXCEPTIONS
            object_not_found    = 1
            parameter_not_found = 2
            OTHERS              = 3.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type     = 'image'
            subtype  = cndp_sap_tab_unknown
            size     = pic_size
            lifetime = cndp_lifetime_transaction
          TABLES
            data     = pic_data
          CHANGING
            url      = url
          EXCEPTIONS
            OTHERS   = 1.
            ENDIF.
            CALL METHOD picture_control_1->load_picture_from_url
        EXPORTING
          url = url.
    ENDFORM.
    Thks and waiting for your replies.

    Hi ataran,
    in case, your version of iMovie is able to import the footage, have a read here:
    http://www.apple.com/ilife/tutorials/imovie/

  • How to make group visble and hidden

    I have to make one group(which consists of some field) visible and hidden on tableselect. Initially that group should not visible and after selecting table those group need to show. How to make it during runtime..Right now i made the table leadselect -1 so it is not selected. So how to make it hidden.
    Thnaks
    Nitya

    Use a calculated attribute (read-only, type=Visibility) and implement the get-method like
    WDVisibility getGroupVisibility(...)
      return wdContext.node<TableDataSource>.getLeadSelection() == IWDNode.NO_SELECTION
        ? WDVisibility.NONE : WDVisibilty.VISIBLE;
    Bind the "visible" property of the group to this attribute.
    Armin

  • How To make group wise total in Bex report

    Hi!!! Guru's
    i m doing reporting on SD module, so client wann see the summerised report
    on delivarys, senario is the one sale order having the multiple delivery, so the
    i have to show the total result for all deliverys agianst the purticular sales order
    in one row.i know we can do that at the excel level but hot to do it at the query
    design level.highly appreciate u r help on this.
    wil asign pts for sure,,,
    thanks in adv
    Mohan

    Hi!!! Trippel K
    thanks for reply...
    my Q's is how to make the group wise total means, i m going to genaret the
    report on delivery delays on cube 0SD_C04 (Delivery Service), in that the the date
    is comming from the 2LIS_12_VCITM delivery item data, the schedule line data
    from 2LIS_12_VCSCL, when i m getting according to date wise it showing all data from item level n schedule line, the senario is i have to use date from item level n
    all delivery from schedule line, so any inputs regarding this, plz let me, wil appecite
    u inputs
    thanks in adv
    Mohan

  • MS Word keeps hanging up. Any options other than 'forced quit'? How to make it stop?Can content since last save be retrieved? Enabled Tracking Changes

    Help! MS Word keeps hanging up. Any options other than 'forced quit'? How do I make it stop?Can content since last auto-save be retrieved? I've enabled Tracking Changes and Auto-Save for every 10 min. No idea what cause pin wheel to start whirling. Is this something I can wait out? or must I do forced quit and lose my work?
    Signed,
    Drew A. Blank

    If you installed a Security Update early this month, about the 2nd or so, and not one since then, run Software Update - if it offers another Security Update, accept and install that one. The original Feb 2012 update had some flaws with regard to MS software in particular; the follow-up update fixed those.

  • How to make a clip play backwards in timeline and how to reverse a clip from left to right?

    I would love to know if it is possible to:
    1. make a clip play backwards in the timeline
    2. reverse the orientation of a clip from left to right
    Thanks in advance.

    Yes to both.  The specific method may vary from one version to another.
    1. make a clip play backwards in the timeline
    Right click > Speed/ Duration > Reverse Speed
    2. reverse the orientation of a clip from left to right
    Apply the Basic 3D video effect.  Adjust the Swivel to 180 degrees.
    What version are you using?

  • How to make a menu for HD content (not BD)

    I am a newbie on this forum and I am not sure where to post: I am a middle-aged woman with blond (grey) hair (**** happens) BUT I have been 'playing around' with computers since 1977. I have been editing video and audio since the 90's and mainly as a hobby I have made 100+ productions for f.i. tourist boards on DVD and BD. But now I am stuck: I know I am making some sort of mistake in thinking and I am asking you to help me to sleep again at night!
    I have been uploading all my productions to a NAS and want to be able to show them every now and then, not the whole video but by chapter. With the DVD's that is no problem: the menu's stay as they are but with the BD it is a different story. My media players (Mede8er and Eminent) do not play the menu's but start the playback at the largest .mts, because they are not able (money wise) to communicate with JAVA.
    I am looking for software that will make it possible to create (simple) menu's for HD content . I still have alle the original content and the software to make all kind of formats, both on PC and Mac, but I can not find anything on the net to help me !!! And of course I want to keep the HD quality! The only thing I have managed so far is making chapters with MKVtoolnix, but that is not to my liking.
    There must be something I am overlooking: Apple is skipping all optical disks in favor of HDD's, but I can not imagine that there is no possibility to create some sort of menu structure?
    Any help will be appreciated!

    This is all way beyond me, but couldn't you just make an HTML page that linked to the video files on your server and use a browser?
    MtD

  • Can anyone explain how to make a clickable table of content for my cookbook

    I want a table of contents at the front of the book, then folks can click the recipe that they want to make and will automatically be paged forward to that exact recipe.

    Sheri,
    This isn't possible at the moment. Pages for iPad can only handle external links.

  • How to make Group Matrix Report in BI Publisher Template Builder for Word

    Dear All
    I have created a template in MSWord's BI Publisher for creating Matrix report, it is working fine, but i couldn't do it for Group matrix report. Kindly give me any kind of example regarding group matrix or nested group in column level and row level.
    Regards
    Haq Nawaz
    A.F.Ferguson & Co
    Edited by: 823804 on Dec 28, 2010 5:42 PM

    Hey hi,
    I m also trying to create template for matrix wih group. have you found any solution for this? if yes please forward me the information on my mail id [email protected]

  • How to make stuff appear in Library Content folder?

    Hi all,
    I have purchased about 40 new flourishes and I want them to show up in the Content folder under Drawings. Where would I put these (quicktime movie) flourishes for them to show up in the Drawings folder?
    Thanks

    Of the top of my head, I'd say throw them in the Content Folder into the category you choose. Be careful, though -I don't know if that retains non-standard content after a Motion upgrade. What does the content provider recommend?
    Patrick

  • How to make group contacts

    Need help with setting up a group of contacts to my phone. Need to be able to send group e-mail and texts

    You can create group of contacts on your computer, and then sync them on your iPhone. But you will not be able to select them as text / email recipients. As off today you need a 3rd-party application for this. I have created a free one, called Easy Group. You will create your groups, populate them with your contacts, and then send your texts and emails.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Rémi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • How to Make a Tagged XMLElement's Content Longer

    For IND 5.0, Actionscript
    Hi All,
    I have a situation in which I need to change the contents of a Tagged XMLElement. Then, I need to move the enclosing Text object to another frame.
    myXmlElement.contents = "Lorem ipsum" works fine if the new contents is no longer than the original contents. However, if the new contents is longer than the original contents, then the contents for the enclosing Text element only shows the last n characters of the contents, where "n" is the length of the original content.
    For example:
    if myXmlElement.contents equals "ABC", and I perform myXmlElement.contents = "12345678", then the Text contents becomes "678" (i.e., the last 3 characters, because the length of the original content was 3 characters).
    What am i doing wrong?
    TIA,
    mlavie

    You have to be careful with text specifiers. I don't know whether the same problems apply to Actionscript (it sounds like they must), but check out this post from Marc Autret and see if it clarifies things.
    Jeff

  • How to make two clips trade spaces?

    Suppose I have ten clips in a row and I want to put clip 3 into spot 10 and put clip 10 into spot 3 (basically just trade places with two clips). There must be a function to do this - any idea would be much appreciated!

    There must be a function to do this...
    There isn't. You have to do it manually.
    Press tttt (t four times) to get the Forward Select All mode.
    Click the pointer on clip three, it and everything further up will be selected. Drag all those clips far enough up the Timeline to leave a gap big enough for for clip ten.
    Grab clip three and move it loosely to the very end.
    Grab clip ten and drag it back to butt up with the end of clip two.
    If Snapping is on it will jump into position when you get close.
    Right click in the excess space after the repositioned clip and choose "Close Gap".
    Do the same for the newly positioned clip three.

Maybe you are looking for

  • Account detrmn error ..?

    Hi all Can anybody explain me ,while doing Goods receipt after production i m getting error " TSCA GBB 0002 AUF 1320 is not possible". In OBYC, what is G/L acc i have to give , wher i can get excat G/L acc for the goods movement. While posting this m

  • The Japanese file name is not displayed.

    I'm using Mac OS 10.5.3(intel)/Adobe Media Player 1.0 In "Personal Videos",The Japanese file name is not displayed. Example, "日本語.flv" is added, ".flv" is displayed in "Personal Videos".

  • How to retrive the archived (in PDF) smartform as a email attachment.

    Hi , I have a requirement where the smartform is archived in PDF mode and I have to retrieve the archived smartfrom and send the mail with PDf attachment. I referred the sdn forum for the same and I could some posts posted earlier and quite a few are

  • Download report problem

    Hi all I have an application used by lot of users with different access rights. I would like to let some of them to download interactive report, and deny it for others. is there any method to do it?

  • Video editing with audio

    How could it be added audio while editing video with Lumia 520?