Bug SDK-17114  flex.effects.Rotate - Selection Glow Is Rotated For All Objects (Not Just Effect.Target)

Re: Bug SDK-17114 flex.effects.Rotate - Selection Glow Is
Rotated For All Objects (Not Just Effect.Target) at
http://bugs.adobe.com/jira/browse/SDK-17114.
Looks like this bug was fixed as of yesterday - I'd like to know
when there will be a patch available to users. I bought Flex 3 just
in the last few weeks, so it would be nice if I could get a free
patch. However, my main concern is how to do a workaround. I can't
deliver my application with this problem, and if the patch is not
available, I don't have an alternative. Is there a way to access
the selection rectangle object and set its rotation
explicitly?

Thanks, Michel.
I forgot to mention one point about copying shape layers into one shape layer:  when you initially use the Shape Selection tool to select a shape for cutting, make sure the option for the Shape Selection tool is set to "Add to Selection".
MichelBParis wrote:
The problem with Elements+ is that it has so many features you soon forget what it can give you !
Truer words were never spoken! 
Ken

Similar Messages

  • Do we have any third party FLEX component libraries to support accessibility feature for all the components(like: ViewStack, ToggleButtonBar, charts and etc..) ?

    I am working on FLEX 4.6 SDK it provides 35 components with built in accessibility support. My Application contains some components which have no built in accessibility support but I need to provide accessibility support for those components too. I have gone through the Flex docs to customize the non accessible components to support accessibility feature, But the docs where not clear. To customize a single component I have to overwrite lot of code in SDK level.
    and it takes lot of effort.
    So, I would like to use FLEX component libraries which provides accessibility support for all the component.
    Could you please guide me how can I provide accessibility support for other components with out putting more effort on it.
    Thanks in advance...

    There is already such thing in myfaces called "security context" [1]. You could find build of sandbox.jar [2]
    [1] http://myfaces.apache.org/sandbox/securityContext.html
    [2] http://people.apache.org/builds/myfaces/nightly/

  • SELECT ... FOR ALL ENTRIES IN fails!!!

    Hi,
    we are on Kernel 640_REL unicode and found a Kernel error:
    Using SELECT ... FOR ALL ENTRIES IN with a field list to be retrieved,  the ABAP-Database interface obviously deletes duplicate records.
    Our scenario is retrieval of open special ledger postings for customers from BSID.
    The fields specified were
    BUKRS KUNNR WAERS DMBTR WRBTR SHKZG UMSKZ
    If a customer has more than one matching record with the same amount, only one of those is returned. The only way to get all matching records is to retrieve all key fields.
    I forwarded to the people handling OSS-requests in our project. Before we get the solution, i want to issue a severe warning.
    This failure is decribed in note 65554 for Kernel-Release <= 3.0F and <= 4.6D, also Release 6.10. But nothing newer.
    After all those years of ABAP I did not expect they can't handle SQL.
    regards,
    Clemens

    Hi Clemens
    If I understand your post, I don't think there is an error, the following is from the online help:
    "The result set of the SELECT statement is the union of the individual selections for each line of the internal table. Duplicate lines are automatically eliminated from the result set. If <itab> is empty, the addition FOR ALL ENTRIES is disregarded, and all entries are read. "
    I believe that 'FOR ALL ENTRIES' is a union and therefore duplicate rows are removed.  If you want each row to appear then you need to make the row unique by using all the key fields. I think it would also be better to inlcude all the key fields in the WHERE clause anyway.
    Kind regards
    Andy

  • Regarding 'Select .... for all entries' statement

    Hi experts,
    Can anyone suggest me that whether we can use two internal tables in 'Select .... for all entries'  statement?

    Hi,
    You can use ranges instead of second for all entries.
    Eg:
    Say for example i need to write selec statement using fields from two int tables in where conidition namely itab1, itab2.
    RANGES: r_vbeln FOR wa_tab1-vbeln.
    LOOP AT itab1 INTO wa_tab1.
      r_vbeln-sign = 'I'.
      r_vbeln-option = 'EQ'.
      r_vbeln-low = wa_tab1-vbeln.
      APPEND r_vbeln.
    ENDLOOP.
    SELECT * FROM vbap INTO TABLE itab3
    FOR ALL ENTRIES IN itab2
    WHERE vbeln IN r_vbeln "range contains all vbeln from the table itab1
    AND matwa = itab2-matwa.
    Hope this helps you.
    Regards,
    Manoj Kumar P

  • Select inside loop into for all entries or joins

    Experts please help in making it into for all entries or joins.
    suppose assume this
    zuser table has 2 fields usage and kunnr.
    in i_table i always have 2 fields.
    type
    number
    type will store user or nonuser
    and number can store customer number or sales order number.
    if the type is user then the numer will be customer number and
    if the type is nonuser then the number will be sales order number.
    and values in this table is like this
    type number
    user 100001210
    nonuser 123200000
    user 124573930
    user 294839039
    user 138393903
    nonuser 382749239
    type always have user or nonuser and corresponding to them we have customer numbers.
    and now based on this we need to fine tune this code.
    parameters :p_usage(20) type char
    LOOP AT i_table.
    IF i_table-type = 'NONUSER'.
    SELECT single kunnr INTO skunnr FROM vbak WHERE
    vbeln = i_table-value.
    ENDIF.
    ENDIF.
    IF i_table-type = 'USER'.
    skunnr = i_table-value.
    ENDIF.
    IF skunnr is not initial.
    SELECT single usage FROM zuser
    INTO v_usage
    WHERE usage = p_usage
    AND kunnr = skunnr.
    IF v_usage IS NOT INITIAL.
    i_export-kunnr = i_table-type.
    i_export-auart = i_table-name.
    i_export-flag = 'X'.
    ELSE.
    i_export-NAME = i_table-type.
    i_export-age = i_table-name.
    i_export-flag = ''.
    ENDIF.
    Append i_export to itab_final.
    ENDIF.
    ENDLOOP.
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Jul 2, 2009 2:53 PM

    U can have this as a solution to avoid ur loop.
    declare to itabs as below:
    data: i_table_user type standard table of i_table,
            i_table_nonuser type standard table of i_table.
    i_table_user[] = i_table[].
    i_table_nonuser[] = i_table[].
    delete i_table_user where user eq 'NONUSER' .   (BY THIS YOU WILL HAVE ONLY USERS IN THIS ITAB)
    delete i_table_NONuser where user eq 'USER' . (BY THIS YOU WILL HAVE ONLY NONUSERS IN THIS ITAB)
    NOW AVOID LOOP AT ITAB AND WRITE YOUR 2 SELECT STATEMENT BY USING FOR ALL ENTRIES OF
    IF YOU DONT NEED any of THESE ITABS FURTHER , refresh them to improve ur memory and performance.
    HOPE THIS HELPS.
    THANKS
    KIRAN

  • Selecting single value using for all entries.

    Hi Experts,
    I want to know that is it possible to fetch only the first record for a particular condition while using for all entries.
    For ex:
    Suppose i got 10 different vbeln from vbak table into my internal table it_vbak. For a particular vbeln there can be multiple records in vbap table.
    Now i need to fetch only the first record which is getting from vbap table for different vbeln while using 'for all entries in it_vbak where vbeln = it_vbak-vbeln'. Is it possible?
    Thanks in Advance
    Be$t!N
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Nov 17, 2009 9:38 AM

    Hi Rob Burbank,
    Thanks..
    You are correct.. If that is the scenario in their company... Again it depends on the configuration and business process.. But it's possible that they may need to delete first on any line item after creation of sale order..
    In that case below solution will work..
    IF IT_VBAK[] IS NOT INITIAL.
    SELECT * FROM VBAP
    INTO TABLE IT_VBAP
    for all entries in it_vbak
    where vbeln = it_vbak-vbeln.
    ENDIF.
    SORT IT_VBAP BY VBELN POSNR.
    LOOP AT IT_VBAK INTO WA_VBAK.
    READ TABLE IT_VBAP INTO WA_VBAP WITH KEY VBELN = WA_VBAK-VBELN.
    IF SY-SUBRC = 0.
    APPEND WA_VBAP TO IT_VBAP2. " Another Internal table which stores only first record
    ENDIF.
    CLEAR : WA_VBAP.
    ENDLOOP.
    OR
    IT_VBAP3[] = IT_VBAP[].
    SORT IT_VBAP3 BY VBELN POSNR.
    DELETE ADJACENT DUPLICATES FROM IT_VBAP3 COMPARING VBELN.
    Now Table IT_VBAP2 and IT_VBAP3 will be having only first line items for all sales orders..
    Do some little changes in the code as per your requirement.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Select statment using FOR ALL ENTRIES  not allow to do sum,

    Hi All,
    SELECT DELIV_NUMB
           SUM( GRS_WGT_DL )
           UNIT_OF_WT
      FROM /BIC/AGSSD000600
      INTO TABLE I_GROSS
      FOR ALL ENTRIES IN I_LAYTWO
      WHERE DELIV_NUMB = I_LAYTWO-DELIV_NUMB
      GROUP BY DELIV_NUMB UNIT_OF_WT.
    While compiling it shows the error
    The addition "FOR ALL ENTRIES" excludes all aggregate functions with
    the exception of "COUNT( * )", as the single element of the SELECT
    clause.
    Please give some solution to do sum
    with regards,
    Thambe .

    You could just select all entries into an internal table and then loop through and use COLLECT or similar to get your sum values.
    Gareth.

  • SELECT with and without for all entries giving different results

    Hi All,
    For some reason unknown to me ,
    There is a difference in result between the below mentioned query however the logic is same.
    1 .  lw_ebeln-EBELN = '0000366416'.
         APPEND lw_ebeln to lt_ebeln. 
          SELECT    ebeln
         FROM     ekbe
         INTO TABLE lt_ekbe
         FOR ALL ENTRIES IN lt_ebeln
         WHERE ebeln = lt_ebeln-ebeln
    2. SELECT ebeln from ekbe into table lt_ekbe where
    ebeln = '0000366416'..
    I have tried a lot to find the reason but unable to.
    Thanks,
    Faiz

    Hi faizur,
    Hope it help ful.
    If you add the EBELP in Internal table,  you will be getting same number of entries in both query.
    For all entries Removes the Duplicate key.
    Regards,
    Venkat.

  • Select ....FOR ALL ENTRIES.... performance tuning

    I have the following SELECT statement:
    SELECT recn, recnroot, ippers
         INTO CORRESPONDING FIELDS OF TABLE <ITAB1>
       FROM CCIHT_IP
          FOR ALL ENTRIES IN <ITAB2>
    WHERE ippers = <ITAB2>-ippers
          AND valfr LE sy-datum
          AND valto GE sy-datum
          AND iptype = 'INJ'.
    Did a trace, and the SQL executed is:
    SELECT recn, recroot, ippers
       FROM CCIHT_IP
    WHERE mandt= ?
         AND ippers IN (?1, ..., ?10)
         AND valfr <= ?
         AND valto >= ?
         AND iptype = ?
         FOR FETCH ONLY WITH UR
    This is very slow.
    To speed it up, I programmatically break up the SQL using a range table:
    i.e.:   WHERE ...
                 AND IPPERS IN <RANGE TABLE>
        With the range table containing 1500 entries which is near the limit for IN statement. This is much faster.
    The question is why with the FOR ALL ENTRIES the IN statement contains only 10 values and not the maximum allowed, is this a database config issue ?

    Hi,
    as Thomas said for this case rsdb/max_in_blocking_factor is the parameter in question.
    And yes, Andrew, you are right, FAE parameters should not be changed system wide
    since the delivered default values are those values that turned out to be the best values
    in systemwide tests.
    However you can increase the value on statement level with a hint. So you can have both
    the FAE and a non default blocking for a specific statement.
    example:
    SELECT recn, recnroot, ippers
    INTO CORRESPONDING FIELDS OF TABLE <ITAB1>
    FROM CCIHT_IP
    FOR ALL ENTRIES IN <ITAB2>
    WHERE ippers = <ITAB2>-ippers
    AND valfr LE sy-datum
    AND valto GE sy-datum
    AND iptype = 'INJ'
    %_hints db2 '&max_blocking_factor 500&&max_in_blocking_factor 500&u2019.
    Use with care.
    Kind regards,
    Hermann

  • Aperture 3.3 Bug: Syncing Stacks Syncs All Versions, Not Just Pick

    Aperture 3.3 has a pretty significant bug.  Syncing to iOS devices results in all versions in a Stack to be synced to the device, not just the Picks.  This is a HUGE problem as two things happen:
    1) The amount of space consumed by the versions can be increased several fold.
    2) There can be incredible redundancy when viewing photos on iOS devices because of all the extra versions, in many cases the versions may be indistinguishable.
    Does anybody have a work around for this, or know if Apple has acknowledged this bug?

    I've run into the same problem, and it also affects the Apple TV -- my screensaver slideshow started to look pretty strange when all of the extra versions in my various stacks began appearing
    Anyway, I have found what may be an acceptable workaround.  Since iTunes is only using the previews in Aperture, it will exclude any images for which previews do not exist.  So, if you choose the non-pick images in each of your stacks and delete their previews (right-click and choose "Delete Previews") they will be removed from any albums that are syncing to your iOS devices or Apple TV.

  • CAN USE SELECT OPTION FIELD IN FOR ALL ENTRIES CONCEPT

    Hi sir/ madam,
    can i write code like this .
    i have data in itab1 .
    select-options : s_matnr like lips-matnr.
    SELECT VBELN VGBEL VGPOS MATNR
        FROM LIPS
        INTO TABLE I_LIPS
        FOR ALL ENTRIES IN ITAB1
        WHERE VBELN = ITAB1-VBELN AND
              MATNR = S_MATNR.
    Thanks & Regards
    Suresh kumar

    Hi Suresh,
    To correct ur code syntactically, repacle the
    =
    operator with
    IN
    . This may be correct but from data consistency point of view this may not be the ideal thing to do.
    You can foolow thw following steps:
    1. Fetch data in ITAB1 using the MATNR in the select-option. I hope you do have
    MATNR in ITAB1.
    2.
    SELECT VBELN VGBEL VGPOS MATNR
    FROM LIPS
    INTO TABLE I_LIPS
    FOR ALL ENTRIES IN ITAB1
    WHERE VBELN = ITAB1-VBELN AND
    MATNR = ITAB1-MATNR.
    This should be correct form data consistency view-point.
    Hope this answers ur query. Please award points if u find the answer helpful.
    Regards,
    Suhas

  • I need to rotate my text in pages - in a template - not just a text box

    I am trying to make labels in Pages using a template I downloaded from the place I bought the labels.  Problem is I cannot rotate the text! And I cannot select the text box - it is not working.  WHY PAGES WHY???? Does anyone know how to deal with this? 

    If you already designed a label art and need to rotate it to fit the label itself you can select all the elements from the design and select "group" then on the  "format" tab of the Inspector you can rotate it. If you wish to print more than one label just copy, paste and move them to the label area. Hope this helps.
    Can you also post a print screen so we can better understand what you are trying to achieve.
    Alex

  • Why is it when I select my personal preferences/user/login items, that when i select the check box for items to NOT pop up on my dock when i restart and start my macbook air 11 inch that they still continue to?

    why is it that every time i start up my macbook air and when i restart it, that the new office with word and those three other apps constantly pop up? even though i went to personal preferences/users/login items, and selected the box that clearly says "items to NOT be brought up when logging in" ?

    If you don't want to start Office automatically when your Mac starts, see > http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/how-do-i-prev ent-microsoft-office-2011-word-from/dd5b8b17-8397-4e7c-b635-79b9c976c4ab?msgId=f 00ac42a-e4fe-43aa-83d7-16ccd35a0d8a
    Also, on System Preferences > Users & Groups > Login Items, select all items related to Office and press - button to delete them

  • Bulk Select and FOR ALL update not working

    Hi
    I am trying to run this but it does not work. I get this error
    PLS-00430: FORALL iteration variable I is not allowed in this context
    declare
    cursor c is
    select employee_number, national_identifier,
    last_name, first_name
    from per_all_people_f;
    type en_tab is table of per_all_people_f.employee_number%type;
    type ni_tab is table of per_all_people_f.national_identifier%type;
    type ln_tab is table of per_all_people_f.last_name%type;
    type fn_tab is table of per_all_people_f.first_name%type;
    en en_tab;
    ni ni_tab;
    ln ln_tab;
    fn fn_tab;
    begin
    open c;
    loop
    fetch c bulk collect into en, ni, ln,fn;
    forall i in 1..en.count
    update xxdl_hr_people_interface
    set first_name = fn(i),last_name = ln(i),national_identifier = ni(i)
    where employee_number = en(i);
    exit when c%notfound;
    end loop;
    close c;
    end;
    But if I dont try to update first_name ,last_name, national_identifer at the same time and modify the block to be like this, it runs
    declare
    cursor c is
    select employee_number, national_identifier,
    last_name, first_name
    from per_all_people_f;
    type en_tab is table of per_all_people_f.employee_number%type;
    type ni_tab is table of per_all_people_f.national_identifier%type;
    type ln_tab is table of per_all_people_f.last_name%type;
    type fn_tab is table of per_all_people_f.first_name%type;
    en en_tab;
    ni ni_tab;
    ln ln_tab;
    fn fn_tab;
    begin
    open c;
    loop
    fetch c bulk collect into en, ni, ln,fn;
    forall i in 1..en.count
    update xxdl_hr_people_interface
    set first_name = fn(i)
    where employee_number = en(i);
    exit when c%notfound;
    end loop;
    close c;
    end;
    Any pointers on why this does not work?
    Thank you
    Kumar

    If per_all_people_f has a PK or unique index on employee_number, then you can do:
    UPDATE (SELECT pi.first_name, pi.last_name, pi.national_identifier,
                   pf.first_name pffirst, pf.last_name pflast,
                   pf.national_identifier pfnat
            FROM xxdl_hr_people_interface pi, per_all_people_f pf
            WHERE pf.employee_number = pi.employee_number)
    SET first_name = pffirst,
        last_name = pflast,
        national_identifeir = pfnatIf not, you can do:
    UPDATE xxdl_hr_people_interface pi
    SET (first_name, last_name, national_identifier) =
                (SELECT first_name, last_name, national_identifier
                 FROM per_all_people_f pf
                 WHERE pf.employee_number = pi.employee_number)
    WHERE EXISTS (SELECT 1
                  FROM per_all_people_f pf
                  WHERE pf.employee_number = pi.employee_number)Note that if there might be more than one row in per_all_people_f for an employee_id, then you need to modify the select sub-query to add a predicate to make sure it only returns one row for each employee_number.
    John

  • How can I select a smaller font for all components of a Swing application?

    The default size of font in Java Look and Feel is 12, how can I change it to 10 globally for my Swing application ?
    Thanks for your help.
    Helen

    It is not very simple because all components don't use the same fonts and if you don't want to subclass the l&f you can do this :
    after setting the l&f (in the main for example)
    Font f = new Font("dialog", Font.PLAIN, 11);
    UIManager.put("MenuItem.font", f);
    UIManager.put("Menu.font", f);
    UIManager.put("MenuItem.acceleratorFont", new Font("dialog", Font.PLAIN, 10));
    UIManager.put("Label.font", f);
    UIManager.put("Button.font", f);
    UIManager.put("ToggleButton.font", f);
    UIManager.put("ToolTip.font", f);
    UIManager.put("List.font", f);
    UIManager.put("Table.font", f);
    UIManager.put("TextField.font", f);
    UIManager.put("ComboBox.font", f);
    UIManager.put("RadioButton.font", f);
    UIManager.put("CheckBox.font", f);
    UIManager.put("RadioButtonMenuItem.font", f);
    UIManager.put("CheckBoxMenuItem.font", f);
    UIManager.put("TableHeader.font", f);
    UIManager.put("Spinner.font", f);
    UIManager.put("Panel.font", f);etc...
    Denis

Maybe you are looking for

  • Passing plsql parm to a sql statement in the procedure  database link name

    Would like to pass a parm that is the database link name to a stored procedure.  I defined this as below. var1 is the name of the db link that I would like to pass create or replace procedure   proc1  (var1 in varchar2) as cursor c1 is select num,nam

  • How can I disable incesant rambling alarm "The connection to the server was reset while the page was loading" in FF17?

    In using FF 17.0.1 in a WinXP/SP3 notebook (Acer) while traveling abroad I get unrelenting rambling and totally inconsequential display alarms "The connection to the server was reset while the page was loading." The page in question looks perfectly f

  • RSA Support in JDK 1.2.2

    I am trying to figure out exactly which versions of java support RSA signature generation and verification. Precisely, I want to know if I can sign and verify using JDK 1.2.2 (without JCE). If not, do I need to get a provider that supports it, or wil

  • CRM model nodes

    Hi I am new to weclient ui and i want to know how to use a model node. I have created a simple object in spro which is my ztable. so now, will i be able to acess the data in my ztable just by creating a model or do i need to any extra coding to get d

  • [SOLVED] Xfce4-Netload-Plugin

    Brand new Arch with Xfce 4 Desktop Environment version 4.6.1 (Xfce 4.6) When I try to add the netload panel item I get: Xfce4-Netload-Plugin: Error in initalizing: Interface was not found. Any ideas? Last edited by CaptainKirk (2009-06-09 09:30:25)