Flash CS4 multiple selection probleme, Scale/position

Hello.
i noticed that if you have a flash cs4 AS2 where you need to make a zoom and unzoom effect on multiple element, you will have a painfull time building that scale+position effect. Let me explain.
Everything need to be scaled from 0 to 100 % and then from 100 % to 0. Some of those need to be scale in the exact position where they are, but other need to also move to fit the zoom effect for a result of a central effect for everything ). For some unknow reason the Tween is not working for those item. So i had to do it manually using 50 keyframe of 1 frame ( ho joy... dont forget to times that by 19)
We all know that when you use the free transform tools, you have the transform box + the little circle that define the effect "center" location of the item. Whatever the location of that little circle, when you zoom it will go away in the opposite direction and the reverse is also true. So far it work perfectly.
however if you take the time to set that little circle for all your element perfectly and test it with all element, you should be able to select ALL of your element at the same time and execute the same move as if you were doing it on a single element right ?. Well no.
If you do it with a single element and play with the scale ( with constraint) it does what you want. But if you select them all, you discover quickly enough that it is no longer working. You also discover that it is adding a NEW little circle ( "center" position) that is offset. Fair enough, i move that circle at the exact location of the zoom effect then try to make the zoom, and TADAM.. it is not working, it is still messing with the direction of the scale/position.
Ctrl Z. unselect everything, and try again with only 1 random element ? work perfectly. Try with all of them at the same time ? dont work.
REmember all those element zoom at the same location, so you shouldn't have any probleme with the new little circle as long you move it at the same spot than the other. But no. even if it is there, it will still scale/position South of where it suposed to be. Doing it all at the same time while setting that circle should save you time, but right now it is the exact opposite, an effect that could take 1 hour to make will take me the full day, if not more.
any clue ?
I do hope i'm clear enough
Thx.

Yes Kglad, that the little circle thing i was speaking about.
It is set manually to fit the design and if i select my item 1 by 1 and zoom them manually, it is working.
The bug is when you select them all ( AFTER setting all the registration point ) you will get another one that is not set, so even if you set it manually at that time ( when all is selected ) and THEN apply the zoom, it will no longer work.
thats the bug.

Similar Messages

  • Multiple selection problem in adf

    hi all,
    i have table with multiple selection. i use above code but i read only one record. moreover, i read different record in each selection.
    CoreTable table = this.getTable1();
    Set rowSet = table.getSelectionState().getKeySet();
    Iterator rowSetIter = rowSet.iterator();
    bindings = getBindings();
    DCIteratorBinding pr_dcib = (DCIteratorBinding)bindings.get ("arizagozlemview1Iterator");
    while (rowSetIter.hasNext){
    Key key = (Key) rowSetIter.next();
    String ad=key.toStringFormat(true);
    System.out.println(ad);
    pr_dcib.setCurrentRowWithKey(ad);//
    ViewRowImpl rowImpl = (ViewRowImpl)pr_dcib.getCurrentRow();
    Number a = (Number)rowImpl.getAttribute("ArizaNo");
    System.out.println(a);
    }

    The problem is the position of the command button, the button must be out of the table tags
    <af:commandButton text="commandButton 1"
    binding="#{mybacking.commandButton1}"
    id="commandButton1"
    action="#{mybaking.Button_action}"/>
    <af:table value=...

  • FLASH CS4 LINES TO NONE SCALE

    If I want to change the scale mode of a line in Flash CS4, I need to start flash cs4, select the line, in the properties I have to change the scale mode to None.
    If I want to scale one more line, I need to save the file, close Flash CS4, restart it, select the line, change it in the properties.
    Is there any way to use adobe flash cs3 with adobe design premium CS4 license? because the flash cs4 is a piece of s..., but all the
    other part of cs4 is useful.
    will Adobe make more patch for flash cs4 ???
    or is it a dead end story??

    Yes Kglad, that the little circle thing i was speaking about.
    It is set manually to fit the design and if i select my item 1 by 1 and zoom them manually, it is working.
    The bug is when you select them all ( AFTER setting all the registration point ) you will get another one that is not set, so even if you set it manually at that time ( when all is selected ) and THEN apply the zoom, it will no longer work.
    thats the bug.

  • Data template multiple selection problem

    Hi all,
    I have a problem with the Multiple Selection on the BI Publisher using data templates. One of my parameters is called p_application, this parameter is a integer/number and its values come from a list of values.
    I'm getting the error "....invalid number". I think the data template is not understanding that this parameter have multiple selection.
    Can you help me?
    here is my data template
    <dataTemplate name="user_reg" dataSourceRef="Thomson_Live_ EDC_Environment">
    <properties>
    <property name="include_parameters" value="false"/>
    <property name="include_null_Element" value="false"/>
    <property name="include_rowsettag" value="false"/>
    <property name="scalable_mode" value="on"/>
    <property name="db_fetch_size" value="20"/>
    <property name="scalable_mode" value="on"/>
    </properties>
    <parameters>
    <parameter name="p_customer" dataType="string" include_in_output="false"/>
    <parameter name="p_application" dataType="integer" include_in_output="false"/>
    <parameter name="p_start_date" dataType="date" include_in_output="false"/>
    <parameter name="p_final_date" dataType="date" include_in_output="false"/>
    <parameter name="p_staff_account" dataType="string" include_in_output="false"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[
    select COUNT(DISTINCT TRUNC(a.TIMESTAMP)) days_logged
    ,COUNT(a.USER_ID) logins
    ,max(a.TIMESTAMP) last_access
    ,a.application_id application_id
    ,a.user_id user_id
    from user_history_log a,
    idweb_user b,
    idweb_customer c
    where to_date(to_char(a.timestamp,'dd-mm-rrrr'),'dd-mm-rrrr') between to_date(:p_start_date,'dd-mm-rrrr') and to_date(:p_final_date,'dd-mm-rrrr')
    and a.user_id = b.user_id
    and b.customer_key = c.customer_key
    and c.staff_account = :p_staff_account
    and ('0' in (:p_customer) or b.customer_key in (:p_customer))
    and (0 in (:p_application) or a.application_id in (:p_application))
    group by a.application_id, a.user_id ]]>
    </sqlStatement>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT IDCU.CUSTOMER_NAME "Customer name"
    ,PCAP.APPLICATION_NAME "Application name"
    ,IDUS.FIRST_NAME "First name"
    ,IDUS.LAST_NAME "Last name"
    ,IDUS.USER_NAME "Username"
    ,IDUS.EMAIL_ADDRESS "Email address"
    ,IDUS.ROLE "Job Role"
    ,IDUS.AREA "Job Area"
    ,IDUS.DEPARTMENT "Specific Job Area"
    ,IDUS.CITY "City"
    ,IDUS.US_STATE "State"
    ,IDUS.COUNTRY "Country"
    ,SALE.TERRITORY_NAME "Territory/GAM"
    ,BUUN.BUSINESS_UNIT_NAME "SBU"
    ,to_char(IDUS.REGISTRATION_DATE,'dd-mm-yyyy') "Registration date"
    ,to_char(PCCA.EXPIRY_DATE,'dd-mm-yyyy') "Expiry date"
    ,DECODE(PCUA.DISABLED,'Y','Disabled','Enabled') "Status"
    ,pcua.application_id application_id
    ,pcua.user_id user_id
    FROM PC_USER_APPLICATION PCUA
    ,PC_CUSTOMER_APPLICATION PCCA
    ,IDWEB_USER IDUS
    ,IDWEB_CUSTOMER IDCU
    ,sales_territory SALE
    ,business_unit BUUN
    ,PC_APPLICATION PCAP
    WHERE BUUN.BUSINESS_UNIT_ID(+) = IDCU.SBU_ID
    AND SALE.TERRITORY_ID(+) = IDCU.TERRITORY_ID
    AND IDCU.CUSTOMER_KEY = IDUS.CUSTOMER_KEY
    AND IDUS.USER_ID = PCUA.USER_ID
    AND PCCA.CUSTOMER_KEY = IDCU.CUSTOMER_KEY
    AND PCCA.APPLICATION_ID = PCAP.APPLICATION_ID
    AND PCAP.APPLICATION_ID = PCUA.APPLICATION_ID
    AND NVL(IDUS.DISABLED,'N') = 'N'
    AND IDCU.STAFF_ACCOUNT = :p_staff_account
    AND ('0' in (:p_customer) or IDCU.CUSTOMER_KEY in (:p_customer))
    AND (0 in (:p_application) or pcap.application_id in (:p_application))
    ORDER BY IDCU.CUSTOMER_NAME, PCAP.APPLICATION_NAME, IDUS.USER_NAME ]]>
    </sqlStatement>
    <sqlStatement name="Q3">
    <![CDATA[
    select COUNT(a.TIMESTAMP) "Number of Turnaways Kickout",
    MAX(a.timestamp) "Last Turnaway Kickout",
    a.application_id,
    a.user_id
    from tpharma_user.user_refused a,
    idweb_user i
    where to_date(to_char(a.timestamp,'dd-mm-rrrr'),'dd-mm-rrrr') between to_date(:p_start_date,'dd-mm-rrrr') and to_date(:p_final_date,'dd-mm-rrrr')
    and (0 in (:p_application) or a.application_id in (:p_application))
    and a.user_id = i.user_id
    and ('0' in (:p_customer) or i.customer_key in (:p_customer))
    group by a.application_id, a.user_id ]]>
    </sqlStatement>
    <link name="ruser3" parentQuery="Q1" parentColumn="user_id" childQuery="Q3" childColumn="user_id(+)" condition="="/>
    <link name="rapp3" parentQuery="Q1" parentColumn="application_id" childQuery="Q3" childColumn="application_id(+)" condition="="/>
    <link name="ruser1" parentQuery="Q1" parentColumn="user_id" childQuery="Q2" childColumn="user_id" condition="="/>
    <link name="rapp1" parentQuery="Q1" parentColumn="application_id" childQuery="Q2" childColumn="application_id" condition="="/>
    </dataQuery>
    <dataStructure>
    <group name="G_totals1" source="Q1">
    <element name="days_logged" value="days_logged"/>
    <element name="logins" value="logins"/>
    <element name="last_access" value="last_access"/>
    <element name="application_id" value="application_id"/>
    <element name="user_id" value="user_id"/>
    </group>
    <group name="G_main" source="Q2">
    <element name="Customer name" value="Customer name">
    <element name="Application name" value="Application name">
    <element name="First name" value="First name">
    <element name="Last name" value="Last name">
    <element name="Username" value="Username">
    <element name="Email address" value="Email address">
    <element name="Job Role" value="Job Role">
    <element name="Job Area" value="Job Area">
    <element name="Specific Job Area" value="Specific Job Area">
    <element name="City" value="City">
    <element name="State" value="State">
    <element name="Country" value="Country">
    <element name="Territory/GAM" value="Territory/GAM">
    <element name="SBU" value="SBU">
    <element name="Registration date" value="Registration date">
    <element name="Expiry date" value="Expiry date">
    <element name="Status" value="Status">
    <element name="application_id" value="application_id"/>
    <element name="user_id" value="user_id"/>
    </group>
    <group name="G_main" source="Q3">
    <element name="Number of Turnaways Kickout" value="Number of Turnaways Kickout"/>
    <element name="Last Turnaway Kickout" value="Last Turnaway Kickout"/>
    <element name="application_id" value="application_id"/>
    <element name="user_id" value="user_id"/>
    </group>
    </dataStructure>
    </dataTemplate>
    on the XDO file, the parameters are:
    <parameters>
    <parameter id="p_customer" defaultValue="8c3ff6ad5eh5c8" dataType="xsd:string">
    <select label="Customer: " valueSet="lv_customer" multiple="true" all="false" allValue="lov"/>
    </parameter>
    <parameter id="p_application" defaultValue="1" dataType="xsd:integer">
    <select label="Application: " valueSet="LV_application" multiple="true" all="false" allValue="lov"/>
    </parameter>
    <parameter id="p_start_date" defaultValue="{$SYSDATE()$}" dataType="xsd:date">
    <date label="Usage occurs on or after (dd-mm-yyyy):" size="11" format="dd-MM-yyyy" minValue="01-06-1950" maxValue="01-06-2100"/>
    </parameter>
    <parameter id="p_final_date" defaultValue="{$SYSDATE()$}" dataType="xsd:date">
    <date label="Usage occurs on or before (dd-mm-yyyy):" size="11" format="dd-MM-yyyy" minValue="01-06-1950" maxValue="01-06-2100"/>
    </parameter>
    <parameter id="p_staff_account" defaultValue="Y">
    <select label="Staff Accout: " valueSet="lv_staff_account" multiple="false" all="false" allValue="null"/>
    </parameter>
    </parameters>
    Thank you,
    Marcelo Cure
    Oracle Developer
    [email protected]
    www.ilegra.com
    Edited by: user11307652 on 09/03/2010 05:21
    Edited by: user11307652 on 09/03/2010 06:15

    I have a similar problem where i cannot use the parameter with comma separated values in the parameter.
    my report definition is as below.
    <dataTemplate name="COMLTRDATA" description="Data for the COMLTR letters" dataSourceRef="PRISM">
                        <parameters>
                             <parameter name="secondary_sequence" dataType="number" include_in_output="false"/>
                        </parameters>
                        <dataQuery>
                             <sqlStatement name="Q1">
                                  <![CDATA[select     PR_LETTER_MASTER.LETTER_ID as LETTER_ID,
         to_char(PR_LETTER_MASTER.LETTER_DATE,'FMMonth DD, RRRR') as LETTER_DATE,
         PR_LETTER_MASTER.LETTER_NAME as LETTER_NAME,
         PR_LETTER_MASTER.ADDRESS_TYPE as ADDRESS_TYPE,
         PR_LETTER_MASTER.REVIEWED_FIRM_NUMBER as REVIEWED_FIRM_NUMBER,
         PR_LETTER_MASTER.REVIEWED_FIRM_NAME as REVIEWED_FIRM_NAME,
         PR_LETTER_MASTER.REVIEWED_FIRM_TYPE as REVIEWED_FIRM_TYPE,
         PR_LETTER_MASTER.REVIEWING_FIRM_NUMBER as REVIEWING_FIRM_NUMBER,
         PR_LETTER_MASTER.REVIEW_NUMBER as REVIEW_NUMBER,
             PR_LETTER_MASTER.SALUTATION as SALUTATION,
             PR_LETTER_MASTER.SIGNATURE_EMAIL_ID as SIGNATURE_EMAIL_ID,
             PR_LETTER_MASTER.SIGNATURE_TITLE as SIGNATURE_TITLE,
         PR_LETTER_MASTER.REVIEW_STATUS as REVIEW_STATUS,
         to_char(PR_LETTER_MASTER.REVIEW_COMMENCEMENT_DATE,'FMMonth DD, RRRR') as REVIEW_COMMENCEMENT_DATE,
         to_char(PR_LETTER_MASTER.REVIEW_DUE_DATE,'FMMonth DD, RRRR') as REVIEW_DUE_DATE,
         PR_LETTER_MASTER.REVIEW_YEAR as REVIEW_YEAR,
         PR_LETTER_MASTER.REVIEW_PROGRAM as REVIEW_PROGRAM,
             PR_LETTER_MASTER.REVIEW_TYPE as REVIEW_TYPE,
             PR_LETTER_MASTER.TEAM_CAPT_FIRM_NAME as TEAM_CAPT_FIRM_NAME,
         PR_LETTER_MASTER.PRIOR_REVIEW_NUMBER as PRIOR_REVIEW_NUMBER,
         PR_LETTER_MASTER.MNGPTR_MEMBER_NUMBER as MNGPTR_MEMBER_NUMBER,
         PR_LETTER_MASTER.FIRST_NAME as FIRST_NAME,
         PR_LETTER_MASTER.MIDDLE_INITIAL as MIDDLE_INITIAL,
         PR_LETTER_MASTER.LAST_NAME as LAST_NAME,
         PR_LETTER_MASTER.ADDRESS_LINE1 as ADDRESS_LINE1,
         PR_LETTER_MASTER.ADDRESS_LINE2 as ADDRESS_LINE2,
         PR_LETTER_MASTER.ADDRESS_LINE3 as ADDRESS_LINE3,
         PR_LETTER_MASTER.CITY as CITY,
         PR_LETTER_MASTER.STATE as STATE,
         PR_LETTER_MASTER.ZIP as ZIP,
         PR_LETTER_MASTER.ZIP_PLUS as ZIP_PLUS,
         PR_LETTER_MASTER.DELIVERY_EMAIL_ID as DELIVERY_EMAIL_ID,
         PR_LETTER_MASTER.SIGNATURE_TYPE as SIGNATURE_TYPE,
         PR_LETTER_MASTER.SIGNATURE_NAME as SIGNATURE_NAME,
         PR_LETTER_MASTER.TEAM_CAPT_MEMBER_NUMBER as TEAM_CAPT_MEMBER_NUMBER,
         PR_LETTER_MASTER.SIGNATURE_PHONE_NUMBER as SIGNATURE_PHONE_NUMBER,
         PR_LETTER_MASTER.LAST_LETTER_SENT_DATE1 as LAST_LETTER_SENT_DATE1,
         PR_LETTER_MASTER.LAST_LETTER_SENT_DATE2 as LAST_LETTER_SENT_DATE2,
         PR_LETTER_MASTER.LAST_LETTER_SENT_DATE3 as LAST_LETTER_SENT_DATE3,
        to_char(PR_LETTER_MASTER.EXIT_CONFERENCE_DATE,'FMMonth DD, RRRR') as EXIT_CONFERENCE_DATE,
         PR_LETTER_MASTER.REVIEW_TAX_SEASON as REVIEW_TAX_SEASON,
             PR_LETTER_MASTER.STATE_SOCIETY_NUM as STATE_SOCIETY_NUM,
             PR_LETTER_MASTER.STATE_SOCIETY_NAME as STATE_SOCIETY_NAME,
         PR_LETTER_MASTER.SECONDARY_LETTER_SEQUENCE as SECONDARY_LETTER_SEQUENCE,
         PR_LETTER_MASTER.CREATION_DATE as CREATION_DATE,
         PR_LETTER_MASTER.STATE_CODE as STATE_CODE ,
             PR_LETTER_MASTER.DELIVERY_EMAIL_ID as DELIVERY_EMAIL_ID,
             PR_LETTER_MASTER.TEAM_CAPT_FIRST_NAME as TEAM_CAPT_FIRST_NAME,
             PR_LETTER_MASTER.TEAM_CAPT_LAST_NAME as TEAM_CAPT_LAST_NAME,
             to_char(PR_LETTER_MASTER.DT_RAB_PRESENTATION,'FMMonth DD, RRRR') as DT_RAB_PRESENTATION,
             PR_LETTER_MASTER.RAB_DESCRIPTION as RAB_DESCRIPTION ,
             PR_LETTER_MASTER.TEAM_CAPT_MIDDLE_INITIAL as TEAM_CAPT_MIDDLE_INITIAL,
    pr_letter_master.salutation as Salutation
    from      PRISM.PR_LETTER_MASTER PR_LETTER_MASTER
    where secondary_letter_sequence in (:secondary_sequence)]]>
                             </sqlStatement>
                             <sqlStatement name="Q2">
                                  <![CDATA[select followup_description from pr_letter_details where secondary_letter_sequence = :SECONDARY_LETTER_SEQUENCE]]>
                             </sqlStatement>
                        </dataQuery>
                        <dataStructure>
                             <group name="letter1" source="Q1">
                                  <element name="LETTER_DATE" value="LETTER_DATE"/>
                                  <element name="FIRST_NAME" value="FIRST_NAME"/>
                                  <element name="MIDDLE_INITIAL" value="MIDDLE_INITIAL"/>
                                  <element name="LAST_NAME" value="LAST_NAME"/>
                                  <element name="ADDRESS_LINE1" value="ADDRESS_LINE1"/>
                                  <element name="ADDRESS_LINE2" value="ADDRESS_LINE2"/>
                                  <element name="ADDRESS_LINE3" value="ADDRESS_LINE3"/>
                                  <element name="CITY" value="CITY"/>
                                  <element name="STATE" value="STATE"/>
                                  <element name="ZIP" value="ZIP"/>
                                  <element name="ZIP_PLUS" value="ZIP_PLUS"/>
                                  <element name="SALUTATION" value="SALUTATION"/>
                                  <element name="REVIEW_TYPE" value="REVIEW_TYPE"/>
                                  <element name="DT_RAB_PRESENTATION" value="DT_RAB_PRESENTATION"/>
                                  <element name="RAB_DESCRIPTION" value="RAB_DESCRIPTION"/>
                                  <element name="SIGNATURE_NAME" value="SIGNATURE_NAME"/>
                                  <element name="SIGNATURE_PHONE_NUMBER" value="SIGNATURE_PHONE_NUMBER"/>
                                  <element name="SIGNATURE_TITLE" value="SIGNATURE_TITLE"/>
                                  <element name="SIGNATURE_EMAIL_ID" value="SIGNATURE_EMAIL_ID"/>
                                  <element name="TEAM_CAPT_MIDDLE_INITIAL" value="TEAM_CAPT_MIDDLE_INITIAL"/>
                                  <element name="TEAM_CAPT_FIRST_NAME" value="TEAM_CAPT_FIRST_NAME"/>
                                  <element name="TEAM_CAPT_LAST_NAME" value="TEAM_CAPT_LAST_NAME"/>
                                  <element name="REVIEWED_FIRM_NUMBER" value="REVIEWED_FIRM_NUMBER"/>
                                  <element name="REVIEWED_FIRM_NAME" value="REVIEWED_FIRM_NAME"/>
                                  <element name="REVIEW_NUMBER" value="REVIEW_NUMBER"/>
                                  <element name="LETTER_ID" value="LETTER_ID"/>
                                  <group name="Detail" source="Q2">
                                       <element name="followup_description" value="followup_description"/>
                                  </group>
                             </group>
                        </dataStructure>
                   </dataTemplate>

  • JSP/JBO multiple Selection problem

    I am user the BC4J JBO InputSelectGroup object to insert what I was hoping multiple selection values into a field. It will only insert one value. What am I doing wrong?

    Hi,
    I am not sure if this is similar to the problem i faced, where I was not able to close the variable selection screen after making use of the variant button.
    I solved this by applying the latest BI 7.0 addon patch.
    Hope this helps you solve your problem.
    Regards,
    Gaurav
    Edited by: Gaurav Kothari on Aug 21, 2009 3:10 PM

  • Flash CS4 - Sound Delay problem

    I wrote an educational tool with Flash CS3 that is using a
    lot of sounds. Some are streamed and some are preloaded. To control
    all the sound procedures, I am using the SoundFacade class provided
    in the samples files of CS3 and that I slightly adapted to my
    needs.
    Since I converted my application to CS4 and Flash Player 10 I
    noticed after a few minutes running the application (either as a
    stand alone or with a browser), that the sounds start playing after
    a delay, even when preloaded. I did not have this problem with the
    previous version.
    I have some actions synchronized with the sound and that are
    triggered either with the “onLoadOpen” function when
    streaming sound or with the “onLoadComplete” when
    preloading… Now that I am running on Player v10, the delay is
    messing it up!
    Is this a bug with Flash Player 10?

    By the why, I'm using Flash CS4 and tested it in Flash 10 in Firefox, IE, not working.
    I also tested in Flash CS3, tested in IE, Firefox, not working.

  • Multiple Selection problem

    Hello experts,
    I´ve got a query with a variable with a multiple selection. I want to add a list of numbers to that multiple selection. I copy that list into the windows clipboard and then add it to the multiple selection. After that the window doesn´t close when I click on "ok".
    If you want to test it: You´ll always get that failure when you add a list into a multiple selection, then delete everything (click recycle bin) and add it again. After that, you can´t close the window of the multiple selection and strange things happen.
    Can anybode help me, I can´t find any OSS-Note for that problem...
    Thanks in advance

    Hi,
    I am not sure if this is similar to the problem i faced, where I was not able to close the variable selection screen after making use of the variant button.
    I solved this by applying the latest BI 7.0 addon patch.
    Hope this helps you solve your problem.
    Regards,
    Gaurav
    Edited by: Gaurav Kothari on Aug 21, 2009 3:10 PM

  • RE: HR ABAP Multiple selection problem on input selection-screen

    hi friends,
    I AM Facing one problem in HR abap report  selection-screen , in my report  employee details data getting based on payroll area
    of selection-screen. Here iam  SELECTION-SCREEN  declarations made in program level NOT created REPORT CATEGORY FOR
    PNP LDB.
    ACTUAL MY PROBLEM IS IF I SELECT SINGLE PAYROLL AREA IN SELECTION-SCREEN IT GETTING DATA PERFECTLY FOR THAT
    PAYROLL AREA  
    EX. ZA - PAYROLL AREA IF I SELECT IN SELECTION SCREEN IT FETCHING THAT PAYROLL  AREA DATA PERFECTLY, PROBLEM
    IS IF I SELECT MULTIPLE PAYROLL AREAS IN SELECTION-SCREEN PAYROLL AREA FIELD  ZA AND ZB PAYROLLS IT FETCHING
    ONLY ZA -PAYROLL DATA ONLY IT IS NOT FETCHING DATA FROM ZB PAYROLL AREA.MY REQUIREMENT IS IT SHOULD FETCH
    BOTH PAYROLL DATA  AND SHOWING  .
    HERE  IAM GIVING MY SELECTION SCREEN DECLARATION SYNTAX.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:
                    S_ABKRS FOR P0001-ABKRS NO INTERVALS," NO-EXTENSION,     " PAY ROLL AREA
                    S_PERSA FOR P0001-WERKS NO INTERVALS," NO-EXTENSION,     " PERS.AREA
    SELECTION-SCREEN END OF BLOCK B2 .
    PLEASE Any body knows solution for this selection give me reply.
    regards,
    gopal

    If you are using Logical DB PNP why are you coding Selection Fields for ABKRS and WERKS?   Both of these fields are defined in the PNP Selection Screen and if you use those fields then SAP will handle filtering the data.

  • Adobe Flash CS4: Bone Tool Problems.

    OK, so let's say I make a leg. The leg is composed of three
    separate parts, the thigh, lower leg, and foot/shoe. If I try to
    use the bone tool, which I find easier to animate with this kind of
    stuff, it almost works, except for ONE problem... The "Bone" I
    click and drag doesn't allow me to ANYWHERE past the symbol/object
    I'm already in.
    Let's say I'm connecting the Thigh to the Knee area in the
    leg example. If I try to drag the bone cursor anywhere outside the
    thigh and into the lower Leg, the Bone Tool indicates I can't do
    that with a Circle and a Line through it.
    If I TRY to let go where I want, despite what the Bone Tool
    tells me, the Stage turns gray, except for the object I was trying
    to drag the bone into, and I receive this "prompt" from the Output
    tab:
    Plugin tool script error in method mouseDown
    If someone could please help me fix this, that would be
    AWESOME. Thanks!

    Still no solutions to this? I stopped getting the error
    message after installing all current software updates, but the tool
    still doesn't work on multiple shapes. Symbols work fine -- just
    not multiple shapes.

  • Flash CS4 unable to launch

    hi... I've installed flash CS4 without any problem. When I
    try to enter it, the program does'nt launch. I have an Acer Aspire
    with Windows Vista.
    Thank you. Sorry for my english.

    I am having the same problem. All my apps in CS4 Desing Premium install and work just fine. Only Flash CS4 is giving me headaches. Hours on the phone with Adombe tech support have failed to resolve the issue. Last left at "reinstall Vista 64 and reinstall CS4 Design Premium." Doing so requires 2 to 2.5 days for the installations and upgrades, and, there's no guarantee it will work.
    Does anyone have a solution? Adobe? Class?

  • ? Flash CS4, Is it possible to adjust the length of multiple timelines at once?

    Hi,
    I am using Flash CS4. Is there any way to adjust the length of multiple timelines at once? I am doing an animation of leaves falling from a tree. The leaves alone have 17 separate timelines on separate layers plus each has it's own guide layer.
    If I had the ability to to select all of the timelines together and adjust all of their respective start and end times at the same same time, relative to each other as well as separately, life would be so much easier!
    Of course I can do it timeline by timeline, no problem, but I can't seem to adjust the length of more than one timeline at a time. (no pun intended)
    Even when I select more than one timeline, the double arrow only adjusts the length of one timeline. Even each guide layer's length has to be adjusted separately. I understand the benefit of this, but, testing timing and making adjustments would be so much simpler and go so much faster if I could select and drag multiple timeline lengths at the same time.
    Is there any way to do this?
    I'm new to Flash so, thanks in advance for your patience with me!
    SabelV

    Thanks! I had a feeling. It's nice to have the answer. Oh well, now I can get back to work and not waste any more time with that part of the puzzle. You've been very helpful and I'm sure your answer is correct.  Wish I knew how to rate your answer even higher. Thanks again!

  • Problem with motion tweening in Flash CS4

    Hi !
    I tried to refresh my little flash knowledge -- but I stumbled upon a problem with the new Flash CS4!
    When I try to make different blur or alpha effect on one keyframe I got after making the motion tween -- Flash adjust the other keyframe as well (got the same reaction on both keyframes as if it was the same instance of movie clip -- and not as in old flash; the keyframes created separated or independent instances)
    The only thing working for me is when I move the movie clip out of the stage on the first keyframe -- and it correctly move its position.
    What's wrong?
    Kind Regards
    Maria Olsen

    Hello Maria,
    You sort of answered your own question:)
    "got the same reaction on both keyframes as if it was the same instance of movie clip"
    That is exactly right and is the proper way of looking at new motion tweens. It is one instance of the movieclip for the duration of the tween. It takes awhile to get used to this.
    New motion tweens allow you to set up a a very simple tween initially without keyframing ending values / position. Once you start making changes after the tween is set, you are going to have to get familiar with adding "property keyframes". Property keyframes are displayed with those little diamond icons in the timeline. Poperty keyframes allow you to "lock in" certain specific properties at key points in your animation without affecting other properties. With the old classic keyframes, a keyframe placed mid-tween would create a whole new instance of a symbol with all properties (rotation, scale, alpha etc) set in stone for that point in time. The benefit was that you could easily have all properties tween TO and FROM that keyframe if that's what you wanted. Now you can make adjustments to a symbol mid-tween and only specifically adjust a single property. So you can adjust the alpha of an object mid-tween without interrupting say a rotation that you wanted to happen all the way through.
    If you simply want an object to move left to right and then you decide it should fade in
    CLASSIC TWEEN
    -place symbol on frame 1
    -keyframe frame 10
    -in frame 10 move the symbol to the right
    -add classice tween
    Ok, that works, now add alpha fade in
    -go back to frame 1 and set alpha to 0
    -classice tween automatically adjusts alpha from 0 in frame 1 to 100 in frame 10.
    -done
    MOTION TWEEN
    -place symbol on stage
    -create motion tween
    -playhead jumps to last frame
    -move symbol to the right (no need to f6 / keyframe)
         Flash automatically adds something called a "position" keyframe (notice the little black diamond)
    Ok, that works, now add alpha fade in
    -go to frame 1 and set alpha to 0
    -test movie
    -oops - wrong. As you noted the alpha will stay at 0 throughout the whole tween.
    -you need to additionally go to the last frame and set the alpha back to 100
         -this will automtically create a "color" property keyframe on the last frame
    When just doing this now I noticed something odd as well
    As soon as I do the position change and move the symbol to the right, if I try to add the "color keyframe" on the last frame of the tween, I am not allowed to do so. "color" and "filter" are greyed out. I would prefer to lock the alpha at 100 in the last frame while the playhead is in position before setting it down to 0 in frame 1. Oh well.
    Seems you are forced to
    -go back to the beginning of the tween
    -adjust the alpha
    -then go to the end and manually bring the alpha back up.
    hmm maybe i'm missing something too:)
    the best way to do this would be to have the foresight ahead of time to do the alpha
    -place the symbol
    -alpha 0
    -add motion tween
    -in last frame move the symbol  set alpha to 100 (alpha and position keyframes are automatically set)
    So if you do it right the first time, its easy. If not, well.
    Keep in mind an object will maintain the properties it has set in frame 1 unless a subsequent property keyframe enforces some adjustment.
    If you have have an object that is moving from point a to b to c to d:
    If you alter the alpha at point b, the alpha will tween from point a to b, but will maintain the new alpha to c, to d.
    If you scale the clip by 200% at point, its scale will tween from point a all the way to point d, NOT just from c to d
    To scale from point c to d only, set a "scale" property keyframe at point c (this will lock the objects scale at 100) THEN scale to 200% at point d
    It takes a good deal of practice. I found the hard way that you just can't "wing" it. It isn't very intuitive coming from a classic tween approach.
    These articles really helped me:
    http://www.adobe.com/devnet/flash/articles/motion_migration_guide.html
    http://www.adobe.com/devnet/flash/learning_guide/animation/
    Take note of the tips on "cntr-clicking" frames and "shift-dragging". You have to really get used to a few keyboard modifiers when editing the timeline.
    Stick around the forums. A lot of good info comes through daily.
    Carl

  • Problems exporting a movie in Flash CS4

    I'm trying to export a fla file to a mov file in Flash CS4.
    My fla file is 152 mb. It is a 5 minute presentation I created with a 39 second f4v file (video clip) in the file.
    I go to Export / Export Movie. I select Quicktime (mov). I keep the default settings and it starts to cycle through. It gets about half way and I get a message "The export operation failed because it ran out of memory"
    I'm running this on a Mac Pro, System 10.5.8. I have 4 GB of memory. My HD is 232 GB with 155 GB available.
    What is the problem and how can I get this to work?

    Well, for some reason, I've managed to be okay with the idea that all software relying on links is prone to crushing at any given moment during execution of a project, Yes this includes After effects, Illustrator, Indesign_name it. However, one thing I cannot understand or even come to terms with the idea that Flash CS4 cannot export a project of 162mb. My library is organised, My scenes are in perfect order,  I do not even use 3rd party componets in my projects..... but for some reason, I cannot export let alone publish an application file from FLASH CS4.
    My first thought was maybe some thing was wrong with the "flash.ocx" extension, so I took a walk and visited the Adobe site to get an update, but still after re-installing it nothing seems to put a smile on my face_( I've spent sleepless nights on this animation and all I need is to just export/ publish it, however flash exports it halfway and out of a blue the export dialog and the incomplete file vanish) Some times I  even wonder wether there is a vortex on my desktop.
    Another problem in this category am finding is with flash player in my browsers, if it runs in exlporer, then it won't run in firefox, and when I check in the control panel after installing on both browsers, I am so suprised to find 4plugins of flash player, which is not the case with my friends laptops which use 1plugin and an activeX control for the web browsers.
    Any help is very welcome, Am using Dell studio-xps Laptop running a 64bit  Windows Vista OS, 4bg Ram, 1 Terabyte HDD and yes Intel Graphics media card with dedicated memory of 1gb. (Of what use are they if I cannot export a small file of 162mb, am even ashamed to mention it, heeeeeelp  )

  • Flash CS4 Text Layout Component Problem

    Hi,
    We are trying to use multiple instances (around 25) of Flash
    CS4 Text Layout Component in one file to display arabic text. It
    works fine for some random number of instances. However, it gives
    problem if that number increases (The text doesnt show).
    Any help will be highly appreciated.
    Thanks!

    If you're referring to this:
    http://labs.adobe.com/technologies/textlayout/
    Then that's still in beta and you should take your discussion
    to the beta forum on that link.

  • Flash CS4 - Problem choosing colors

    In Flash CS4, if I try to change a color, such as text, using either my toolbox or  properties window the little eyedropper does not choose the color correctly.  It  doesn't seem to correlate the mouse position with the color it is over.   However, I can change the color just fine by going to the menu: Window  > Color and and using that.  I am on a PC using Vista.
    Any ideas on what is causing this and how to fix this?

    If you first select the Text and then select the EyeDropper Tool from the Tool box, The EyeDropper Tool only picks up color that are within the Stage. However, if you select the Text, go to the properties window and the click the Color, an EyeDropper will come up and you can select color from anywhere within Flash.
    But I think your question is best answer on this forum: http://forums.adobe.com/community/flash/flash_general

Maybe you are looking for