Hi,
Can the results of Sencha Animator be shown in Sencha Touch application ?
If it is possible, is there any tutorial to do this ?
Thanks.
Hi,
Can the results of Sencha Animator be shown in Sencha Touch application ?
If it is possible, is there any tutorial to do this ?
Thanks.
Yeah, that should be possible.
You can use an iframe to refer to the exported animation.
As for learning more about Sencha Touch, you can find more info in the learn section and the Sencha Touch forums.
Something like this might work:
Code:var animationPanel = new Ext.Panel({ fullscreen: true, html: '<iframe src="path/to/export.html" width="300" height="300"></iframe>' });
Is there another Sencha Touch way to do this without an iframe?
Some people have mentioned using Ext.Ajax.request but I can't find any working examples of this.
Thank you,
Nigel
If you don't mind getting your hands dirty, you could copy the html and the css (and js if needed) manually. Note that this might lead to some namespace conflicts and you need to go over the css rules to make sure they don't affect other elements on your page (in particular there is a ol and li rule that is currently global).
We're planning to make this easier in the future!