What Third Party Tool Should I Buy, To Make Projectors?
These three third party tools are really good, which one do you reckon is the best? Screenweaver: http://www.screenweaver.com Flash 'N Pack: http://www.flashnpack.com Flash Studio PRO: http://www.multidmedia.com/software/flashstudio/ SWF Kit :http://www.swfkit.com
Anyone use any of these tool? cheers
Tek-Tips > Adobe(Macromedia): Flash Forum
Posted on: 28 Oct 03 23:45
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
3rd Party Tool Or Wat
hi everyboody
just check out this..
http://c1.virtualcatalogue.co.uk/vie...02576/&fp=true
i am curious abt to know, how it is done. Is it done with the 3rd party software or its completely done in flash.
i guess it must be done with the 3rd party software, if yes dan i am not able to get that 3rd party software.
if any one can figure out this dan plz do let me too know
Help 3rd Party Tool For Flash 7...
I'm looking for a tool that allows flash 7 files to save data in the hard disk, like "FLAWRITE", from flashtool.de, but it HAS to work with flash 7.
Third Party Tool To Show Or Hide Panels In Flash
Hi, I used to have a program that did this function:
Panels like the actions or the timeline one could be hidden, and if
you moved the mouse to the edge of the screen, they would appear, it
also worked with Photoshop (i think).
I'm looking for it, I had it installed on my old computer, and I recently
changed to a new one, but sadly I don't remember the name of that
program.
thnks.
How To Make A Marquee Tool ?...
Hi I need to make a marquee tool ( you know like the one in Photoshop)
I already made on version that actually works (besides some small bugs)
BUT it is very CPU intensive.
(lots of litle pixels to be moved)
Does anyone have a better idea ?
I have the feeling that I'm missing something
Code:
//loadMovie ("speedometer.swf", 100000);
_quality = "LOW";
var BG = this.createEmptyMovieClip ("BG", 1);
BG.lineStyle (0, 0, 0);
BG.beginFill (0xffffff, 100);
BG.lineTo (Stage.width, 0);
BG.lineTo (Stage.width, Stage.height);
BG.lineTo (0, Stage.height);
BG.lineTo (0, 0);
BG.onPress = function ()
{
this.startX = Math.round (this._xmouse);
this.startY = Math.round (this._ymouse);
this.onMouseMove = create;
};
BG.onRelease = BG.onReleaseOutside = function ()
{
delete this.onMouseMove;
this.line1.onEnterFrame = marquee;
};
create = function ()
{
this.w = Math.round (this._xmouse - this.startX);
this.h = Math.round (this._ymouse - this.startY);
this.createEmptyMovieClip ("line1", 1);
this.createEmptyMovieClip ("line2", 2);
this.line1._x = this.line2._x = this.startX;
this.line1._y = this.line2._y = this.startY;
this.line1.lineStyle (0);
this.line2.lineStyle (0);
this.line1.lineTo (this.w, 0);
this.line1.lineTo (this.w, this.h);
this.line2.lineTo (0, this.h);
this.line2.lineTo (this.w, this.h);
this.parts = Math.round (Math.abs (this.w + this.h) / 8);
for (var i = 0; i < this.parts; i++)
{
var w = this.line1.createEmptyMovieClip ("w" + i, i);
var h = this.line2.createEmptyMovieClip ("w" + i, i);
for (var c = 0; c < 4; c++)
{
var p = w.createEmptyMovieClip ("p" + c, c);
var q = h.createEmptyMovieClip ("p" + c, c);
p.lineStyle (0, 0xffffff, 100);
q.lineStyle (0, 0xffffff, 100);
p.lineTo (1, 0);
q.lineTo (1, 0);
var z = 8 * i + c;
if ((p._x = z) > this.w)
{
p._x = this.w;
p._y = z - this.w;
}
if ((q._y = z) > this.h)
{
q._y = this.h;
q._x = z - this.h;
}
}
}
updateAfterEvent ();
};
marquee = function ()
{
for (var i = 0; i < this._parent.parts; i++)
{
for (var c = 0; c < 4; c++)
{
var t = this._parent.line1["w" + i]["p" + c];
var z = this._parent.line2["w" + i]["p" + c];
if (t._x++ >= this._parent.w)
{
t._x = this._parent.w;
if (t._y++ == this._parent.h)
{
t._y = t._x = 0;
}
}
//
if (z._y++ >= this._parent.h)
{
z._y = this._parent.h;
if (z._x++ == this._parent.w)
{
z._y = 0;
z._x = 0;
}
}
}
}
};
How To Make A Marquee Tool ?...
Hi I need to make a marquee tool ( you know like the one in Photoshop)
I already made on version that actually works (besides some small bugs)
BUT it is very CPU intensive.
(lots of litle pixels to be moved)
Does anyone have a better idea ?
I have the feeling that I'm missing something
Code:
//
_quality = "LOW";
var BG = this.createEmptyMovieClip ("BG", 1);
BG.lineStyle (0, 0, 0);
BG.beginFill (0xffffff, 100);
BG.lineTo (Stage.width, 0);
BG.lineTo (Stage.width, Stage.height);
BG.lineTo (0, Stage.height);
BG.lineTo (0, 0);
BG.onPress = function () {
this.startX = Math.round (this._xmouse);
this.startY = Math.round (this._ymouse);
this.onMouseMove = create;
};
BG.onRelease = BG.onReleaseOutside = function () {
delete this.onMouseMove;
this.line1.onEnterFrame = marquee;
};
create = function () {
this.w = Math.round (this._xmouse - this.startX);
this.h = Math.round (this._ymouse - this.startY);
this.createEmptyMovieClip ("line1", 1);
this.createEmptyMovieClip ("line2", 2);
this.line1._x = this.line2._x = this.startX;
this.line1._y = this.line2._y = this.startY;
this.line1.lineStyle (0);
this.line2.lineStyle (0);
this.line1.lineTo (this.w, 0);
this.line1.lineTo (this.w, this.h);
this.line2.lineTo (0, this.h);
this.line2.lineTo (this.w, this.h);
this.parts = Math.round (Math.abs (this.w + this.h) / 8);
for (var i = 0; i < this.parts; i++) {
var w = this.line1.createEmptyMovieClip ("w" + i, i);
var h = this.line2.createEmptyMovieClip ("w" + i, i);
for (var c = 0; c < 4; c++) {
var p = w.createEmptyMovieClip ("p" + c, c);
var q = h.createEmptyMovieClip ("p" + c, c);
p.lineStyle (0, 0xffffff, 100);
q.lineStyle (0, 0xffffff, 100);
p.lineTo (1, 0);
q.lineTo (1, 0);
var z = 8 * i + c;
if ((p._x = z) > this.w) {
p._x = this.w;
p._y = z - this.w;
}
if ((q._y = z) > this.h) {
q._y = this.h;
q._x = z - this.h;
}
}
}
updateAfterEvent ();
};
marquee = function () {
for (var i = 0; i < this._parent.parts; i++) {
for (var c = 0; c < 4; c++) {
var t = this._parent.line1["w" + i]["p" + c];
var z = this._parent.line2["w" + i]["p" + c];
if (t._x++ >= this._parent.w) {
t._x = this._parent.w;
if (t._y++ == this._parent.h) {
t._y = t._x = 0;
}
}
//
if (z._y++ >= this._parent.h) {
z._y = this._parent.h;
if (z._x++ == this._parent.w) {
z._y = 0;
z._x = 0;
}
}
}
}
};
How Do I Make A Timeline Tool Like This?
Hello,
I know flash very well. But I don't know how to make a timeline tool like the one used in this tutorial: See the timeline tool
Edited: 08/14/2007 at 07:17:00 AM by FlashRenaissance
Can You Make A Joint On The Line Tool?
hi
i was wondering how to make joints. If you don't know what joints are, they are like pivits. So you can move something like your knee, whithout adding more layers.
Please reply me back
Thanks
Pen Tool Won't Make Filled Shapes
I don't know what happened, but for some reason, when I make a closed shape with the pen tool, it always ends up without a fill, regardless of what fill color I choose. What's going on?
How Can I Make The Mouse A Pencil Tool In A Flash Movie?
i want to be able to make it so when i hold the mouse button down it startes making a line wherever i point to, kind of like using the pencil tool. can i do that? and then maybe have a button to clear all... or make it so i can erase some how... but just the lines, not the backround.
anyone know how?
Make A Lasso Tool To Crop An Uploaded Image?
Greetings!
I'm trying to create a photoShop type lasso tool so users can crop out their heads in an image they uploaded. I have all the problems solved except for how to make the lasso so they can crop their head out. I figure lasso tool is the best way. I made a mask with curveTo but that only makes a circle. A lasso tool would be rad. Is there a way to like draw a line with a mouse around an image and then fill it and make that the mask? I figure you can createEmptyClip and then fill it up with draw but how do I make the lasso??
If any of you can point me in the right direction towards how to make a cropping/mask lasso tool i'd be very happy indeed
How To Make A Text Box Occur As Cursor Moves Over A Photo. Use As An Educational Tool
How to make a text box occur when move the cursor over certain parts of a photograph. The text box to disappear when click.
Second question: A photo underneath a grid or chart of boxes that hold text. When the box is clicked on the portion of the photo it was covering disappears. At the same time a text box appears to the side - with the answer to the grid question.
Thank you for any guidance you can offer in leading me through the steps!
How Can I Make Erase Tool To Erase The Vector Drawn On Bitmapdata?
I had struggle with the erase tool for weeks in order to active the erase tool to erase the vector drawn on the bitmapdata: www.tofudesign.com/TemplateDraft8.swf
Actionscript code:
import flash.display.*;
import fl.events.ColorPickerEvent;
import com.adobe.images.JPGEncoder;
var b_clicked:Boolean;
var e_clicked:Boolean;
var a_clicked:Boolean;
//place on stage so user can choose
var brush = new Brush();
var erasor = new Erasor();
var arrower = new Arrow();
brush.x = 690;
brush.y = 360;
addChild(brush);
erasor.x = 750;
erasor.y = 365;
addChild(erasor);
arrower.x = 799;
arrower.y = 365;
addChild(arrower);
//to replace mouse pointer with
var brush_icon = new Brush();
var erasor_icon = new Erasor();
var arrower_icon = new Arrow();
addChild(brush_icon);
brush_icon.alpha = 0;
addChild(erasor_icon);
erasor_icon.alpha = 0;
addChild(arrower_icon);
arrower_icon.alpha = 0;
brush.buttonMode = true;
erasor.buttonMode = true;
arrower.buttonMode = true;
//------------------addEventListeners
brush.addEventListener(MouseEvent.CLICK, changeToBrush);
erasor.addEventListener(MouseEvent.CLICK, changeToErasor);
arrower.addEventListener(MouseEvent.CLICK, backToNormal);
addEventListener(Event.ENTER_FRAME, updateMouse);
//_________________function
function changeToBrush(e:Event)
{
b_clicked = true;
e_clicked = false;
a_clicked = false;
//call to function that draws here
//create a shape to draw ini and position it over the drawinb board.
var canvas:Shape = new Shape();
addChild(canvas);
canvas.x = drawingBoard.x;
canvas.y = drawingBoard.y;
//drawingBoard event handlers control drawing on the drawingBoard (to canvas)...based on the respective event types
drawingBoard.addEventListener(MouseEvent.MOUSE_DOW N, startDrawing);
drawingBoard.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
drawingBoard.addEventListener(MouseEvent.ROLL_OUT, stopDrawing);
/*Set up the color picker*/
var selColor:Number;
//selecting Colors
cpColor.addEventListener(ColorPickerEvent.CHANGE, changeHandler);
function changeHandler(event:ColorPickerEvent)
{
selColor=event.target.selectedColor;
}
//this starts teh drawing process when the user clicks on the canvas.
function startDrawing(event:MouseEvent):void
{
//set up the drawing API with selected starting at mouse location
canvas.graphics.lineStyle(selSize, selColor);
canvas.graphics.moveTo(canvas.mouseX, canvas.mouseY);
//create an event listener for the mouse moving so that it can draw lines on the canvas
drawingBoard.addEventListener(MouseEvent.MOUSE_MOV E, whileDrawing);
}
//when the user clicks the drawing board, this function will be called
function whileDrawing(event:MouseEvent):void
{
canvas.graphics.lineTo(canvas.mouseX, canvas.mouseY);
}
//when drawing has stopped, this function removes the event called whileDrawing
function stopDrawing(event:MouseEvent):void
{
//prevent mouse movements from drawing until startDrawing is called again during MouseDown
drawingBoard.removeEventListener(MouseEvent.MOUSE_ MOVE, whileDrawing);
}
//clear the drawing on the canvas
clear_btn.addEventListener(MouseEvent.CLICK, clearCanvas);
function clearCanvas(event:Event):void
{
canvas.graphics.clear();
}
}
function changeToErasor(e:Event)
{
e_clicked = true;
b_clicked = false;
a_clicked = false;
//call to function that erases here
var eraserIcon:Boolean = false;
var theErasor:MovieClip = new eraseSize();
erasor_icon.addEventListener(MouseEvent.CLICK, erasorSize);
function erasorSize(event:MouseEvent):void
{
getTheSize(event.currentTarget);
}
function getTheSize()
{
stage.removeEventListener(MouseEvent.MOUSE_MOVE, cursorFollow);
selectedSize: 15;
eraserIcon = true;
}
function cursorFollow(event:MouseEvent)
{
addChild(theErasor);
theErasor.x = stage.mouseX;
theErasor.y = stage.mouseY;
}
function hideTool()
{
if(eraserIcon == true)
{
stage.removeEventListener(MouseEvent.MOUSE_MOVE, cursorFollow);
removeChild(theErasor);
eraserIcon = false;
}
}
}
function backToNormal(e:Event)
{
a_clicked = true;
b_clicked = false;
e_clicked = false;
}
function updateMouse(e:Event)
{
if(b_clicked == true)
{
Mouse.hide();
erasor_icon.alpha = 0;
brush_icon.alpha = 1;
brush_icon.x = mouseX;
brush_icon.y = mouseY;
brush_icon.mouseEnabled = false;
}
else if(e_clicked == true)
{
Mouse.hide();
brush_icon.alpha = 0;
erasor_icon.alpha = 1;
erasor_icon.x = mouseX;
erasor_icon.y = mouseY;
erasor_icon.mouseEnabled = false;
}
else if(a_clicked == true)
{
Mouse.show();
arrower_icon.alpha = 0;
brush_icon.alpha = 0;
brush_icon.x = mouseX;
brush_icon.y = mouseY;
brush_icon.mouseEnabled = false;
erasor_icon.alpha = 0;
erasor_icon.x = mouseX;
erasor_icon.y = mouseY;
erasor_icon.mouseEnabled = false;
}
}
//set the brush size
var selSize:uint = 5;
s1.buttonMode = true;
s2.buttonMode = true;
s3.buttonMode = true;
s4.buttonMode = true;
s5.buttonMode = true;
s6.buttonMode = true;
s7.buttonMode = true;
s8.buttonMode = true;
s1.addEventListener(MouseEvent.CLICK, setTheSize);
s2.addEventListener(MouseEvent.CLICK, setTheSize);
s3.addEventListener(MouseEvent.CLICK, setTheSize);
s4.addEventListener(MouseEvent.CLICK, setTheSize);
s5.addEventListener(MouseEvent.CLICK, setTheSize);
s6.addEventListener(MouseEvent.CLICK, setTheSize);
s7.addEventListener(MouseEvent.CLICK, setTheSize);
s8.addEventListener(MouseEvent.CLICK, setTheSize);
function setTheSize(event:MouseEvent):void
{
getTheSize(event.currentTarget);
}
function getTheSize(size):void
{
if(size == s1)
{
selSize = 3;
}
else if(size == s2)
{
selSize = 5;
}
else if(size == s3)
{
selSize = 7;
}
else if(size == s4)
{
selSize = 9;
}
else if(size == s5)
{
selSize = 11;
}
else if(size == s6)
{
selSize = 13;
}
else if(size == s7)
{
selSize = 15;
}
else if(size == s8)
{
selSize = 17;
}
}
How can I remove the part of vector drawn? Please help me since it drives me crazy for weeks! Thank you very much.
Brush Tool And Eraser Tool Troubles
i've been using flash for over a year and a half and i've NEVER came across this problem.
when i go inside a movieclip to edit it, it won't let me use the brush tool or eraser.
unless i draw a circle around the area i want brushed or erased.
what the crap did i do?
keep in mind that it works normal when i'm on the main timeline.
thanks for any help!
-nolen
Fill Tool - THE MOST ANNOYING TOOL EVER
I'm trying to draw stuff, but the fill tool never works when I want it to. I try to fill something in, so I mess with the options till it works, but sometimes.. I CANT FILL IT IN AT ALL! Soo, then I have to do it manually which is really annoying. I CANT WORK LIKE THIS! Is there any way to make it not stupid?
3rd Party
I need 2 software's: 1 make Screensavers from flash and 1 make "Pop up comercials"...u know...appers OVER the page like a pop-up that is invisible!
WHAT'S THE NAME'S OF THESE SOFTWARE'S ????
3rd Party Swt
Looking for the: "save as generator template option"
I did not have any luck with the swt file creation from flashMX 2004.
I have an old file that used generator to make a template. was woundering if "one" can you export the FLA to a swt file or "two" is there a 3rd party software out there that still does it...
like generator did in flash 4
Thanks for any insight.
Looking For A Party
Hi, I can't seem to find anything that closely fits the effect I am looking for. I'd like to find a tutorial or the like of exploding confetti using particles. I am going to try to edit a snow effect to get what I'm looking for but I wonder if anyone's seen something closer to what I am looking for??
Let's Party
hehe.. funny stuff
http://512kb.net/flash5.htm
Which 3rd Party Program Is Better?
I am currently developing some software that will utilize file writing and reading through a flash program, and need to buy a third party program to help me with this. Between Flash Studio Pro and SWF Studio which do you guys think is easier to use and has the most/best features. Also, anyone know if either of these has a 'kiosk' mode? I tried to figure it out with flash studio pro in the compiler program but to no avail. For some reason, it didn't disable all the input like it said it would :P. Thanks.
Also, SWF studio says it uses SMTP to send mail, does that mean it would have to prompt a box for the user to send the mail? I want to be able to send it in the background if thats possible, without them having to click any annoying boxes.
3rd Party Tools
Does anyone know if there is any software out there that can convert a powerpoint presentation to a.swf?
thanx
3rd Party Software... Where?
how do i get 3rd party software. is it a program, or is it many programs. anybody know where i can buy/download it?
3rd Party Software
Hello,
I'm wondering what 3rd Party software exists that helps to create custom Flash Stand-Alone Projectors. Preferably for creating CD-ROM content all through Flash (with Director thrown in for Video content).
Any suggestions?
Thanks
Flash 3rd Party ...
Hello,
What is there in the way of 3rd party software for flash that can do things like write to files on the users machine, edit the users registry and create projectors (or standalone flash pieces) that connect to the internet for live data ?
Can anyone advise me on this - and/or point me to some articles?. Who are the players in this field?. I know about http://www.multidmedia.com/ but are there any other that I should know about?
Thanks,
Stephen.
LoadMovie With 3rd Party Url
Hi Flash guru, I ran into a big obstacle and need you guys' help badly..
In http://www.mysite.com/my.swf, I have something as follows:
loadMovie("http://www.3rdparty.com/3rdparty.swf", container_mc);
The 3rdparty.swf is successfully loaded and played in the top left corner of my.swf, however when I tried to center the 3rd party swf by accessing this._width and this._height inside the onClipEvent (load) of container_mc, I got undefined values. After some debugging, I learned that every attribute I can obtain through container_mc related to 3rdparty.swf is undefined. I guess that's because of the domain security thing. I went through all the posting related to crossdomain.xml and System.security.allowDomain but no luck. Since I have no control over the 3rd party domain and what's in the 3rdparty.swf, what can I do to access 3rdparty.swf's attributes such as _width, _height, _currentframe, this._totalframes, etc?
Thanks a lot in advance..
3rd Party App For Swf Resizing?
Hi there,
I have created an animation in one size, but now have to resize this animation in 3 more ways to be used on a range of different digital media displays (tvs).
So was wondering if there is a simple 3rd party application that can resize .swf files and maybe also change the frame rate?
I am aware that I could set the dimensions in the HTML file but with what I'm working on there is no need for an html page let alone can work with an html page.
Thanks heaps.
Third Party Tools
What are the other tool available other than Zinc 2.5 to create desktop application.
Flash 3rd Party ...
Hello,
What is there in the way of 3rd party software for flash that can do things like write to files on the users machine, edit the users registry and create projectors (or standalone flash pieces) that connect to the internet for live data ?
Can anyone advise me on this - and/or point me to some articles?. Who are the players in this field?. I know about http://www.multidmedia.com/ but are there any other that I should know about?
Thanks,
Stephen.
Masking A 3rd Party App
Hi guys, first of all sorry for the newbie question.
I have a really small amount of experience in flash...and I've used Macromedia Director before and had fun with that, but I just wanted to see if this was possible.
I currently work in a large centre which allows people to interact with PCs. What we want to do is allow them to use a new piece of animation software but only a small number of the buttons, such as Take Pic, Stop and Play for example and not be able to use the rest of the machine.
Is it possible through Flash to build a type of shell which would take up the full screen and also communicate with the third party program? and if so could anyone be brilliant enough to point me in the right direction? *begs*
Thanks in advance.
3rd Party IDEs For As3?
Anybody know of any good 3rd party IDEs for AS3 that will also compile AS3?
I'm running windows.
Thanks
Flash 3rd Party ...
Hello,
What is there in the way of 3rd party software for flash that can do things like write to files on the users machine, edit the users registry and create projectors (or standalone flash pieces) that connect to the internet for live data ?
Can anyone advise me on this - and/or point me to some articles?. Who are the players in this field?. I know about http://www.multidmedia.com/ but are there any other that I should know about?
Thanks,
Stephen.
Is Swf + Third Party Program + Database Possible?
is it possible to have a game server or third party program for a simple game that communicates from swf then passess/process it into a game server/third party program then passes the result to a database? I know it's easier to pass variables from swf directly to a database but i just wanted to secure them that's why i wanted to know if it's possible. If it is, could someone show me how or give me some idea on how to make it work. Thanks in advanced.
Accessing Third Party Tools
Hi everybody!
Is there a way to access a third party tool every time my movie is loaded through a web page?
What I am trying to do is whenever someone accesses my web page (which will be a Flash MX movie), I want to be able to access the third party tool to retrieve the latest information and display it on my page. Something like a real-time stats info. page.
Can this be done through Flash or would it be easier to do through html/javascript?
Any help/advice would be appreciated.
Thanks,
- Alex
Anyone Use Ulead.com For 3rd Party Pulgin's?
I was looking for a way to make Lens flares, came across some1 that posted the site, so went there and found a cool freeware:
Ulead Particle.Plugin
Eight natural particle effects for images and selections - smoke, fire, bubbles, clouds, rain and more.
But the download not working, wondering if anyone has it willing to upload so I can get it, its 2.1meg file
Loading An External 3rd Party .swf?
Here's my dilemma. I have created several movies in Camtasia Studio and have converted them to .swf files. I understand and can create preloaders within Flash and can preload external Flash movies using the "load movie" command via _root.movieclip, etc. However, I'm not quite sure how to preload an external .swf from another application. I know this is something that is probably extremely easy, but I'm blanking out here. Can someone please explain how I can do this? Thanks!
Interactive Superbowl Party
I'm wondering if someone could point me to a good tutorial on this.
I need to make a 10 x 10 grid that people can access online and they can click on a square and write their name in it. Then it's saved in the grid and no one else can write their name in it.
That's all. Very simple. Just something where people can store there names. Any help or direction would be swell. Thanks.
Flash 3rd Party Filters?
Does anyone know of good 3rd party filters available for Flash 8? (free or for purchase?) I'm looking for things like type effects and motion effects, beyond the standard drop shadow, blur, etc.
thanks!!
susan
How Do You Reach A Third Party Extension?
I installed the RedGiant extensions for FMX 2004 and I noticed that they were exe files to install. They do not appear in the extension manager. I can't figure out how to use them. Can someone help me out please?
Good Third-Party AS3 Editors
From the look of things, Flash's built-in IDE is a little harder to work with than I'd hoped. I've heard plenty of people complaining about it, but I never gave it much thought. The auto-format post in the CS3 topic shook me up a bit, though. Maybe I should try out a third-party Actionscript editor and see if I like anything that's out there.
I have a Mac, but I don't think I should limit this thread to Mac software. Does anyone have any software they suggest, for either platform?
How Do You Reach A Third Party Extension?
I installed the RedGiant extensions for FMX 2004 and I noticed that they were exe files to install. They do not appear in the extension manager. I can't figure out how to use them. Can someone help me out please?
Third Party Text Movie
I created a third party text movie on flash typer, the text is white and the background is black, I loaded the movie on my flash mx and it seems to work except the background is always white, so my text does'nt show up?????? I already tried the host with a black background
anybody?
|