Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. There is no "transitions:" in manual

There is no "transitions:" in manual

Scheduled Pinned Locked Moved QML and Qt Quick
3 Posts 2 Posters 2.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    F Offline
    Fomand
    wrote on last edited by
    #1

    Qt Creator Documentation 2.3.0 / Creating a Qt Quick Application / Adding Animation to the View

    The tutorial is great! But there is not a word about "transitions:". I think that it must be there. What do you think?

    @
    transitions: [
    Transition {
    from: "*";
    to: "State1";
    NumberAnimation {
    easing.type: Easing.OutBounce
    properties: "x,y";
    duration: 1000
    }

        },
        Transition {
            from: "*";
            to: "State2";
            NumberAnimation {
                easing.type: Easing.InOutQuad
                properties: "x,y";
                duration: 2000
            }
    
        },
        Transition {
            NumberAnimation {
                properties: "x,y";
                duration: 200
            }
    
        }
    
    ]
    

    @

    1 Reply Last reply
    0
    • A Offline
      A Offline
      andre
      wrote on last edited by
      #2

      What is wrong with the "documentation":http://developer.qt.nokia.com/doc/qt-4.7/qml-transition.html that is there? What are you missing?

      1 Reply Last reply
      0
      • F Offline
        F Offline
        Fomand
        wrote on last edited by
        #3

        Andre, thank you for your post.

        But... You are pointing to a different place.

        Let me explain where I am.

        1. Installed 4.7.
        2. Started Qt Creator.
        3. Under "Getting Started" > Building and Running an Example Application.
        4. Qt Creator Documentation 2.3.0
        5. Creating a Qt Quick Application.
        6. On the bottom of the page you will see what I mean.

        It took me awhile to figure out what I should do (in addition to cook-book) to make it working.

        This place is like the face of Qt Creator (which I like very much). This place is the one - new people will see.
        And I just want it to be a little bit better.

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved