38 Topics
HI!! How can I create an automatic numerical progression from 0 to 500,000 in html? The code I was given is this: <p><span style="font-family: Calibri, sans-serif;"><span style="text-shadow: rgba(255, 255, 255, 0.8) 0px 3px 2px;"><sup>437</sup></span></span></p> how can i make the code progressive and automatic every three minutes? The progression I have …
Hi, I am trying to plot live data reading them from a txt file. The interesting thing is that it works fine without the animate function and I am not sure what is going on when I introduce this function. The code is appended below. from datetime import datetime import …
I have been following this tutorial (http://www.codeproject.com/Articles/18379/WPF-Tutorial-Part-Writing-a-custom-animation-cla) to try and adjust the Width of one of my Grids upon a Button click. <Grid Grid.Row="2"> <Grid.ColumnDefinitions> <ColumnDefinition Name="leftGrid" Width="7*"/> <ColumnDefinition Name="rightGrid" Width="3*"/> </Grid.ColumnDefinitions> <i:Interaction.Triggers> <ei:PropertyChangedTrigger Binding="{Binding State}"> <ei:GoToStateAction StateName="{Binding State}" /> </ei:PropertyChangedTrigger> </i:Interaction.Triggers> <VisualStateManager.VisualStateGroups > <VisualStateGroup x:Name="VisualStateGroup"> <VisualState x:Name="Expanded"> <Storyboard> <local:GridLengthAnimation …
ok so here's what I have... due to the hardware interface, a model file contains a pre-transformed version of the actual model. (verts are prepaired for animation transformations) what I'm trying to get is the default T-Pose of the model. but to get that, I have to transform it via …
Hey Folks I've created a template and storyboard that applies to all buttons in my application. When you click the button, it drops to the right and down a bit, then snaps back up. The problem is, when I handle the click in code, it executes before (or during?) the …
Ok this the problem i want to download the applet or if not i want it as a animation (swf or gif) Go to this website http://www.colorado.edu/physics/2000/index.pl then click applet tumbannails then go to laser (by srcolling) i want all four applets or make into animation
I am trying to get this Skew double animation working but for some reason nothing is happening when it is called by the Dispatch timer, i would be very greatful of any advice as i am not getting any errors or anything of that sort. > What i would like …
Hello everyone. I have a .gif image that I would like to put on a opening web page. I would like to make it fade in when a person first comes to the web site. I know it can be done in flash but never used it. can some one …
I am building a 2-3-4 tree animator as a favor for one of my teachers. I want to use animations to have the newest value traverse the tree to find where it goes and then insert the value into the node. The problem comes when I have more than 1 …
Hello! I am writing an application for an embedded system with GUI written in swing. I now want to incorporate animations in the GUI to enhance usability. Hypothetical example: The user sees a table with some buttons ant things around it. The user can temporarily "save" the table, which makes …
I animate a label to move up the screen using the following code: [CODE]private void Animate(object sender, EventArgs e) { Storyboard scrollTweets = new Storyboard(); DoubleAnimation ani = new DoubleAnimation(); ani.From = (double)label1.GetValue(Canvas.TopProperty); ani.To = (double)label1.GetValue(Canvas.TopProperty) - label1.ActualHeight; ani.Duration = new Duration(TimeSpan.FromSeconds(1)); Storyboard.SetTarget(ani, label1); Storyboard.SetTargetProperty(ani, new PropertyPath(Canvas.TopProperty)); scrollTweets.Children.Add(ani); scrollTweets.Completed += …
Hi, all how can I add animation in cocos2d in a sprite, the problem is that whenever the use fire the object and hits that object, the object will remove just like an animation .. if you have any tutorial then plz send it to me... thnx
I have a WPF application which has a textblock at the bottom of the page. I want to animate this block so it scrolls along the bottom. I need to do this in code so that when it scrolls of screen it will change position to the other side when …
I'm stuck. I'm trying to wirte a very small animation applet. It is suppose to import 15 BMPs and then of course play them back in an animation. I have the BMP's stored in a seperate directory but think I have the path right. It seems I am continually getting …
Hello Daniweb, I am writing a game engine in C++ with SDL, and am faced with a problem. I need to store the sprite animation coordinates for every different animation in a different array. The problem I am facing is, since I am putting the arrays in one single Player …
hi I have to create ad in which 5-6 images will change in fixed time interval and for that i want to know how to create animated gif image in photoshop. pl. tell the steps to create the animated gif image in photoshop
I wrote a code that i want to fade a <div> tag with. Here's the <div> tag. [CODE]<div id="about" onmouseover="fadein('about');"><li><a href="">About</a> <ul class="navbar" id="aboutoptions"> <li><a href="aboutus.html">Us</a></li> <li><a href="aboutproj.html">Projects</a></li> </ul> </li></div>[/CODE] Here's my java code. [CODE]function fadein(objectID){ object = document.getElementById(objectID); object.style.opacity = '0'; animatefadein(); function animatefadein(){ if(object.style.opacity < 1){ var current …
welcome .... I'm starting learn java langauge , it is very intresting langauge .... I have this problem and I need your help... (( [COLOR="Green"]Write a java applet that will animate an analogue clock. The clock should look like the one shown in Figure 1. The background color of the …
hi... can anyone can tell me the code to animate a trinagle in c language?
I have a cardlayout of pictures but i want to know if i can produce some special effects like they have in MS Powerpoint where the picuture slides can fade in/out or swirl into or out of the panel or display text words one at a time, etc. Is it …
please I.T pipo pliz help i am asking for the code for developong action games in 3d, and also asking for anyone who knows how to creat cartoons animation lets talk.
what im having trouble with is making an applet which has animates like the matrix code.. lines come down at random positions etc.. my lecturer said that it only takes 20 lines of code and is very simple. he gave us this info as a hint: [CODE]Use the random class! …
I have a transparent panel control, I don't use double buffering because they clash, and it also interferes with some other controls that I am using. On my panel I have 9 buttons, I have written code to remove a button on its click event, and then move the to …
What is the difference between hkeletal animation and procedural animation? I get different answers each time BattlingMaxo
hi guys, i'm looking for software to make picture animations or animated cartoons or something fascinating like that... any idea?
Hi all, I wonder if someone can answer some questions for me related to animation: 1) Key-frame animation. You define keyframes over time and the program fills-in the in-between frames (interpolation), correct? 2) Procedural. I know that in procedural animation the program caclulates the animationn in terl-time based on a …
I'm afraid this might be more of a WPF question instead of a C# question, but I'll ask it here and hope for the best: I'm creating a system that generates images algorithmically and assembles them into a character. That part works fine: I end up with an image for …
Hey everyone, I've written an application with an animation using the Timer object. In order to stop the animation I call the stop method of the Timer class. From what i've read this just pauses the timer. My problem is that if i display the animation once it displays well. …
I have had to repaint a couple of times because of a moving shape I have added to my program whenever the mouse is clicked. I also have a moving shape that follows the mouse over a grid as well which doesn't help a lot, could you please tell me …
Hi all... I have a problem and need to get your point of view regarding card game. 1. I need to build some kind of animation on event to flip playing card from back side to front and vice versa when needed. My idea is to assign picture to Timage …
Hi, My enquiry involves how jsp handles graphics updates I refer to the technology prior to .NET when ActiveX controls were embedded in web pages. The control (in the form of a dll) was typically downloaded to the browser and executed on that browser. I believe a similar situation exists …
ok i have created a method to movea number of objects, but i want to move all of them at the same time(balloons flying is what im aimining for,lol)but they move seperatly? /** * Create method for balloons to fly */ public void slowMoveVertical() { top.slowMoveVertical(-50); top2.slowMoveVertical(-50); top3.slowMoveVertical(-50); middle.slowMoveVertical(-50); middle2.slowMoveVertical(-50); …
hiya guys right have a challange for you. i am using 3D studio max and trying to make a slinky animation. i know very simple but i am just not sure how to go about it. i have the bend animation on one side but how can i control the …
Hello, i am interested in creating a graphics library which can be used in animations and stuff like that. What knowledge does it demand? Can someone help me in this regard. rgds swetha
Can someone please explain to me how to animate a sprite, using an image with a set of poses? For example is it possible to specify one part of an image, or do i have to use seperate image files for each pose? And lastly, how exactly would one go …
[COLOR=Red]i would like to learn how to make animated pictures can anyone help me please[/COLOR] :D
ok so heres one of my problems: Whenever i save an animation that i may have found on a webpage i save it to a regular folder, but when i try to open it again, it's not animated anymore. So with my brilliant thinking, i decided that i should change …
is there a possibility to make animation with cpp is there any documentation for this
The End.