Re: [Qt-qml] repeat: true syntax error rc1 SDK

2010-09-09 Thread Jason H
Looks like my QrCreator rc1 install picked up some 4.6 documentation I had laying around. I removed the .460 docs and searched again, now I only see new style docs. Sorry and thanks! - Original Message From: "aaron.kenn...@nokia.com" To: scorp...@yahoo.com; qt-qml@trolltech.com

Re: [Qt-qml] repeat: true syntax error rc1 SDK

2010-09-09 Thread aaron.kennedy
Hi, Where in the docs does it say "repeat"? The docs I have say "loops: Animation.Infinite". Cheers, Aaron On 10/09/10 3:10 PM, "ext Jason H" wrote: > I get an error on the repeat:true line. Why? Docs say 'repeat' belongs to > Animation. > Thanks! > > importQt4.7 > Rectangle { > width: 86

[Qt-qml] repeat: true syntax error rc1 SDK

2010-09-09 Thread Jason H
I get an error on the repeat:true line. Why? Docs say 'repeat' belongs to Animation. Thanks! importQt4.7 Rectangle { width: 860 height: 540 gradient: Gradient { GradientStop { position: 1; color:"blue"} GradientStop { position: 0; color: "m

Re: [Qt-qml] import QtQuick 1.0

2010-09-09 Thread Jason H
I feel strongly about every issue, but this one more strongly than others. Qt has expanded immensely since I started using it back in 3.x days. The functional scope is immense, the platform scope is immense and this leads to "glacial" release pace. I am of the opinion that Qt needs to be divide

Re: [Qt-qml] import QtQuick 1.0

2010-09-09 Thread Gregory Schlomoff
I feel this is an excellent move. I was getting concerned by the fact that once Qt 4.7 will be officially out, we were going to have to wait a lot until new features were added to QML. Greg On Fri, Sep 10, 2010 at 11:48 AM, wrote: > Hi, > > Currently all the core QML elements are in the “Qt”

[Qt-qml] import QtQuick 1.0

2010-09-09 Thread aaron.kennedy
Hi, Currently all the core QML elements are in the “Qt” namespace, and the namespace’s version is coupled to the Qt version (eg. 4.7). In retrospect we think this was a mistake. And by “retrospect”, I mean “we always knew this was a mistake but we never got around to fixing it”. For Qt 4.7.1

Re: [Qt-qml] qml video not working

2010-09-09 Thread qt next
Hi, I have rebuild qt, mobility from scratch to be sure ... And I have the same issue. I have checked with depends my executable and the library : it's ok ...debug version use debug lib, and release version use release lib ... I have find that you build qt-mobility, debug version of declarative p

Re: [Qt-qml] How to animate a sequence of png images

2010-09-09 Thread Kristian Mueller
Hi, we're using a Timer and JavaScript to do the trick (providing the images have consecutive numbers). See attached file. Greetings from Berlin, Kristian Am Donnerstag, den 09.09.2010, 07:25 -0700 schrieb Jason H: > I've used AVISynth to turn PNGs into AVIs. > http://avisynth.org/mediawiki/Ma

Re: [Qt-qml] How to animate a sequence of png images

2010-09-09 Thread Jason H
I've used AVISynth to turn PNGs into AVIs. http://avisynth.org/mediawiki/Main_Page It's scripted. From: "andrew.ratcl...@nokia.com" To: michael.bras...@nokia.com Cc: Qt-qml@trolltech.com Sent: Thu, September 9, 2010 6:29:08 AM Subject: Re: [Qt-qml] How to an

[Qt-qml] Autotest for XmlListModel

2010-09-09 Thread Anton Alferov
Hello, Is there any way to write auto tests (using QtTest framework) for QML XmlListModel? I have an old version of the Declarative realization (qt-4.6.0-declarative), and it contains directory with examples of auto tests. Those examples are used the QmlXmlListModel class. But in the new version I

Re: [Qt-qml] How to animate a sequence of png images

2010-09-09 Thread Andrew.Ratcliff
Hi Michael Hadn't come across mng format before but that has done the trick thanks. FYI to make mng format from transparent png files: http://social.msdn.microsoft.com/Forums/en-US/hddvd/thread/90c3d6de-2613-4372-84fd-b1921c45a6d5 I found that using ImageMagick was the least painless of several

[Qt-qml] Not able to access ids from js code

2010-09-09 Thread Leonardo Cunha
hi, I tried to change the ../declarative/demos/calculator to instatiate part of the UI as a component, with Loader or component.createObject, see patch: http://pastebin.com/uXp6RVi7. With both of these solutions in the patch, I get this error when clicking on any of the buttons: "calculator/Core/

Re: [Qt-qml] How to animate a sequence of png images

2010-09-09 Thread michael.brasser
AnimatedImage provides support for mng and animated gifs, if either of those is an option for you. Regards, Michael On 09/09/2010, at 4:12 PM, ext andrew.ratcl...@nokia.com wrote: Hi all, What is the best way to animate a looping sequence of 30 or so transpar