Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Save My Source File



The swf files download to temporary internet folder before showing up. I want to know is there any way , a script or technique in flash that the swf file does not download into the temproray internet folder so that my source file is safe from any person using decompilers.



ActionScript.org Forums > Flash General Questions > Other Flash General Questions
Posted on: 10-06-2005, 09:11 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Visual Source Save
Has anyone worked with Visual Source Save with the new Flash CS3? I am looking for information on how they work together. Thanks!

Save Down Tutorial Source Files
Can someone save this down to mx2004 for me?
http://www.kirupa.com/developer/flash8/slidingMenu5.htm

Save A Jpeg From Flash 8, Help With Source Code
This could potentially be useful to a lot of people out there.

I have been deconstructing the save bitmap script from, http://www.flash-db.com/Tutorials/snapshot/. Trying to turn it into a really simple application a lot of people could use.

Here is where I am at, (FLASH 8 player required).
(I had to take this link down, in fear of blowing out my bandwidth on my site, source code is below...)

It is simply duplicating a movie clip as bitmap data and then passing it to a php script that then turns it into a jpeg. Pretty cool and potentially useful.

The problem, as you probably have seen is that the color shifts a lot on conversion. I am guessing the problem is in the php script...

I am not a php guru, any of you?

THE PHP CODE:

PHP Code:



<?php    //If GD library is not installed, say sorry    if(!function_exists("imagecreate")) die("Sorry, you need GD library to run this example");    //Capture Post data    $data = explode(",", $_POST['img']);    $width = $_POST['width'];    $height = $_POST['height'];    //Allocate image    $image=(function_exists("imagecreatetruecolor"))?imagecreatetruecolor( $width ,$height ):imagecreate( $width ,$height );    $background = imagecolorallocate( $image ,0 , 0 , 0 );    //Copy pixels    $i = 0;    for($x=0; $x<=$width; $x++){        for($y=0; $y<=$height; $y++){            $r = 255-hexdec("0X".substr( $data[$i] , 0 , 2 ));             $g = 255-hexdec("0x".substr( $data[$i] , 2 , 2 ));             $b = 255-hexdec("0x".substr( $data[$i++] , 4 , 2 ));            $color =  ($r << 16) | ($g << 8) | $b;             imagesetpixel ( $image , $x , $y , $color );        }    }    //Output image and clean    header( "Content-type: image/jpeg" );    ImageJPEG( $image );    imagedestroy( $image );    ?>




THE FLASH CODE:

ActionScript Code:
/**
Screenshot and jpg output
**/
import flash.display.BitmapData;
import flash.geom.Matrix;

//Buttons handlers. Should add an extra function because delegate doesn't allow to pass parameters
shaF.onPress = mx.utils.Delegate.create(this,makeShadow);

//Helper functions to pass parameters
function makeShadow() { capture(0) }

/*
create a function that takes a snapshot of the Video object whenever it is called
and shows in different clips
*/
function capture(nr){
    this["snapshot"+nr] = new BitmapData(output_vid._width,output_vid._height); 

    //the bitmap object with no transformations applied
    this["snapshot"+nr].draw(output_vid,new Matrix());
    var t:MovieClip = createEmptyMovieClip("bitmap_mc"+nr,nr);
   
    //positions clip in correct place
    //t._x = 350; t._y = 10+(nr*130); t._xscale = t._yscale = 50
   
    //display the specified bitmap object inside the movie clip
    t.attachBitmap(this["snapshot"+nr],1);
output(nr);
    //attachMovie("print_but", "bot"+nr, 100+nr, {_x:t._x+t._width+50, _y:t._y+t._height/2})   
}
//Create a new bitmapdata, resize it 50 %, pass image data to a server script
// using a LoadVars object (large packet)
function output(nr){
        //Here we will copy pixels data
        var pixels:Array = new Array()
        //Create a new BitmapData
        var snap = new BitmapData(this["snapshot"+nr].width, this["snapshot"+nr].height);   
        //Matrix to scale the new image
        myMatrix = new Matrix();
        myMatrix.scale(1, 1)
       
        //Copy image
        snap.draw(this["snapshot"+nr],  myMatrix);

        var w:Number = snap.width, tmp
        var h:Number = snap.height
        //Build pixels array
        for(var a=0; a<=w; a++){
            for(var b=0; b<=h; b++){
                tmp = snap.getPixel32(a, b).toString(16)
                pixels.push(tmp.substr(1))
            }
        }
        //Create the LoadVars object and pass data to PHP script
        var output:LoadVars = new LoadVars()
        output.img = pixels.toString()
        output.height = h
        output.width = w
        //The page (and this movie itself) should be in a server to work
        output.send("show.php", "output", "POST")            
}
stop()

Save File In Server And Save File In Clients Hd
i dont know how to do that using actionscript 5
i need 2 codes
one to write to the server a txt file
and other to write to clients hd
someone told me that you can do that, but i cant find it


if anyone can help, thank you!!

Changing The Frame Rate Of Shockwave File Without Having Source File (FLA)
how can i change the frame rate of a shockwave movie without having the source (Fla) file?? please help sooon.......

FILE UPLOAD Check It Out Source File Too
upload anything stupid an I'll have to pull it...

http://actualpixel.com/demo/upload.swf

what do ya think? still a work in progress...

keen for feedback

additions

etc...

luigie PIRATE!

Weird .as Bug -- When Saving .as File, Flash Forces 'save As', Then Creates .TMP File
has anybody seen this???

when trying to save an .as file (the file already existed), instead of it being saved, i get a 'save as' dialog from Flash

if i click 'save', i get a prompt saying the .as file already exists and do i want to overwrite it...

if i click 'yes', the file is saved and then in the directory where the .as file is saved i get something like this, Trace.as~RF11025e.TMP

the .as file in question, Trace.as, i had first saved on my PC (windows 2000), i had then saved the file to a borrowed laptop (windows xp), and now saved back to my PC...

this is when i started getting this weird bug

does anybody know what's going on???

Weird .as Bug, When Saving .as File Flash Forces 'save As', Creates .TMP File
has anybody seen this???

when trying to save an .as file (the file already existed), instead of it being saved, i get a 'save as' dialog from Flash

if i click 'save', i get a prompt saying the .as file already exists and do i want to overwrite it...

if i click 'yes', the file is saved and then in the directory where the .as file is saved i get something like this, Trace.as~RF11025e.TMP

the .as file in question, Trace.as, i had first saved on my PC (windows 2000), i had then saved the file to a borrowed laptop (windows xp), and now saved back to my PC...

this is when i started getting this weird bug

does anybody know what's going on???

Weird .as Bug, When Saving .as File Flash Forces 'save As', Creates .TMP File
has anybody seen this???

when trying to save an .as file (the file already existed), instead of it being saved, i get a 'save as' dialog from Flash

if i click 'save', i get a prompt saying the .as file already exists and do i want to overwrite it...

if i click 'yes', the file is saved and then in the directory where the .as file is saved i get something like this, Trace.as~RF11025e.TMP

the .as file in question, Trace.as, i had first saved on my PC (windows 2000), i had then saved the file to a borrowed laptop (windows xp), and now saved back to my PC...

this is when i started getting this weird bug

does anybody know what's going on???

How To Reveal A .swf Server Directory Behind A Host Html Index File To Save A Flash File To HD?
I FIND YOUR FLASH FORMAT EXTREMELY USER-UNFRIENDLY.
I spent two weeks to figure out how to save a complete .swf file to my local drive.
Finding 48 files behind a main html doc hosting those .swf's took 48 hours.
(Now I can't move my arm anymore due to RSI!)

No application to save a Flash file, seems to be able to do that in 1,2,3 convenient steps.
I always get bits and pieces or individual graphics.

I NEVER GET THE ENTIRE MANUAL the way I can browse the Flash file in my browser.
I am seriously thinking of never browsing a Flash file again if there is no solution to download e.g. a manual of my digital camera. I have the right to browse such a file at my convenience either on or offline! Online it's just impossible due to server overload.

Now I only get the desadvantages of the format to deal with (e.g. tons of spamming advertising) whereas I should be able to enjoy the benefits. Eventhough I gave the manufacturer the right to fill up 10 MB on my drive, I never got a file on my PC. And even when I did, I wouldnt know where to find it...
I hope Adobe would listen to the user more often...

WHY DON'T YOU BUILD SOLUTIONS AS EASY AS A RIGHT MOUSE CLICK
ALLOWING FOR SAVING A FLASH FILE!
That can't be rocket science, is it?

Thank you for paying attention to your customers.





























Edited: 10/29/2007 at 11:45:18 AM by VOGAN

Save Vector File File From Online Flash Tool
I am creating logo designing flash tool, user can come to the site and select symbol, add a name and create logo,
I did that part ,

but I need user to save the logo as a vector file. Is this possible? Any software for this

Regards!
Nalinda

Can't Save File And Can't Save As Either
Sometimes, usually after I've been working with Flash for a while, it won't let me save my work. I get an error dialog saying the file is opened read-only, or another user has the file open. What is most disturbing is that I can't even do a "Save As"--I get the same message. What's even worse, if I quit without saving, it deletes the file on disk! This happens with XP x64 as well as XP Pro.

Any suggestions?

Help Looking For A Source File.......
Hi guys this is my first post, and i hope i make sense in what im looking for.

Here goes....... ok basically i want an image slider (not sure if that the correct name) Imagine you have a strip of 10 images and a masc so only a few at a time show, when you move the mouse left the picture strip scrolls left and the same with right.
Ive found a few but id like one with buttons, so that rather than moving mouse to the left you have to mouse over the left arrow so that the pictures scroll. As the ones ive seen without buttons just scroll uncontrolably with every mouse movement.

I hope you can help, and if you need any clarification in what im looking for please ask!

Superb site by the way guys!

Help Looking For A Source File......
Hi guys this is my first post, and i hope i make sense in what im looking for.

Here goes....... ok basically i want an image slider (not sure if that the correct name) Imagine you have a strip of 10 images and a masc so only a few at a time show, when you move the mouse left the picture strip scrolls left and the same with right.
Ive found a few but id like one with buttons, so that rather than moving mouse to the left you have to mouse over the left arrow so that the pictures scroll. As the ones ive seen without buttons just scroll uncontrolably with every mouse movement.

I hope you can help, and if you need any clarification in what im looking for please ask!

Superb site by the way guys!

Help With A Source File
Can anyone tell me why this effect does not work when publish settings are set up for flash player 8? im looking over the code and just cant find why it wont work. Any help would be amazing
http://www.flashkit.com/movies/Effec...6578/index.php

Fla Source File
Hi! I wonder is there any fla source file which I can find from the internet. I hope I can learn from fla source file to create special effect. I will happy to hear from everyone. Thanks.

yann

Fla Source File
Hi! I wonder is there any fla source file which I can find from the internet. I hope I can learn from fla source file to create special effect. I will happy to hear from everyone. Thanks.

yann

Fla Source File
Hi! I wonder is there any fla source file which I can find from the internet. I hope I can learn from fla source file to create special effect. I am happy to hear from everyone. Thanks

Yann

Can I Take The First Frame Of The FLV File And Save As A JPEG File ?
Dear,

Is it possible to take a snapshot photo with a webcam, and save it to JPEG file on server ?

I have successfully taken a snapshot picture using Flash and Flash Comm Server, But it is stored on the FCS server as a FLV file. Is it possible to convert the first frame of FLV file to a picture file (like a JPEG) and shared this picture with others ?

Any Idea ?

Kevin

Can I Take The First Frame Of The FLV File And Save As A JPEG File ?
Dear,

Is it possible to take a snapshot photo with a webcam, and save it to JPEG file on server ?

I have successfully taken a snapshot picture using Flash and Flash Comm Server, But it is stored on the FCS server as a FLV file. Is it possible to convert the first frame of FLV file to a picture file (like a JPEG) and shared this picture with others ?

Any Idea ?

Kevin

Flash 8 Pro Corrupting FLA File On File/Save As?
In working for the first time in Flash 8 Pro and still within the 31 day trail, I'm saving my files often using File/Save As on Windows Xp Pro SP2. Sometimes, I get a number of dialog boxes, about 5 that say: "Page XXXXXXXXX of your document has been damaged. You should delete it.

From this point on, the FLA files, both before AND after the File/Save As are corrupted.

Upon inspecting the items in the Library, the movies don't show in the Library Window and the JPG says "BitMap not loaded".

Finally, running the movie, the animations run choppy and my whole project is ruined.

Is this a known problem and is there a work around? I'm not 100% sure it is the File/Save As operation that is causing the problem, but that is when I first notice there is a problem.

Thanks in advance,
George

File Save Error Erases .fla File
I just had a near catastrophe happen...
I had Flash MX 2004 Pro up and a movie file open that I saved Fri before going home. Monday I didn't get to the file but it was still up in my Flash app. Today I went and made changes to the file and tried to Save. It brought up the Save As dialog for some strange reason and had movie.fla.fla as the suggested file name. I changed it to movie.fla and it asked if I wanted to replace it. I said yes and then it gave me an error msg saying it could not be saved (no more details than that). I then tried Save and gave it a new file name. It gave the same error msg. I then tried Save As and a new file name and it too gave the same error msg. I don't recall exactly but it may have said it couldn't save due to a network error. I was trying to save on a file server across the network. I finally decided to quit out without a save since the changes I had made were minimal and could easily be redone. After quiting out, I went to open the movie.fla file and it was GONE!!! Apparently when I said yes to overwrite the file, it dumped it and then failed to write the new version!!! I ended up with NOTHING! Macromedia...are you listening...How about writing a new file and if no errors, THEN dumping the older version. If not for a backup done nightly here, i would have been set back weeks of work!!!

Source File Problem Please Help
Hi all

Problem with source file, that i made graphic adjustments, i have changed the layout and made the buttons smaller and made them closer together, because the space available to me is limited the only changes i made to the actionscript was to change the text from (german - i think to english).....the source file that i changed is

Calender- andreas- 6136 - it is a kind of schedule calender in the movies section

Problem is that in making changes to the layout the alligment of the date buttons with the days is now all skew wiff ( not in allignment) .......i cannot seem to find how to fix this, i found the mcs in the library, and made changes to teh button - primarily to make it smaller .......what i cannot find though is how to fix the alligment to what i have now got...
can anyone out there help me pleasee..........
I don't know whether it is a hidden clip of some sort or actionscript related

Please help

Thanks

J

The Price Of A Source File?
He people!

I've got a sticky situation here.

I have customer, who I have previously done work for (Flash presentations), who have just asked me for the source files of the work so they can send them to another company that specialises in Voice-Overs to go in the files.

However, there was never an agreement that I would release the source files ever.

This Voice-Over company is also a design agency - so I'm sure yuo can imagine my dilemma - don't want to annoy my customer and loose any possible future work, but also don't want my source files going to another design agency, when I could put the sound files in myself.

But....

What if the customer was to ask to buy the source files?

What kind of a percentage on the original price do I charge him?

Cheers

Deadhands

Source File List
Hi All,

I am trying to find a thread that contains a list of game resoucre site (open files etc) there used to be one on here somewhere but I can't find it anywhere and I've run out of search options as far as keywords go!

I know this is a shot in the dark - but hopefully one of you will know the thread I mean!

FLA Source File Website HELP
OK calling all people interested in being part of a website dedicated to fla's!

What we want to do is start up a web site with a huge stock pile of fla's all under dedicated descriptions for example Pre-Loaders, Tweening, Action Script ect ect ect.

Anybody interested in helping with the design of the site or donating some fla's please post here.

Please Help Me Unpack This Source File
Hello,

I have downloaded this .fla file as I would like to create a similar effect. However, I'm a bit confused as to what exactly is going on.

I'd be really grateful if someone could just explain the basic principles and I'll take it from there.

Many thanks

How Do I Link A Txt File As A Source
say i have a fla, and in that i want one scene to have a block of text that is displayed based on a seperate txt file, from notepad or simpletext or whatever.

how do i go about making something like this?

Help.. How To Source From Text File?
From like notepad or soemthing.. using flash MX ? thanks

Source .fla File For An Mp3 Player?
I've been using a primative player in past versions of my site, but I'd like to have a player that has a loading indicator before a song begins to stream, and also << and >> buttons. A text field displaying the current track would be good too. And a list to choose from.

Uhh, sounds like a lot, but I've frustrated myself for two days working on one, so I decided to ask here if there was an fla I could examine...

Basically what I want is a player similar to 2A's. (http://2advanced.com)

Any help is greatly appreciated.

[MX04] Looking For A Source File
Hiya,

I've seen an effect used on a few different sites where an image is placed underneath a masked area and when a button is selected the image moves UNDERNEATH the masked area to the selected part of the picture. Its a nice but simple effect and i used to have a source file for this but i can't seem to find it anywhere in the movies section of flashkit since i don't know what to search under...

I've seen it used within menus for websites or even image galleries...

anyone have any ideas where i can find this... or what to search for it as?!

Thanks in advance

Help I Can't Open My .fla Source File.
Hi,

For some reason i cannot open my source file! Gulp!
Can someone please try and open it for me?
On my PC or Mac Flash 8 just freezes.........

The file can be downloaded from:

http://www.gqtestsite.co.uk/Andy/warley_plans_final.zip

Andy

Using A Loaded SWF For Which I Don't Have The Source File
Hi everyone,

Hopefully this is an easy one for you... I have a loaded SWF that plays through and stops at the end. Once it ends, I'd like the main timeline to proceed to the next scene, to continue with the demo.

Is there a way to do this without having to have access to the FLA for the loaded movie?

Thanks!

I Cant Get The Source File To Work
Here is a source file i got from this site
http://www.senocular.com/flash/source.php?id=0.107

i have tried to recreate it by copying everyting in it, it still isn't working
if anyone can look at this and help me out that would be great!

My File

Swf Resolution Is 3/4 Than In The Fla Source File
say if I use milimeters as unit, and draw a line 4cm long, and export, then in the swf , the size will be only 3 cm if you measure it on the screen with a ruler.
Is there any way, you can make the swf play as the same size in fla design interface?

Source AS File For NetConnection?
I've been reading the source code for the Flash Remoting classes. Connection.as extends NetConnection.as which appears to be a class native to Flash. I can't find the source for it. I searched my entire hard drive and found two classes that appear to be just interfaces -- they don't do anything (see below). Where is the source for the NetConnection class?

I also found a file called NetConnection.aso which appears to be some kind of compiled binary file. I'm guessing the functionality is inside it.







Attach Code

// C:Program FilesMacromediaFlash MX 2004enFirst RunClassesNetConnection.as
intrinsic class NetConnection extends Object {
var isConnected:Boolean;
var uri:String;

function getDebugConfig( id ):NetDebugConfig;
function getDebugID();
function getService( serviceAddress, responder ):Object;
function setCredentials( principal:String, password: String ):Void;
function setDebugID( id ):Void;
function trace( obj ):Void;

function connect(targetURI:String):Boolean;
function close():Void;
function call(remoteMethod:String, resultObject:Object):Void;
function addHeader();

function onStatus(infoObject:Object):Void;
function onResult(infoObject:Object):Void;
}




//C:Documents and SettingsJaitheLocal SettingsApplication DataMacromediaFlash MX 2004enConfigurationClassesNetConnection.as

//****************************************************************************
// ActionScript Standard Library
// NetConnection object
//****************************************************************************

dynamic intrinsic class NetConnection
{
var isConnected:Boolean;
var uri:String;

function NetConnection();

function addHeader();
function call(remoteMethod:String, resultObject:Object):Void;
function close():Void;
function connect(targetURI:String):Boolean;

function onResult(infoObject:Object):Void;
function onStatus(infoObject:Object):Void;
}

Videoplayer.swf Source Fla File?
Hi,

Is it possible to get hold of the .FLA source file of the videoplayer.swf in FMS 3.5 please?

I would like to be able to theme the colors for our players to the corporate themes if possible.

How To Modify Swf Without Source File?
I will append a button to a Swf file,but the button wasnt inside the SWF file and I wasn't have the SWF file's source file?

Please tell me which software can do it ?

List the name or URL,Thankyou!

-----
Sorry,I have a little English.

Using The FLA Source File Components
How do I put those examples to good use? The one I got (this one) uses only one instance for all the buttons...

...anyway I can change that?

Source File Instructions?
Sorry, new guy... Are there instructions on how to use (customize) the downloadable fla source files?

Weeds Fla Source File
i was wondering if someone could explain a few things about the code in this fla. it's found under the experimental actionscript, last page of the fla source files section.

i've been studying it for a couple days nows and i still cannot figure out how the position of the weeds are being set. i've been trying to change it so that the line_x is at the top of the stage and the weeds point downward, but i'm having no such luck.

i'm guessing the position has maybe something to do with this section of code:

ActionScript Code:
_root.attachMovie("line", "line" + _root.level, _root.level);
    myLine = _root["line" + _root.level];
    _root.level++;
    var line_x = random(_root.myBounds.xMax - _root.myBounds.xMin);


if someone could just break it down what's happening that'd be great! it's been driving me crazy that i'm not figuring it out.

here is the code on the 1st frame:

ActionScript Code:
fscommand ("allowscale", false);
var total_num = 12;
var level = total_num+1;
var myBounds = boundbox.getBounds(_root);
for (i=0; i<=total_num; i++) {
    attachMovie("dot", "dot"+i, i);
    myDot = _root["dot"+i];
    myDot._x = random(myBounds.xMax-myBounds.xMin-50)+26;
    myDot._y = random((myBounds.yMax-myBounds.yMin)-60)+31;
}
stop ();


and this is the rest on the dot:

ActionScript Code:
onClipEvent (load) {
    var follow = false;
    var min_dist = 10;
    var max_move = 20;
    var force = 1.4;
    var a = 3;
    var d = 1.6;
    var newX = _parent._x;
    var newY = _parent._y;
    var myXspeed = 0;
    var myYspeed = 0;
    _root.attachMovie("line", "line"+_root.level, _root.level);
    myLine = _root["line"+_root.level];
    _root.level++;
    var line_x = random(_root.myBounds.xMax - _root.myBounds.xMin);
}
onClipEvent (enterFrame) {
    myXspeed = ((_parent._x-newX)/a+myXspeed)/d;
    myYspeed = ((_parent._y-newY)/a+myYspeed)/d;
    // check mouse distance
    if (Math.abs(_parent._x-_root._xmouse)<min_dist && Math.abs(_parent._y-_root._ymouse)<min_dist) {
        follow = true;
        this.gotoAndStop(2);
    } else if (Math.abs(_parent._x-newX)>max_move || Math.abs(_parent._y-newY)>max_move) {
        follow = false;
        this.gotoAndStop(1);
    }
    if (follow) {
        myXSpeed += (_parent._x-_root._xmouse)/force;
        myYSpeed += (_parent._y-_root._ymouse)/force;
    }
    _parent._x -= myXspeed;
    _parent._y -= myYspeed;
    // adjust line
    myLine._x = _parent._x;
    myLine._y = _parent._y;
    myLine._xscale = line_x - _parent._x;
    myLine._yscale = (_root.myBounds.yMax-_root.myBounds.yMin)-_parent._y;
    myLine._alpha = 20;
}
onClipEvent(mouseDown) {
    newX = random(_root.myBounds.xMax-_root.myBounds.xMin-50)+26;
    newY = random(_root.myBounds.yMax-_root.myBounds.yMin-60)+31;
}

Working Off Of A PRAYSTATION Source File
Praystation has a source file called "Basic Scrollbar with Content". It's basically an inertia horizontal scroll bar.

What Im trying to do is shorten the length of the horizontal scrollbar. Right now it starts at (Left:333) and (Right:700). I want to change the right to 500 so I can have my scroller shorten in length but still scroll the long content.

Here's the code in the content actions:

scrollpos = getProperty("/scrollbar", _x);
postoset = Number((scrollpos*-2))+665;
setProperty ("/content_w_mask/content", _x, postoset);


I guess the "Number((scrollpos*-2))+665" needs to be changed to make t his work..I just dont know what to put. Any suggestions?

Text File As Source..prob
I have a text file which contains the data as &textfield1="......"
&textfield2="...L&T...."
In the textfield2 after "&" the text is not appearing.
Help me out with this prob friends...
Thanks

Do You Want The System Of Exchanging Source File
Anyone who is eager to learn about web-tools(mainly flash)
just visit at http://www.ywd.cc and leave your message in the common forum.
Then, you'll get a FTP approach authority through your Email.

I pay for the web-space. you pay nothing.
As for as I know. the web-space support PHP and mySQL.

Do you have any doubt why do I do this?

I want to learn about flash and so forth.
So I thought I need to have a system of free exchanging source file, analyzing a webpages. helping each other.

We have only 200 MEGA for this.
So the limitation of members is essential.


We can believe someone who we don't know.
That is the reason we can share our FTP approach.

We want someone who want to exhange source files
and exhanage opinions eagerly.

Text File To Load From An Outside Source
I am trying to get Flash to display a text file from another source in Flash.

Basically, i want to make it that this content, say it's 'About Us' where the client talks about what their business is, i want to make the flash file look for a text file and display the text file, so the client can change the descriptive text, but without having to get me to add it in manually each time.

Is there a way I can achieve this?

Thanks

ScrollPane Component - Source A Txt File?
Is is possible to make a .txt file the source of a standard MX scrollpane component? I've seen a number of custom mc's in the 'movies' section of FlashKit, but haven't seen any code snippets to do so with the standard scrollpane.

The next question would then be...can you set a typeface for the scrollpane??

Thanks a Ton!

BlueRhino

Altering Actionscript For A FLA Source File
Hello. I have downloaded a free sourcefile from www.ultrashock.com and I cannot seem to get the interface to work with me correctly. The item im reffering to is in the FLA SOURCE FILES> under NAVIGATION AND INTERFACE> called "3d Spiral Menu". It involves a single movie clip being multiplied 9 times and set behind an invisable button. However, insted of being able to create the movie clip with different names (for example, "main", "forums", etc) they all say the same thing as the first instance "Option". If anyone could show me how to make the options different, it would be most helpful. Thank you!

Here is the Source File

Export Source Of Symbol To New FLA File
I want to build a bunch of movieClips and test them on a test stage.

Once I have got them working, is there a way to export the resulting Symbol and all the graphical elements into a new FLA file?

I know I can export a symbol as a compiled (tokenized) swf, but I want to keep all of my project's FLA's separate...

Please Show Me Where To Add Song Source In This File?
Please can somebody show me how and where to place a song source in the actionscript of this zip file.

It's just a basic flash control that loads and plays one song source.

Copyright © 2005-08 www.BigResource.com, All rights reserved