Computer Science Canada
Programming C, C++, Java, PHP, Ruby, Turing, VB
Username:
Password:
Register
Wiki
Blog
Search
Turing
Chat Room
Members
Turing Picuture animation help!!
Index
->
Programming, Turing
->
Turing Help
Author
Message
capella
Posted:
Fri May 22, 2009 9:58 am
Post subject: Turing Picuture animation help!!
What is it you are trying to achieve?
<Allow the picture to move diagonally without leaving image marks on the background.>
What is the problem you are having?
<The picture leaves layers of images when it's moving>
Describe what you have tried to solve this problem
Post any relevant code (You may choose to attach the file instead of posting the code if it is too long)
<Answer Here>
Turing:
<
setscreen
(
"graphics:vga"
)
var
mypic2
:
int
:=
Pic.FileNew
(
"h:/computers/Sbob.jpg"
)
Pic.Draw
(
mypic2,
5
,
5
,
picMerge
)
var
mypic3
:
int
:=
Pic.FileNew
(
"h:/computers/Sbob1.jpg"
)
setscreen
(
"offscreenonly"
)
View.SetTransparentColor
(
1
)
for
decreasing y:
130
..
90
Pic.Draw
(
mypic3,
380
, y,
picMerge
)
View.Update
delay
(
10
)
View.Update
end
for
>
Please specify what version of Turing you are using
<Turing 4.0.5.>
Sponsor
Sponsor
DemonWasp
Posted:
Fri May 22, 2009 10:55 am
Post subject: RE:Turing Picuture animation help!!
You need to use Draw.Cls or cls to clear the screen in between. You also only need one View.Update in your loop. It should look more like this:
code:
for decreasing y : 130..90
Draw.Cls()
Pic.Draw ( mypic3, 380, y, picMerge )
View.Update()
delay (10)
end for
You clear the screen (blank slate), draw the picture at its current location, push that to the screen, then wait a little before continuing.
Display posts from previous:
All Posts
1 Day
7 Days
2 Weeks
1 Month
3 Months
6 Months
1 Year
Oldest First
Newest First
Index
->
Programming, Turing
->
Turing Help
Page
1
of
1
[ 2 Posts ]
Jump to:
Select a forum
CompSci.ca
------------
- Network News
- General Discussion
General Forums
-----------------
- Hello World
- Featured Poll
- Contests
Contest Forums
-----------------
- DWITE
- [FP] Contest 2006/2008
- [FP] 2005/2006 Archive
- [FP] 2004/2005 Archive
- Off Topic
Lounges
---------
- User Lounge
- VIP Lounge
Programming
--------------
- General Programming
General Programming Forums
--------------------------------
- Functional Programming
- Logical Programming
- C
C
--
- C Help
- C Tutorials
- C Submissions
- C++
C++
----
- C++ Help
- C++ Tutorials
- C++ Submissions
- Java
Java
-----
- Java Help
- Java Tutorials
- Java Submissions
- Ruby
Ruby
-----
- Ruby Help
- Ruby Tutorials
- Ruby Submissions
- Turing
Turing
--------
- Turing Help
- Turing Tutorials
- Turing Submissions
- PHP
PHP
----
- PHP Help
- PHP Tutorials
- PHP Submissions
- Python
Python
--------
- Python Help
- Python Tutorials
- Python Submissions
- Visual Basic and Other Basics
VB
---
- Visual Basic Help
- Visual Basic Tutorials
- Visual Basic Submissions
Education
-----------
- Student Life
Graphics and Design
-----------------------
- Web Design
Web Design Forums
---------------------
- (X)HTML Help
- (X)HTML Tutorials
- Flash MX Help
- Flash MX Tutorials
- Graphics
Graphics Forums
------------------
- Photoshop Tutorials
- The Showroom
- 2D Graphics
- 3D Graphics
Teams
------
- dTeam Public
Style:
Appalachia
blueSilver
eMJay
subAppalachia
subBlue
subCanvas
subEmjay
subGrey
subSilver
subVereor
Search:
You can syndicate this boards posts using the file
backend.php
or view the
topic map using sitemap.php.
Terms of Use
|
Privacy Policy