Questions tagged [animated]

291 questions
4
votes
2 answers

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.
sjlewis
  • 780
  • 2
  • 13
  • 25
4
votes
2 answers

Fabric JS : How to animate the top and left position of a triangle simultaneously? + animate bug

My question seems relatively easy, but after a couple of hours googling I don't get any more info about that. Basically I would like to use the animate function to move the center of two triangles (or one to start with) around another triangle. I…
daneczech
  • 655
  • 1
  • 9
  • 20
4
votes
1 answer

UIProgressView setProgress won't stop animating

I seem to have the opposite problem to most people. I'm calling setProgress on my UIProgressView (which is added to my cell view). I'm calling it with NO animation but the change seems to be animated and I can't seem to switch it off. What I see is…
kingrolo
  • 2,857
  • 2
  • 16
  • 11
4
votes
2 answers

matplotlib qt imshow animate

Does imshow animation work with the qt-backend? The following works fine in non-qt but does not animate using qt - just shows the last frame: img = standard_normal((40,40)) image =imshow(img,interpolation='nearest',animated=True) for k in…
Ross W
  • 1,300
  • 3
  • 14
  • 24
4
votes
1 answer

Animated scatterplot of data with Matplotlib

I tried to adapt animated scatter plot-example in such a way, so it shows real-time the results of an agent based-model I developed. However, the result shown in the graph are not that what I except them to be. It goes wrong when updating the…
user1746593
  • 63
  • 2
  • 4
4
votes
2 answers

How to slow down animated gif

I have a WinForms app that displays an animated gif in the simplest possible way - there is a PictureBox that loads the .gif directly. The code generated by the WinForms designer looks like this: // // pictureBoxHomer // …
Alvaro Rodriguez
  • 2,820
  • 2
  • 33
  • 38
3
votes
1 answer

React Native panresponder elements clickable?

I have moveable panresponders but I also need to click on one to have an onPress event. Is this possible? Currently they are elements but if I change them to or something like that it throws an error. It seeems only
Hasen
  • 11,710
  • 23
  • 77
  • 135
3
votes
4 answers

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 ?
chubbyk
  • 6,212
  • 13
  • 53
  • 67
3
votes
1 answer

Animated rotate background

I have a problem, I want to make my login page background image rotated. I have problem with style code because of following code ; body{font-family:Arial, Helvetica, sans-serif;font-size:13px;background:#020307 url(/media/images/bg.jpg) no-repeat…
Maaverick
  • 63
  • 1
  • 8
3
votes
2 answers

Is it possible to add animated emoji in android messaging

I am developing an emoji keyboard for android but don't know how to add a animated emoji in currentInputConnection of InputMethodService. Edittext content= findVie...... sb = new SpannableStringBuilder(); String dummyText = "-"; …
Satya
  • 149
  • 1
  • 6
3
votes
1 answer

WPF drag drop listbox

I'm looking for a WPF drag drop library/article/tutorial that can: Drag/drop to reorder list box items Animate the panel as item is dragged (as shown in screen shot) I've had a quick look at Telerik's DragDropManager, which comes with…
jayars
  • 1,347
  • 3
  • 13
  • 25
3
votes
3 answers

How to cycle through background colors in Android / Java?

I have a list of hex colors with a duration in milliseconds for each one. I would like to fill the screen with each color for its duration, then move on to the next color. I tried to iterate over the colors to do the following: …
ScottyB
  • 2,167
  • 1
  • 30
  • 46
3
votes
3 answers

How to make a JButton move along with drawn lines

I have Jbutton (represented by the envelope) and an ArrayList of lines which the Envelope will go along. Can anyone help me? any ideas or tutorial will be much appreciated.
ht.luvit
  • 73
  • 7
3
votes
1 answer

Animated Tkinter

I am trying to write a basic tkinter example that will show a box stretching across a frame. At this point the code below will only print the final result, and not show the box moving. How do I fix the code so that it will work over time with out…
EasilyBaffled
  • 3,822
  • 10
  • 50
  • 87
3
votes
0 answers

X,Y Scatter Plot with Animation

I'm looking for a way to graph multiple point within an (X,Y) plane, and have them appear (then disappear) one at a time. I have a total of about 400 (x,y) points, which are position tracking information gathered from a Inertial Measurement…
Rob Coke
  • 31
  • 2