New method of tweening in CS4

Hi,
How do you remove the frames that appear after your last
keyframe in a tween? They are all highlighted in blue in CS4, and
there seems to be no way to select them so that I may remove.
Thanks!

r_tist,
> How do you remove the frames that appear after your last
> keyframe in a tween?
You can start from beyond the right edge of your tween,
click, and then
drag to the left to select as many end frames as you like.
Once you have
your selection, right-click > Remove Frames.
> They are all highlighted in blue in CS4, and there seems
to
> be no way to select them so that I may remove.
To select individual frames (one at a time) between
keyframes -- that
is, between the first keyframe (circle) and any property
keyframes (smaller
diamonds) -- hold down Ctrl, then click whatever frame you
like. Again,
once you have your selection, right-blick > Remove Frames
to remove that
frame.
David Stiller
Co-author, Foundation Flash CS4 for Designers
http://tinyurl.com/5j55cv
"Luck is the residue of good design."

Similar Messages

  • How to do a simple Tween in CS4?

    I am having trouble doing a motion tween in CS4.  I am just starting to use CS4 again after a little hiatus, I know I was able to do a motion tween like I did when I was using CS3 but I can not find how to do it again.  I would greatly appreciate it if someone could remind me of how to do this.
    Thanks for your help

    And for information on how the new motion system works, compared to CS3 and earlier, see http://www.adobe.com/devnet/flash/articles/motion_migration_guide.html. For full info on the new motion tweens in CS4, see http://www.adobe.com/devnet/flash/learning_guide/animation/.

  • Error while adding a new method to the Session Bean

    Hello everyone. I'm using jdev 11g, ejb, jpa & jsf. Everything works fine. But when I try to add a custom method to the Session Bean, I'm having an error.
    Here is my steps:
    1) I added a new method to SessionBean.java. Something like this:
    public void Hello() {
    System.out.println("Hello!");
    2) Then using Structure palette I exposed this method through Local interface and created data control
    3) Finally, I made a command button binded to this method (just droped it from DataControls.dcx to my page)
    When I start the page and click the button, I'm having the following error:
    Error 500--Internal Server Error
    javax.faces.el.EvaluationException: Method not found: Hello.execute(javax.faces.event.ActionEvent)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1227)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:70)
    ... (I've truncated the log because there is nothing important in the missing part)

    Yes, I have binding in the page def. Everything is correct there:
    <methodAction id="Hello" RequiresUpdateModel="true" Action="invokeMethod"
    MethodName="Hello" IsViewObjectMethod="false"
    DataControl="PriceServiceLocal"
    InstanceName="PriceServiceLocal.dataProvider"/>
    I've droped the method from the Data Controls panel

  • Creating a new method in an enhanced component class implemetation

    Hello Experts,
    I am trying to create a new method in the enhanced component(BT115IT_SLSO) implementation class ( ZL_BT115IT__ITEMS_IMPL)to run our custom functionality. But somehow when I put a breakpoint and debug while I add a product to the sales order the method doesnt get trigerred.
    Is there some thing which I have to do  get this trigerred ? I just added a ned method and placed some custom code in it. Do I have to invoke it anywhere ?
    Pls help me out. I am new to Web UI.
    Thanks

    Hi Mavrick,
    As you are performing some action like item addition , there you need a method called as " event handler " to handle the event and perform the required actions.
    Place a break point in DO_HANDLE_EVENT method , and you will know the exact event handler method which is getting triggered . or if you are defining a new event ( by adding any new button) you should create a event handler method using wizard giving the same name which is defined on_click field of the button as it is case sensitive.
    Regards,
    Nithish

  • Why can I no longer, after having downloaded Lion, write accents and other diacriticals when in the Google, Yahoo, FaceBook, or even here in this post? The new method for getting at the "option" symbols works fine in other places like spotlight, but now e

    Why can I no longer, after having downloaded Lion, write accents and other diacriticals when in the Google, Yahoo, FaceBook, or even here in this post? The new method for getting at the "option" symbols works fine in other places like spotlight, but now even the older "option+letter" doesn't work in most places.

    Chrome doesn't support the new accent/diacritics/macron chooser. I'm not sure about other browsers such as Firefox. You can use the old Option+letter combination that Doug suggested. Hopefully updates will solve these little incompatibilities shortly.
    Neill

  • Creating New Method

    Hi,
    I am creating a new method METHOD2 in an existing class.
    I am using an internal table which is populated in other method METHOD1.
    But when I tried to call the METHOD2 in main program,it is saying that METHOD2 is not defined.while I have activated the method.
    it is to be noted that I have not given any exporting,importing,changing parameter to this method.Do I need to give it compulsarily>if yes,then can I give the internal table as changing parameter,the one which is being populated in METHOD1.?
    Thanks in advance!!

    Hi ,
    Here is a sample code that accesses an internal table in a method to display the list of employees
    Super class LCL_CompanyEmployees
    CLASS lcl_company_employees DEFINITION.
      PUBLIC SECTION.
        TYPES:
          BEGIN OF t_employee,
            no  TYPE i,
            name TYPE string,
            wage TYPE i,
         END OF t_employee.
        METHODS:
          constructor,
          add_employee
            IMPORTING im_no   TYPE i
                      im_name TYPE string
                      im_wage TYPE i,
          display_employee_list,
          display_no_of_employees.
      PRIVATE SECTION.
        CLASS-DATA: i_employee_list TYPE TABLE OF t_employee,
                    no_of_employees TYPE i.
    ENDCLASS.
    *-- CLASS LCL_CompanyEmployees IMPLEMENTATION
    CLASS lcl_company_employees IMPLEMENTATION.
      METHOD constructor.
        no_of_employees = no_of_employees + 1.
      ENDMETHOD.
      METHOD add_employee.
      Adds a new employee to the list of employees
        DATA: l_employee TYPE t_employee.
        l_employee-no = im_no.
        l_employee-name = im_name.
        l_employee-wage = im_wage.
        APPEND l_employee TO i_employee_list.
      ENDMETHOD.
      METHOD display_employee_list.
      Displays all employees and there wage
        DATA: l_employee TYPE t_employee.
        WRITE: / 'List of Employees'.
        LOOP AT i_employee_list INTO l_employee.
          WRITE: / l_employee-no, l_employee-name, l_employee-wage.
        ENDLOOP.
      ENDMETHOD.
      METHOD display_no_of_employees.
      Displays total number of employees
        SKIP 3.
        WRITE: / 'Total number of employees:', no_of_employees.
      ENDMETHOD.
    ENDCLASS.
    Sub class LCL_BlueCollar_Employee
    CLASS lcl_bluecollar_employee DEFINITION
              INHERITING FROM lcl_company_employees.
      PUBLIC SECTION.
        METHODS:
            constructor
              IMPORTING im_no             TYPE i
                        im_name           TYPE string
                        im_hours          TYPE i
                        im_hourly_payment TYPE i,
             add_employee REDEFINITION.
      PRIVATE SECTION.
        DATA:no             TYPE i,
             name           TYPE string,
             hours          TYPE i,
             hourly_payment TYPE i.
    ENDCLASS.
    *---- CLASS LCL_BlueCollar_Employee IMPLEMENTATION
    CLASS lcl_bluecollar_employee IMPLEMENTATION.
      METHOD constructor.
      The superclass constructor method must be called from the subclass
      constructor method
        CALL METHOD super->constructor.
        no = im_no.
        name = im_name.
        hours = im_hours.
        hourly_payment = im_hourly_payment.
      ENDMETHOD.
      METHOD add_employee.
      Calculate wage an call the superclass method add_employee to add
      the employee to the employee list
        DATA: l_wage TYPE i.
        l_wage = hours * hourly_payment.
        CALL METHOD super->add_employee
          EXPORTING im_no = no
                    im_name = name
                    im_wage = l_wage.
      ENDMETHOD.
    ENDCLASS.
    Sub class LCL_WhiteCollar_Employee
    CLASS lcl_whitecollar_employee DEFINITION
        INHERITING FROM lcl_company_employees.
      PUBLIC SECTION.
        METHODS:
            constructor
              IMPORTING im_no                 TYPE i
                        im_name               TYPE string
                        im_monthly_salary     TYPE i
                        im_monthly_deducations TYPE i,
             add_employee REDEFINITION.
      PRIVATE SECTION.
        DATA:
          no                    TYPE i,
          name                  TYPE string,
          monthly_salary        TYPE i,
          monthly_deducations    TYPE i.
    ENDCLASS.
    *---- CLASS LCL_WhiteCollar_Employee IMPLEMENTATION
    CLASS lcl_whitecollar_employee IMPLEMENTATION.
      METHOD constructor.
      The superclass constructor method must be called from the subclass
      constructor method
        CALL METHOD super->constructor.
        no = im_no.
        name = im_name.
        monthly_salary = im_monthly_salary.
        monthly_deducations = im_monthly_deducations.
      ENDMETHOD.
      METHOD add_employee.
      Calculate wage an call the superclass method add_employee to add
      the employee to the employee list
        DATA: l_wage TYPE i.
        l_wage = monthly_salary - monthly_deducations.
        CALL METHOD super->add_employee
          EXPORTING im_no = no
                    im_name = name
                    im_wage = l_wage.
      ENDMETHOD.
    ENDCLASS.
    R E P O R T
    DATA:
    Object references
      o_bluecollar_employee1  TYPE REF TO lcl_bluecollar_employee,
      o_whitecollar_employee1 TYPE REF TO lcl_whitecollar_employee.
    START-OF-SELECTION.
    Create bluecollar employee obeject
      CREATE OBJECT o_bluecollar_employee1
          EXPORTING im_no  = 1
                    im_name  = 'Gylle Karen'
                    im_hours = 38
                    im_hourly_payment = 75.
    Add bluecollar employee to employee list
      CALL METHOD o_bluecollar_employee1->add_employee
          EXPORTING im_no  = 1
                    im_name  = 'Gylle Karen'
                    im_wage = 0.
    Create whitecollar employee obeject
      CREATE OBJECT o_whitecollar_employee1
          EXPORTING im_no  = 2
                    im_name  = 'John Dickens'
                    im_monthly_salary = 10000
                    im_monthly_deducations = 2500.
    Add bluecollar employee to employee list
      CALL METHOD o_whitecollar_employee1->add_employee
          EXPORTING im_no  = 1
                    im_name  = 'Karen Johnson'
                    im_wage = 0.
    Display employee list and number of employees. Note that the result
    will be the same when called from o_whitecollar_employee1 or
    o_bluecolarcollar_employee1, because the methods are defined
    as static (CLASS-METHODS)
      CALL METHOD o_whitecollar_employee1->display_employee_list.
      CALL METHOD o_whitecollar_employee1->display_no_of_employees.

  • To change the string in Class Builder "New Method"

    HI friends,
    Im using the std program of "RFDOPR10"...(changed into my customised program as ZRFDOPR10).....
    Here i want to change the strings of Id_type eq 4 availble under the class builder "New Method".
    "id_ruler_string = '2.13.24.29|43|58|73|88|103|118|'" (for 24...i want to give 38.....then 45...)
    Pls help me how to change the std method function  for my z program...
    FYR:
    RFDOPR10 is the std program for tcode :"s_alr_87012178", Customer analysis.If u want to c the example report, in this tcode...give OI:1, Summ level:6, OI list:1 and Company CD:2 under Output control tab in selection screen with Company code.Now, u able to see the reports in the screen.There, after Customer number....I've to give some more spaces(length) for Sort field.
    Thanks & regards
    Sankar.

    No, but I suggest using a different editor which does allow a different text option and just pasting it in.

  • Tochange the string in Std Class Builder "New Method"

    HI freinds,
    Im using the std program of "RFDOPR10"...(changed into my customised program as ZRFDOPR10).....
    Here i want to change the strings of Id_type eq 4 availble under the class builder "New Method".
    "id_ruler_string = '2.13.24.29|43|58|73|88|103|118|'" (for 24...i want to give 38.....then 45...)
    Pls help me how to change the std method function  for my z program...
    FYR:
    RFDOPR10 is the std program for tcode :"s_alr_87012178", Customer analysis.If u want to c the example report, in this tcode...give OI:1, Summ level:6, OI list:1 and Company CD:2 under Output control tab in selection screen with Company code.Now, u able to see the reports in the screen.There, after Customer number....I've to give some more spaces(length) for Sort field.
    Thanks & regards
    Sankar.

    Associated with the text box there will be some kind of event handler. Maybe it's an action event on the text box (when the user clicks return) or maybe you have a separate button that the user clicks.
    Either way, in the event handler, get the text from the text box, and then call the sendData method, passing the text as an argument.

  • Bought a new Mac, migrated data, now CS4 doesn't work. Why?

    I bought a new Mac, had the Apple guys migrate my data and apps to it. Now CS4 doesn't work.
    I researched a bit and found that I SHOULD have deactivated and uninstalled CS4 from my old Mac. I've now done that.
    But do I have to uninstall CS4 files from my new Mac now--and reinstall? Will that work?

    Hi,
    I have a question related to one you answered above: "bought a new Mac, migrated data, now CS4 doesn't work."
    My situation is a little different. I am hoping you can help me with it. I hope I am not violating any protocols by asking you specifically?  A year ago I reinstalled my Mac's operating system. My CS4 is on my computer under "Previous System." I am unable to open it from there and I do not want to attempt migrating it for reasons noted above. I did try to reinstall it as you suggested to hbrady67 by dowloading from CS4 products with my serial number but I got this message: "Upgrade Check  We looked in the default location for qualifying products installed on the machine, but none were found. You may verify upgrade eligibility now by completing the fields to the right. 1) Select a product you already own. 2) Enter a serial number for this product.  CS4 wasn't in the list of selections. The protocol suggested won't work for me since I am not doing an upgrade but trying to reinstall what I already have. Can you direct me on where to go/what to do?  Thank you very much.      Bergi.
    I found the solution to this problem. I was able to download the trial version of what I have and enter the serial number from there. However, it still asked for a serial number from previous software: "your setup is for an upgrade version of Adobe Creative Suite 4." (I entered the serial number that I have for CS2. And it was accepted.  Thank you.  Bergi

  • Using new methods (getContentHandler and parse(InputSource)

    I am trying to read an xml file then count how many books from the xml file. I learned some methods are deprecated, so I tried to use the new methods. But, I somehow can't get the program work. I am stack on the getContentHandler and parse(InputSource) line ... :( Help!!!
    I changed: setDocumentHandler to getContentHandler
    HandlerBase to DefaultHandler
    parse to parse(InputSource)
    Kindly take a look at my program see if I missed out something? Thank you very much for your time.
    My code:
    =============
    * Write a description of class hello here.
    * @author (your name)
    * @version (a version number or a date)
    import java.io.*;
    import java.net.*;
    import java.lang.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.DefaultHandler;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.InputSource;
    import javax.xml.parsers.SAXParserFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    public class BookCounter extends DefaultHandler
    private int count = 0;
    public static void main (String args[]) throws Exception
    (new BookCounter()).countBooks();
    public void countBooks() throws Exception
    SAXParserFactory f = SAXParserFactory.newInstance();
    SAXParser f2 = f.newSAXParser();
    // Here said "cannot resolve symbol - method getContentHandler (BookCounter)
    f2.getContentHandler(this);
    // Here said "cannot resolve symbol - method parse(java.lang.String)
    f2.parse("file:///C:/books.xml");
    public void startElement(String name, Attributes atts) throws SAXException
    if (name.equals("book"))
    count++;
    public void endDocument() throws SAXException
    System.out.println("There are" + count + "books");

    // Here said "cannot resolve symbol - method getContentHandler (BookCounter)
    f2.getContentHandler(this);
    should be
    f2.setContentHandler(this);

  • Re: new method to gather statistics in 11gr2

    {quot}
    thanks all
    {quot}

    Harsh_v wrote:
    {quot}
    thanks all
    {quot}
    And your question is since dbms_stats is not a new method AFAIK ?
    Aman....

  • I purchased a new mac and i installed CS4 Design Standard, it installed but won't open

    I purchased a new mac and i installed CS4 Design Standard, it installed but won't open

    You're welcome! Glad it worked!
    Benjamin
    P.S. Be sure to mark the solving answer correct (Java update) to mark the issue resolved and help other user's find solutions to similar problems.

  • New method in workflow

    Hi ,
    I was going through some of the previous posts and none did seem to answer my question completely.
    SO was wondering if someone can help me, I have created a new method, this methods collect values from a field of container and set another variable of container.
    DO i need to add import or export parameters for this method sumwer ?
    The task generation in workflow builder is done by someone else and the binding will also be taken care by them, I was wondering where I have to define what elements I am expecting and what values I will be returning ?
    thanks,
    RS

    Hi Reena,
    You should maintain what are import and export parameters of that method..
    So while defining the method maintain them... So that everything goes fine as desired..
    If you are using a Function module to declare a method of Business object then there is no necessary of
    maintaining Import and Export as they will be maintained in Function module..
    Hope this would solve your issue.
    Please revert back if any queries
    Good luck
    Narin

  • Enhanced SAP class with new methods - Not showing these from standard task

    Dear Gurus,
    I have enhanced SAP standard class with new methods. After I have activated my new methods and would like to create a workflow task using these new methods. when I create a task and input object category as "ABAP Class" and object type is SAP enhanced class. When I try to drop down for methods SAP is not showing my new methods. I do not know why. Am I missing any? Any help would be appreciated.
    Note: Remember I am trying to use SAP ABAP class custom methods.
    Thanks,
    GSM

    Hi,
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Kind regards,
    Siobhan

  • Can you please tell mejdk 1.6 has new method getHardwareAddress()

    can you please tell mejdk 1.6 has new method getHardwareAddress() i write this code in jdeveloper 10.1.3 and occure an error ( this method not found in NetworkInterface ) and jdeveloper highlight it with redline. i just uninstall jdk1.5 and then install jdk1.6u2 then still this error .
    pleaze help me what can i do .
    try {       
    InetAddress address = InetAddress.getLocalHost();
    NetworkInterface ni = NetworkInterface.getByInetAddress(address);
    byte[] mac = ni.getHardwareAddress();
    for (int i = 0; i < mac.length; i++) {             
    System.out.format("%02X%s", mac, (i < mac.length - 1) ? "-" : "");
    System.out.print("GetDisplayName ="+ni.getDisplayName());
    System.out.print("Ni.toString ="+ni.toString());
    System.out.print("Network interfaces ="+address.getHostName());
    } catch (UnknownHostException e) {        
    e.printStackTrace();
    } catch (SocketException e) {        
    e.printStackTrace();

    Hello Sir
    actually i am new to java.
    currently i am using jdeveloper 10.1.3 and jboss in window. i want to get the macAddress through java api NetworkInterface it has getHardwareAddress method in jdk 1.6 but it does not work in jdeveloper pleaze tell me the solution what can i do it is working fine.
    try {       
    InetAddress address = InetAddress.getLocalHost();
    NetworkInterface ni = NetworkInterface.getByInetAddress(address);
    // here is error jedeveloper underline with redline getHardwareAddress()
    byte[] mac = ni.getHardwareAddress();
    for (int i = 0; i < mac.length; i++) {             
    System.out.format("%02X%s", mac, (i < mac.length - 1) ? "-" : "");
    System.out.print("GetDisplayName ="+ni.getDisplayName());
    System.out.print("Ni.toString ="+ni.toString());
    System.out.print("Network interfaces ="+address.getHostName());
    } catch (UnknownHostException e) {        
    e.printStackTrace();
    } catch (SocketException e) {        
    e.printStackTrace();

Maybe you are looking for

  • LV 2011 Report Generation Toolkit Constantly asks for 8.6.1 CD

    I am having a strange issue. Its a bit intermittant, so I will try my best to explain when it occurs.  -If I make a new project and run something from the report generation toolkit, I will get an installer from labview 8.6.1. I am running Labview 201

  • Reg : Page Navigation In ADF usinj JDev 11.1.1.7

    Hi , Can any one suggest me how to do pagination in jdev 11.1.1.7. Thanks & Regards : Pramila Padam

  • Best way to manage many pdf's online ?

    Hi I'm working on a project, where i need to put aprox 800 magazines online, and i'm wondering, what is the best way to do this, pdf, and is there a library like plugin that can be of use to keep track of all the magazines ? Short story: The magazine

  • SMTP works, but POP3 fails

    I've been a Thunderbird user for around 8-10 years now, and I use it with multiple email accounts. I've run into a configuration issue I've never seen before, and I cannot find a solution (so far). I changed my broadband ISP from Comcast to Frontier.

  • QT Pro will not install

    I purchased QT Pro for Windows and can not get it to upgrade. The registaration appears to be successful, but their is no change in the QT features. I have uninstalled and reinstalled iTunes and QT several times, downloaded and installed the stand al