Questions tagged [animated]

291 questions
7
votes
3 answers

How do I determine if the current mouse cursor is animated?

is there a way how to determine if the current mouse cursor is animated ? I was looking for a way how to save the current cursor some time ago. I found the DrawIconEx function which perfectly suits to my purpose. Unfortunately I don't know how do I…
user532231
7
votes
1 answer

How I can stop an animated GIF in JavaFX?

I want to use an animated GIF in my project, but I dont know how I can stop the loop animation. I mean, I want the GIF to play 1 time only. Thanks!
Ezequiel
  • 99
  • 1
  • 1
  • 7
6
votes
1 answer

animated gifs freeze in firefox 4.0 and above

I'm using jquery to preload an animated gif and later on inject a message with animated gif to the code. it used to work fine until release 4.0 of firefox. since then only the 1st frame is showed and the animation is frozen. (it works fine on IE…
Nir
  • 1,608
  • 1
  • 17
  • 29
6
votes
1 answer

Animate 'Style' property of Control using ObjectAnimationUsingKeyFrames in WPF

I am trying to animate 'Style' property using ObjectAnimationUsingKeyFrames. When I run the sample below, I just see empty window and there are no any exceptions. Almost the same sample works in Silverlight. In WPF it works too, if I assign 'Style'…
Roman
  • 61
  • 2
6
votes
2 answers

Animate a Fill Circle using Canvas

Basically I want to be able to Fill a Circle using canvas, but it animate to a certain percentage. I.e only have the circle fill up 80% of the way. My canvas knowledge isn't amazing, Here is an image i made in photoshop to display what i want. I…
BigOrinj
  • 243
  • 2
  • 6
  • 14
6
votes
1 answer

Android activity - background drawable animated

question simple, however haven't found any simple answer for android beginner such as I am... How can I animate background drawable in android ? I'd like to achieve the bakcground animation if possible by some simple and easy-tounderstand…
Bruno Laurinec
  • 910
  • 2
  • 11
  • 27
5
votes
2 answers

UIScrollView ScrollRectToVisible - not working with animate = yes

I have a UIScrollView which contains a button. When the button is pressed, I would like to scroll to the bottom of the view using scrollRectToVisible. eg: CGRect r = CGRectMake(0, myUIScrollView.contentSize.height - 1, 1, 1); [myUIScrollView…
orion elenzil
  • 4,484
  • 3
  • 37
  • 49
5
votes
5 answers

Animated GIF while loading page does not animate

I have a page which is being generated serverside using asp.net (C#). It takes a while for the page to load as it has up to 100 iframes. I want to show a "please wait" animated gif while the page is loading, so I have the following:
Jesper
  • 999
  • 3
  • 14
  • 30
5
votes
2 answers

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( …
android.nick
  • 11,069
  • 23
  • 77
  • 112
5
votes
2 answers

declares the selector presentviewcontroller

Hello I have a little problem. I got an application for a project, but it is a somewhat old application (IOS 7). I saw on the internet how to update the UIAlertController Using INSTEAD of good-old UIAlertView. if (error.code) { cancelBlock =…
5
votes
3 answers

Animated scroll-to-item in UICollectionView doesn't always work

Problem I'd like to make a UICollectionView do an animated scroll to a specific item. This works most of the time, but occasionally the item that I'm trying to scroll to doesn't end up being shown. Code - (void)onClick { // (Possibly recompute…
Nate Kohl
  • 35,264
  • 10
  • 43
  • 55
5
votes
1 answer

Download animated GIF

I'm using the below to grab an animated gif off the web. However, upon saving this to disk, I lose the frames in the gif, and it no longer animates. Not sure whether the problem is in the below method, or whether it's when I'm saving it, but any…
Squiggs.
  • 4,299
  • 6
  • 49
  • 89
5
votes
1 answer

Plotting animated exchange (plotting directional edges)

I once saw this plot (LINK) on shipping trades. I work with dialogue exchanges and thought it may be interesting to map this sort of exchange using R. This is a larger question but I think it may be useful to the community at large. Let's say we…
Tyler Rinker
  • 108,132
  • 65
  • 322
  • 519
5
votes
2 answers

Speed of large amount of animated bitmaps in EaselJS

I seem to have a bit of trouble with using a large amount of animated bitmaps (all based on the same spritesheet) when using EaselJS. When I run a couple of these at once on my stage, there is no problem at all, but when running a higher amount of…
Kristof
  • 131
  • 2
  • 5
5
votes
1 answer

mouseenter/mouseleave event doesn't fire when the target is animated and passes under the mouse pointer

I have this example here to illustrate the situation: http://jsfiddle.net/nubrF/40/ If you hold your mouse onto the path of the animated element you can observe that the events are fired only in Firefox (not in IE, Chrome or Safari) when the target…
1
2
3
19 20