animated

Highlight Read-Along Text (in a storybook type app for iPhone)

I love this feature (well, my son loves it), and I would like to implement it in a kid's book app I am doing for iPhone, but I'm clueless where to begin. I'm using Cocos2d for all the animated sprite/transition stuff, but I'm not sure how to approach highlighting text as it is narrated. Example: "Jack and Jill, drank their fill, and w...

Animated GIF Not Working in FireFox after cache

I have an animated GIF that loops three times. I have noticed in Firefox and Chrome (haven't checked others) that I can view the GIF once and then if I reload the page, the cached GIF is not animated at all. Is there a solution to this? Is there something about the animated GIF that I could change to prevent this from occurring? ...

Slide in the second tab bar view by clicking on item in the first

I have an app with three tabs that switch views instantaneously when the user taps them. The first view is a table view selecting which 'location type' to filter by, to only show those pins (add those annotations) to the second view, a MapView. When a table cell is clicked, it switches instantaneously to the mapview, using this code: s...

How do you create jpg format video's?

I've always thought .jpg was non-animated, but I've recently found several animations in .jpg format. 1) The obvious question - how do you create .jpg video's directly in the fileformat (not using javascript, for example)? 2) It's both hard to find examples of more .jpg format video's (unlike gif's, there aren't exactly archives of an...

jQuery animated image swap

Howdy. It's me again, and It's jQuery again. I have somthing like that: http://misiur.com/small/ When this menu on left is clicked, then I want to change src of this image, or just swap it. However I want to make it animated. Images paths are taken from DB, and stored in "images" array (You can check that with firebug). thanks Update...

How to convert animated GIF to static in PHP ?

I need to convert animated GIF to static in PHP. I mean e.g. use its first frame. Any idea how to do that ? ...

Load an embedded animated Cursor from the Resource

I have an animated Cursor file (*.ani) in the resources and want to show it as a cursor in my application. How can I load it from the resources? I looked up in the Internet, but there are only ways to show it when u have a real file and if it is not embedded in the resources. ...

Problem with uiscrollview setcontentoffset animated not scrolling when animated:yes is set

This is very odd and I'm wondering if anyone has any thoughts? I'm trying to scroll a UIScrollView in response to a button press on the iPad. If I do: CGPoint currentOff = scrollView.contentOffset; currentOff.x+=240; [scrollView setContentOffset:currentOff animated: NO]; The scroll view jumps to the required position as expected...

jquery: this.not (':animated') && that.is (':visible') not following the rules, syntax problem? only few lines of code.

when i click on #button, it's stilling doing the 'do something', even though .wrapper is animating and .wrapper span is not visible. so it's not following the rules. what's wrong? $('#button').click(function(){ if( $('.wrapper').not(':animated') && $('.wrapper span').is(':visible') ) { //do something } }) ...