Problem With .exe Files
Ok,
I'm producing a presentation in flash mx to be delivered on a cd.
the idea is to produce a projector (.exe) file to autorun on the cd.
The problem is that the flash file is too large and complex to be saved as just one .exe file...so is there any way of opening a .exe from another .exe into the same window?
I've tried 'get url', and this will load the second .exe into a different projector window, not really what i want. (id like it to load into the same projector window)
I guess the other solution would be to auto download the flash player from the cd...does anyone know if this is possible?
this is gettin desperate...please help!
thanks
FlashKit > Flash Help > Flash General Help
Posted on: 04-17-2003, 06:41 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Importing Files/ Opening Files In Files/ Adding Files Into Scenes.
Alright Here is the deal.
I got some movies, which are seperate FLA. files, and I want to eventually add all these 4 seperate files, into scenes in one main FLA. file. How do I do this so that I have the symbols ect. I am pretty sure you can't just copy/paste.
Which FLASH** guru out there can lead me in the right direction?
greatly appreciated...
*g.guru.
Retaining Order Of Files Loaded Externally From Large XML Files
Hi everyone,
I was messing around with some old examples, and I ran into an unfinished example where several 30k-100k XML files are loaded and stored as a string into an Array. The code looks basically like:
Code:
//example input: foo.xml%zeeb.xml%blarg.xml
function loadXML(filePaths:String) {
filesArray = filePaths.split('%');
for (var i:Number = 0; i<filesArray.length; i++) {
var xmlData:XML = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = function(success) {
if (success) {
//order of files loaded is messed up here!
parseXMLData(this, filesArray.length);
} else {
//trace(filesArray[1]+" failed to load!");
}
};
xmlData.load(filesArray[i]);
}
}
Basically, when I trace the 'this', the order of the files that are loaded is off. Out of about 10 tries, about 3 times the order is perfect. The remaining 7 times, the order is a bit off. Does anybody have a suggestion on how to ensure the files are loaded prior to the next file being loaded?
I tried placing a while loop that basically delays the clock for a few milliseconds, and that didn't work either. Besides, that is not really a good solution to arbitrarily waste clock cycles. I am guessing some sort of a listener might be needed, but that is where I've hit a wall
Thanks!
Kirupa
Targeting External Files To Text Files In Flash
Gooday all
I am developing a flash site for a movie company and it needs to be 100% dynamic! and must be flash 5 compatible
To put things as simply as I can here goes.
I have a directors page - on this page I have two text fields.
The first text field pulls all the directors names from an external file called directors.html, In this external file I have html hyperlinks which link to each directors bio text (in another external text file), what I want to do is basically target the second text field in flash. i.e. when you are in flash and click one of the directors names his info must appear in the adjacent text field.
you follow?
THIS DOESNT LOOK LIKE A COW!
Loading External Text Files With Links To .swf Files
i am loading a external text file with html links. I would like to know if anyone out there know how to make those links load .swf files, that would work with the levels hierarchy of the original level0 file. I tried passing a variable that would be detected by a movie clip on EnterFrame but no success, maybe I had written something wrong. Loading just the swf file will replace the html page on the browser.
Reading From Files, Manipulating Strings, Writing To Files....
Thanks for your time, if you know anything please help me with the following:
1) I have my movie www.web.com/web.swf that reads the contents of the file www.web.com/news.txt. The file is supposed to contain different notes referring to updates of a site (just an example)
2) Flash loads the text in a variable, right? How can i split it, considering i use as a splitting string something like "|splithere|"
3) How can i hold each update-note in a variable, like when i`m duplicating movie clipes, for example update1 should be held in u1, update 2 in u2 and so on... (or as visual basic used - i`m and ex vb'er - u(1) u(2) and so on)
Explorer Type View Of Files Sending Files
I'm building a website to enable a kind of online music jam session. The user will choose music files stored on their computer to be uploaded to other users' "shared folder" (eg. c:mysharedfolder on user1 to c:mysharedfolder on user2 - similar principle to Kazaa I guess).
How do I display a list of the files contained within the users "shared folder" (like windows explorer)?
Secondly, is it possible to send someone a file directly to their "shared folder"?
Many thanks,
Simon
Problem Importing Flash Files Or Captivate Files
I have Flash MX and am having problems importing Captivate files or flash files that I have exported from Captivate. When I import a flash file from Captivate it will fill in the keyframes but there is nothing on the stage. Everything is in the library but it kind of defeats the purpose for it to not be on the screen.
The other option is to export from Captivate to Flash; however, when I try to do that it tells me I need Flash MX 2004. I do...it's just not seeing it for some reason.
Anyone have any ideas?
Thanks,
Bonnie
Flash, Loading Files & Temp Internet Files
Hi guys,
I have a problem with files getting stored in the Temp folder of a client's machine.
When I host an SWF file on a site, that swf file gets downloaded to the client's (in this case , my) machine in the Temporary Internet Files. Now, if that same SWF is loading a text file or an XML file stored on the server to read data, using either LoadVars.load() or XML.load() method and a relative URL as path, that text or XML file also gets stored in the Temp files of the client machine.
I wanted to know, is there a way to prevent the text files and XML files from getting downloaded to client machines ? Or is that the way the load method works ?
If the swf files has a need to make repeated loads of the same file, will it read from this downloaded file or will it make repeated calls to the server ?
Please tell me if I can clarify the problem more.
Thanks for your help
~TNE
Local Files And Creating Outside Text Files
I have two problems.
1: I can't get Flash to link to a local file instead of a website. How do you do it!!
2: I have been trying also to make Flash create a text file. I know how to make Flash load one, but I want it to create one. Is there any way to do this!?!
If anyone has the answers to my questions, i would greatly appreciate responses. Thank you.
Multiple External Text .txt Files In Different Swf Files
I'm trying to have several external files (txt or html) attached to a several swf flash files, loading in different levels of one main movie, for easy updating.
Example is: loadVariablesNum("ext-track.txt", 0);
This I can do, partly working.
Say you click the button for "about" that loads that flash file (in a layer), it fails to load in the relevant external file (the movie loads just not the external text file).
When you open up the "about.swf" on its own, it loads up the external file no problem. It just fails to do it when I am loading it from the main swf movie file that then loads this in a layer.
I can get all the text files working by putting in all the loadVariable parts in the main movie but I need them put into their relevant swf movies.
Does that make sense?
How do you correct, something to do with layers or targetting? I'm sure it'll be easy for you guys, Actionscript ain't my thing.
Thanks.
Text Files Controling Flash Files?
I was looking at some flash templates (older ones from 2002-2003) and they had .swf file controled by text files. Like the pages where you would have to edit in flash to put text..... they had text files labeled the same as the page in the flash file and u could add the text there and it would appear automatically in the flash file. How do i do that??????
How To Load .swf Files In Other .swf Files In HTML Tables?
Ok I need help on figuring out how to place several different flash files in table cells in HTML. basically how to make a flash website, i did the tutorial for it but it just loads .swf files from one movie clip into another. how do you load a .swf file into another .swf file in an html table? for instance say I have 3 rows for my table. each row has one TD cell. inside each cell is one .swf file.
so we have one .swf file in each row. if i click a button in the top row(top .swf file), how do i get it to make a .swf file load into a blank .swf file in the middle row? i want a top menu in flash and i want it to load .swf files into a middle display area. how do i do this with external .swf files that are not all in the same movie? know what i mean? i hope i didnt confuse everyone. basically, can you target a .swf file in a table cell from a .swf file in another table cell? please email me if you know how to help me, thank you I appreciate your time.
tyr
Flash Files Edit Notepad Files?
i was wondering if it is possible to change note-pad, or any other file through a flash (swf) file or not ( by submitting data through a form on the file. )
thanks guys.
Including Exteral .as Files And, Why Aren't My .as Files Using AS3?
Question 1: I need to include up to 3-5 external .as files in my main .fla,
However, include doesn't work in AS3, so how do I do this?
Question 2: everytime I make a actionscript file (.as) in adobe flash 9 they're always using actionscript 2.0, how do I change this!, it counts AS3 code as syntax errors!!!
Any idea's,
Thanks in advance
How To Load .swf Files In Other .swf Files In HTML Tables?
Ok I need help on figuring out how to place several different flash files in table cells in HTML. basically how to make a flash website, i did the tutorial for it but it just loads .swf files from one movie clip into another. how do you load a .swf file into another .swf file in an html table? for instance say I have 3 rows for my table. each row has one TD cell. inside each cell is one .swf file.
so we have one .swf file in each row. if i click a button in the top row(top .swf file), how do i get it to make a .swf file load into a blank .swf file in the middle row? i want a top menu in flash and i want it to load .swf files into a middle display area. how do i do this with external .swf files that are not all in the same movie? know what i mean? i hope i didnt confuse everyone. basically, can you target a .swf file in a table cell from a .swf file in another table cell? please email me if you know how to help me, thank you I appreciate your time.
tyr
FLASH - Flv Files & Importing External Files
Note: this is trying to be done all in Flash... please be patient as I have to explain it...
Here's the scenario... I am currently building a website for a coffee company, and as an introduction to their website, they want to play a short clip of 16 seconds, size 350x250 - fine... The real problem is that I have been asked to make it appear as if it was actual footage on TV - in effect, at super high quality with NO (and I mean, NO) Pixelation... very stringent, but they think I can somehow push the boundaries and work something out!! Also they wish for it to play as soon as the website begins (no chance of preloading!!) - without an option for the user to control the film (as in no play/stop/rew buttons, etc.)
In order to create this, I had to use Final Cut Pro - as this was the only program that passed the 'test' for what was asked... the client has a major issue with the 'fade' to black sections of the film - believing them to look as if they are shimmering (this also being the initial problem with building it directly in Flash). I passed this through all types of compression to achieve the smallest possible file (12MG) - and then from Quick Time Pro - I came up with an immaculate looking, but incredibly large flv file - using the export feature. Total... 82MB, yes MB...
Please note, I am fully aware of compression, but have to iterate this incredible request!!
Rather than attach it to the timeline in Flash, I placed the created FLV file in the same folder and requested on the first line of the timeline - through Actionscript - that it plays the FLV 'progressively'. To my understanding, this file should play whilst not having to load up before hand... (learnt of this from Macromedia website.)
I have seen this method used in a few tutorials, but admittedly the file sizes are approximately 5MB...
After uploading the file (took over an hour), I tested the film and it began to play extremely slow and choppy. After 16 seconds (the expected duration of the clip) the next scene in the timeline began !! The film had actually only progressed about 3 seconds into itself....
I don't think I am necessarily doing much wrong as it is the best solution that I could come up with in terms of keeping the final 'SWF' file to a minimum size so a user will not have to wait it to load up (got Flash files to 24MB - but still too long to load up!!!)
Can anyone think of an alternative method to playing an 82 MB file, or is this just plain ridiculous??
I am at a loss because I am still curious to see if this is actually feasible... if so then maybe you will help me push the boundaries of Internet viewing!!!
ALL comments/suggested will be highly appreciated and definitely considered
Okolom
Swf Files Made From Swishmax Files Won't Play
i produced swf file made from swishmax and when I import it as a .swf or .avi. It won't play. When it imported in the library, it shows me tweens, graphics and a mc.
When I go to the mc, I even put some actionscript to play the animation and stop at the end. But its not working!!
This is just a sample on how it should play, but its not playing in Flash.
http://jemalonzo2001.tripod.com/flas...skytech008.swf
Generating Files (text Files)
Is there a way to save a string to a text file WITHOUT using PHP, CGI, or ASP? I have come across a post a while ago saying that it is possible using MMSave() and if its true, can anyone tell me the syntex for this function?
Converting Wma Files To Aiff Files
Please help!
I am trying to convert a sound clip wma (windows media player file) into an aiff file that i can bring into flash.
do you have any suggestions?
Thank you
Linking Files - Opening Files
I am a novice on a steep learning curve!
I have just taken over a project with lots of flash/swf files which I think probably should have been setup as one file with many scenes. Is it possible to link from one file to another or will I have to start from scratch and copy and paste assets etc.
Also is it possible to create an action script for a 'button' to open a PDF file from within the movie similar to opening a URL?
Editing .fla Files Trough .swf Files?
My question for you is, can I edit my .FLA file through a .swf file?
Forexample can I make and .swf create a movieclip inside a .fla file permanently?
This would help me a lot when I update the news-section of my website...
Displauying Info From Outside Files Other Than Txt Files...
im making a flash site for a computer company and they need to update their inventory everyday. So i thought.. Ill make a flash site that gets info from an outside source that way only the outside source has to be update... but because of messed up formatting in txt files i was wondering if there was anyway to display info from an excel file with cells?
because when i do a txt file there are spaces where id ont want and nothing is uniform... also cant get a scroll bar working with it !!
Uploading Html Files With .swf Files In Them
I created a website and published it in Flash. I then used Dreamweaver to create the HTML file that I would upload to my server. But, when I go to my site, the .swf file does not load.
Both the HTML file and the .swf file were uploaded using an FTP client, so I don't know why it's not showing up.
Saving Html Files As Cfm Files
In older versions of Flash it was possible to tell the html publish setting to be saved with a cfm extension. I am having a hard time seeing how that can be done in the new version CS3. I go into the publish setting and give the file a cfm extension but when it exports it looks like this, ",html.cfm" it's just a pain to have to go back and change the extension after the fact. Am I missing something in the new version?
Thanks,
Opening Files : Saving Files
Hi all, does Actionscript support the creation of simple text files?
For example, I want to create a new text file if one doesn't already exist, and then write to the file if the user chooses to save--just like using a streamreader etc.
If Actionscript supports these methods, could you point me to the documentation?
Thanks
Enabling Your Clients To Edit These Xml Files Or Txt Files In An Easy To Edit Format
Okay so this is an issue i've faced since day one and am growing tired of not having an ideal solution for. I've learned to create files that can be updated via xml or simple .txt to make the updating process easier, but how do you gurus out there bridge the gap by enabling your clients to edit these xml files or txt files in an easy to edit format like your basic cms... but except it would be cms that would update the xml or txt file and then in turn update your swf file.
I'm sure you guys out there rely on many different solutions but i'm just looking for some enlightenment on the different ways to accomplish this and what i could possibly do to be pointed in the right direction.
Thanks ahead of time for any insight.
Midi Files To Wav Files.........
I hope someoone can help........i had downloaded some songs in midi files not knowing flash wont accept them.....how do i convert midi files to wav files...or to a file i can use these in,,,thanks russ
Links In .txt-files To Other .txt Files
I have some text in a .txt file that is loaded into a html-textfield in a swf.
What I would like to do is to have links in this .txt-file that links to other .txtfiles and loads those other textfiles into the same html-texfield in the swf.
I have managed to make it load... but it opens a browser instead. This is the code is use the the .txt-file:
<a href="textfile.txt" target="_level1.myTextField">Load the textfile! </a>
Is it even posible do this?
Thanks for all your help
(I am using AS2, FlashMX(player6).)
.swf Files Into HTML Files
I have a .swf file, and in my html document I add it as an object through dreamweaver, save the html file and then when I open my page, the .swf doesn't even show. But viewing the source, I know it's there.
I can sometimes get part of the swf file to show up. The buttons(just pasted .jpg files converted to buttons) load, but are in charge of changing what the user sees in the content loader..and the content loader doesn't even show up....
When I open my html file made by flash for the swf, it works and is completely fine.
Any suggestions?
Thanks for any help!
-Rachel
Uploading Swf Files Into Other Swf Files
I am having a heck of problem combining a swf file into another swf file. The links on my page have to upload a swf into the bottom current file controled by a button, but none of the action scripts I used have worked.
ActionScript Code:
on(release){
loadMovieNum("movie1.swf", 1)
Can someone help me out?
Swf Files Play By Another Swf Files
Hi to anybody!!
First of all I should say that I am not a profesional user of macromedia flash
I have a problem with my flash – I have lots of swf files in my main folder and I made lots of bottons for each of them I want by pressing each botton its special swf file to be played I have made a window next to the bottons on the left side of the stage and I want by pressing each botton one its special swf play in this window and I repeat it not anywhere else but in this window
I tried "loadmovie" scripts but swf files now play any where that they want even they cover sometimes all over the stage or most part of even bottons
Now question is: how can I tell macromedia flash to play these swf files in this special window? And by the way! These files are external becase there are too many of theme and I cant embded them in the main movie
Here there is a link that maybe show the example better
Its just 64 kb
http://scorpionsofhack.googlepages.com/swfup.zip
Converting Wmv Files Into Swf Files
I have not been using Flash for very long and I have some wmv files I would like have show up as swf files for a project I am doing. But I can not find way to covert them over. Is there a way and if so how. Thanks for any help.
Converting .ppt Files Into .swf Files.
I want to know how to convert a .ppt (powerpoint) file into an .swf (shockwave) file. I'm creating a powerpoint for my website and I want it to be in the form of an .swf file so that all browsers can see the animations. I do not own flash and I don't plan on buying it so please tell me how to do it without having to buy flash.
ltng92
Flash Files Inside Flash Files.
I have a flash file that dynamically loads a bunch of .swfs in repsonse to a certain button being pressed. all loads fine, but it seems the container move is not reading the actionscript in the swf it loads. I use the tween class rather than tweening simple things by hand - doesn't tween. I look at the .swf outide of the one that loads it, tweens fine. what's up?
Php Files
Anyone know of a good dowloadable web host that supports php files? as well as ASP files?
.pdf Files
hi am doing a cd_rom with flash and everyhting works fine but some buttons links to .pdf acrobat page but doesn't works they dont open .
what to do??
|