Jump to content

Home

F l a s h M X


Acrylic

Recommended Posts

I tutor people in flash MX so might be of some help. :) The toughest part is organizing your movie and learning Action script commands.

 

 

You can check out my little banner at http://www.theRAA.com

 

The banner has a self typing text using individual letters, though.

 

 

 

Tutorial sites:

 

http://www.macromedia.com/support/flash/tutorial_index.html

 

http://www.virtual-fx.net/vfx/tutorial.php

 

http://www.flash-db.com/

 

http://www.sitepoint.com/subcat/95/flashcircle

 

http://www.flashkit.com/index.shtml

 

 

Other sites

 

http://www.shockanime.com/ (Tutorials)

 

http://www.2dplay.com/index.shtml

 

 

 

 

EDIT: Forgot to mention about making movies with a clear backgrond. Add this line to your HTML when you edit your site.

 

<param name="movie" value="My-movie.swf">

<param name="wmode" value="Transparent">

<param name="quality" value="high">

 

 

 

 

You can use a java script command like this one to do it without a flash movie

 

<script language="JavaScript1.2">

var it=0
function initialize(){
mytext=typing.innerText
var myheight=typing.offsetHeight
typing.innerText=''
document.all.typing.style.height=myheight
document.all.typing.style.visibility="visible"
typeit()
}
function typeit(){
typing.insertAdjacentText("beforeEnd",mytext.charAt(it))
if (it<mytext.length-1){
it++
setTimeout("typeit()",100)
}
else
return
}
if (document.all)
document.body.onload=initialize
</script>

<small><span id="typing" style="visibility:hidden" align="left">Here's where you can input text to self type!</span></small>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...