vote up 3 vote down star

In my AIR application, I want to animate an HTML element using jQuery. When I attempt the animation in the global HTMLLoader, there is no problem. However, I'm having a problem when attempting to animate elements in a 'secondary' HTMLLoader (i.e. one opened by the original document).

The animation isn't smooth - it only 'steps' when I move the mouse. The animated property (e.g. top, left, etc.) is still updated - it just isn't visible unless the mouse is moved. So if I'm not moving the mouse, the animation completes without seeing any transition between the start and end state.

The type of animation doesn't seem to be significant. I've simplified the code to the following:

var loader;

$(function() {
	loader = new air.HTMLLoader();
	loader.addEventListener(air.Event.COMPLETE, start);
	window.htmlLoader.stage.addChild(loader);
	loader.load(new air.URLRequest('sandbox2.html'));
});

function start() {
	loader.width = loader.window.document.width;
	loader.height = loader.window.document.height;
	$('.task', loader.window.document).click(function() {
		$(this).animate({ backgroundColor: '#c00' }, 1000);
	});
}

I tried loading the equivalent HTML/JS into both Firefox and Safari, and it was fine. I'm running Mac OS X 10.5.

Any ideas? Thanks!

flag

78% accept rate
Just a note, if you do jQuery(document).ready(function($){ your code}); you don't need to create that dollar helper function, since the parameter passed to document.ready is the jQuery object itself – Pablo Fernandez Jun 11 at 2:44
For the record, this question is not answered. I set a bounty and it auto-accepted the top answer. Not sure how to resolve that. – harto Jun 22 at 3:50

2 Answers

vote up 3 vote down check

AIR is more like Safari and Chrome. AIR uses Webkit, and it's a bit behind Safari and Chrome in the Webkit version. Can you see how those work?

I've used jQuery in AIR, but I don't think I've used the animate method in AIR.

Also, try to narrow down whether it's something about color (although I can't imagine what). Try something like height instead of color.

Also, why did you have to use noconflict? Do you have another library loaded? I don't remember having to do that.

link|flag
I'll give it a run in Safari and see what happens. I updated my question regarding your other points. – harto Jun 11 at 3:57
yeah no dice in Safari either. The animated property is not significant either... – harto Jun 11 at 12:21
So the animate is smooth in Safari? – Nosredna Jun 11 at 13:36
yes indeed - no issues in Safari. – harto Jun 12 at 5:02
I've substantially simplified my code and updated my question - any further ideas? – harto Jun 17 at 6:46
vote up 0 vote down

If it works correctly on Safari but not in Adobe AIR, it looks to me like its a security issue with your jquery app running inside the application sandbox (default but restricted area on Adobe AIR). Please create a non-application sandbox and run your app in there to see if this is a security issue. The non-application sandbox should work exactly like the browser. http://labs.adobe.com/wiki/index.php/AIR:HTML_Security_FAQ

Unlike content in the application security sandbox, JavaScript content in a non-application security sandbox can call the eval() function to execute dynamically generated code at any time. However, there are restrictions to JavaScript in a non-application security sandbox. But these restrictions mirror general browser restrictions.

A non application sandbox can be created easily by using an iframe.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.