animated

Do Wavefront .obj files support animation?

How does one export a 3D Studio animated model to OBJ format (if possible)? What will be the resulting file like? How would I read that? ...

Animated gifs causing input flicker in IE

The Cursor in an input flickers with IE7 when the page has an animated gif on it. Take away the gif, and the problem goes away. Edit (again): What I really need is somebody who knows the answer to a bizarre ie bug. I'm a 10 year experienced web app developer. Trust me, I know how to debug -- for instance, knowing for a fact that the ...

Animated line graph in Javascript?

I'd like to do a line-graph on a web-page using Javascript. I want it to be animated so that when the page loads, the line is slowly "drawn" onto the graph. I've managed to get a static graph working, using flot, however I'm unsure how to animate it. It would be half my job done to just make it draw a line half-way along the graph, bu...

flex 3 animated gif for datagrid loading

Hi guys, I want to display some kind of animation when my datagrid is updating. Does anyone have any good examples of this? ...

Where to look to get started with making an animated clock with Swing in Java?

I am trying to make an animated clock using Swing in Java. The picture I have posted is a basic idea of what I am looking for. In the end I hope to have the arrow be stationary and the numbers move to indicate the hour, plus I want to have a nested circle with 60 boxes doing the same. I'm not looking for code on how to do this just some ...

iPhone - Have the keyboard slide into view from the right like when editing a note in Contacts

Hello, I'm looking for a way to slide the keyboard into view from the right, like what happens in the Contacts application when you edit a note. My problem is that when I call [someTextView becomeFirstResponder] in viewWillAppear, the keyboard immediatly pops up with no animation. And when I call it in viewDidAppear, the view first sli...

How to make Windows.Media.Imaging.GifBitmapDecoder decode WHOLE frames?

I'm a novice in WPF and .NET programming, but I think I'm getting this right: Windows.Media.Imaging.GifBitmapDecoder has no capability to decode "partial" frames from Gif file. For example, I have a tiny GIF file of 2 frames: 1st frame is like a keyframe and 2nd frame includes only pixels that must be changed in 1st frame to get the need...

How do I get animated series into my iPhone app?

I was trying to put a GIF into my iphone app, but it just showed the first frame. I read that you have to put this coding into my app with a UIimageView. UIImage *blur5 = [UIImage imageNamed:@"Picture 12.jpg"]; UIImage *blur6 = [UIImage imageNamed:@"Picture 13.jpg"]; self.imageView.animationImages = [[NSArray alloc] initWithObjects:blu...

WPF Animated Background Control?

In my WPF application, i want to have an ambient animated background similar to Media Center's background. Does anyone know of a free control that offers this? ...

Library for Creating Animated Presentations

Is there any library for creating animated presentations? Although the question is language-agnostic, I'm specifically biased towards WPF, yet I wouldn't mind you giving examples of libraries for any other language, or a visualization language of some sort. ...

Does jQuery ":animated" selector match items that use fadeIn() and fadeOut()?

Hi all, I'm trying to prevent clicks on a list item while an animation is occurring. So at the top of my click handler, I want to do something like this: if(!$(this).is(:animated)) { // handle click code here } Note the 'bang' (!) in the if statement above. I haven't tested, but I assume this will work. What I'm not sure of is wh...

Managing animated images in PHP

Hello! I would like to have some information about this topic. Everybody knows that it's possible to manage and even create images with PHPs gd-library, but is it possible to edit animated GIFs without losing the animation? Hope that someone is wise enough to answer this :) Martti Laine ...

Is there a animated map maker can import data into itself?

Hello, I want to make a animated map. I can import data into the map, and then, the map changes depends on the data. For example, i have a map now. The map consists of many parts. Each part will change its color according to its status(Not start, started, ended). I specify a date for its status started, this part will change its color...

Need to create an animated GIF in C#

I have tried all sorts of soloutions, such as http://bloggingabout.net/blogs/rick/archive/2005/05/10/3830.aspx and http://www.codeproject.com/KB/GDI-plus/NGif.aspx but none of them seem to work correctly. NGif was okay, but the resultant gif was corrupt (white pixels on first frame). And I couldn't get Rick van den Bosch's code to work a...

Disable animation of navigation bar in iphone

I am working on a Navigation-Based Application. I have few View Controllers which I push in to Navigation Controller on different occasions. The following is the code I use to push new View Controller. AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil]; [self.navigat...

jquery to have animated popup

Hi, In my main page, I need to have a main links displayed...and on mouse hover of each main link it should display a layer (something like modal popup but a smooth one)...and in the layer user should be able to select other links. It should allow the user to move smoothly between the main links. Can I use jQuery for this? If not what...

Can't call animated png script from external js file

Hello, I'm trying to put an animated PNG dynamically from external .js file. First I found a simple animated png solution, which draws an animation wherever you put the code within <script> tags, but now it looks like I don't know how to call the function properly from external file. The script is from AnimatedPNG, and it looks some...

Animate tray icon while processing

How can I animate the tray icon while the main application is processing? I already tried the suggestion here, but the icon does not animate during process. I also tried putting the animation in a separate thread but still no luck. ...

How to judge the animate function complete and show something?

The code like this: $(".hide").click(function(){ $(".online-contact").animate({width: 'toggle',height: '100%'}, "fast"); $(this).hide(); $(".show-class").show(); }) I want to show the div with the class of show-class when the the animate function complete,what can I do it? ...

Correct way of showing consecutive modalViews

I have two views that need to be shown modally, one after the other. This doesn't work if we dismiss and show consecutively, like this: [rootController dismissModalViewControllerAnimated: YES]; [rootController presentModalViewController: psvc animated: YES]; The second modal view simply doesn't show up. I've seen a fix that was somet...