Well, a lot of peopl messaged me to send them the glowing trail code so I have decide to make a tutorial on it..
Ok, so this requires Actionscript 2.0.
Well u can download the code here.
http://www.truploader.com/view/617233
Then to animate it.
1. Open the movieclip Excaliber.
2. Inside it delete layer 1 and 2.
3. Create a new layer inside it.
4. Place the sword or whatever inside it.
5. Unloack Layer 5 and select its frame.
6. Move the selected in the middle of the sword or weapon.
7. Save your project.
8. Go back to your animation now just animate the Excaliber Frame by Frame and test your movie.
Note:This code mostly works on a gray background. It only works sometimes on a white background.
If you want to change the trail colour open Excaliber and select the toppest frame with the action script and press F9. Youll get this code
function onEnterFrame()
{
sword.onEnterFrameFunc();
} // End of the function
sword.alpha = 50;
sword.rgb = 25000;
sword.lineMC._visible = false;
sword.queueLen = 5;
sword.alpha = 50; Means how much darker or lighter the trail should be.
sword.rgb = 25000; Means what is the colour of the trail.This one means blur ill post more colour codes.
sword.lineMC._visible = false; This code means that everything other than the trail should not be seen.
sword.queueLen = 5; This means how long a trail will last during the animation. Here it will last for 5 frames bu the best one is 3.
So here it is I hope you enjoy.
If you have any questions post them here and I will reply the answer.
Good Luck.