Authoring Programs
Alrighty... I'm a total n00b when it comes to Flash...
I want to know if there's any free authoring programs out there, where to find them, and which is the easiest to learn with.
Now any Half-Life gamers out there who have tried to use Worldcraft 3.3 know that it's a ***** to figure out... But I taught myself that, so Flash shouldn't be much harder.
Anyway, any help would be appreciated. Thanks in advance.
FlashKit > Flash Help > Flash Newbies
Posted on: 01-04-2002, 12:27 PM
View Complete Forum Thread with Replies
Sponsored Links:
Programming Programs To Write Programs
I tend to automate things. Automating automation is no exception to this rule.
If I'm going to have to do it more than once or twice, I tend to jump through some hoops to make sure the machine does it for me.
I'm not just evil enough to run my Actionscript code through a C preprocessor just so I have my macros and conditional compilation.
No, I'm sick enough that I write programs to to write programs. Have done so for years. No cure for it.
Take this simple little doohicky, a 'slide show' applet. It's part of a larger web site that has a ton of screen captures from games that are cycled when the main application loads them as a preview.
It started off that I'd grab all those pictures, drop them into Flash, and make a little 'movie' out of them. That was too much damned work.
So I wrote a little piece of Flex code, and then I cut it up into pieces.
SlideShow_1.as
ActionScript Code:
/**
* Dumb slide show applet
**/
package
{
import flash.display.*;
import flash.text.*;
import flash.geom.*;
import flash.events.*;
import flash.media.*;
import flash.xml.*;
import flash.utils.*;
SlideShow_2.as
ActionScript Code:
public class SlideShow extends Sprite
{
public const msSlideInterval : int = 2000; // How long between frames
public var timer : Timer; // Slide changing timer
public var aBitmap : Array; // Array of bitmaps to display
public var iFrame : int = -1; // Frame index
public var bmCurr : Bitmap; // Current bitmap
/**
* Do 'standard' two part construction.
* When run alone, 'stage' is set in constructor.
* When run from another swf, 'stage' isn't initially set.
**/
public function SlideShow()
{
new Resource();
addEventListener( Event.ADDED_TO_STAGE, addedToStage );
aBitmap = [];
for each (var img : Class in Resource.aImageClasses )
{
aBitmap.push( new img() );
}
}
public function addedToStage( event : Event ) : void
{
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.quality = StageQuality.HIGH;
timer = new Timer(msSlideInterval);
timer.addEventListener(TimerEvent.TIMER,NextFrame);
timer.start();
NextFrame();
}
/**
* Go to next frame of slide show
**/
public function NextFrame( event : Event = null ) : void
{
//trace( "NextFrame" );
if( ++iFrame >= aBitmap.length )
iFrame = 0;
if( null != bmCurr )
removeChild(bmCurr);
bmCurr = aBitmap[iFrame];
addChild(bmCurr);
}
}
}
/*
* Local Resource embed class appended by external script code
*/
class Resource
{
SlideShow_3.as
ActionScript Code:
public static var aImageClasses : Array = [];
public function Resource()
{
SlideShow_4.as
ActionScript Code:
}
}
Then I wrote myself a little script to find all the images in a folder, sort them and insert them into the code. If you note the original, and what's missing from the pieces, this basically measures the first image, makes a [SWF()] metadata to size up the applet, then builds a list of images to import with [Embed()] metadata. It dumps the code into the output .as file, then invokes mxmlc on it.
(Note, you only need the FREE Flex SDK to build it.)
The pieces most of you won't understand are 'sed' and 'identify'.
'Identify' came from ImageMagick. A set of command-line based image manipulation tools. I could do additional things, like resize the images, turn them into one format or another, etc. All I use 'Identify' for is to find out how big the image is, and format out the 'SWF' metadata.
'Sed' (The Stream Editor) is an ancient (1977) Unix/Linux/etc. tool that's probably older than most people reading this. It performs regular expression search/replace on text. It's super handy.
makeslides.sh
Code:
#!/bin/bash
if test ! -z "$1" && test -d "$1" ; then
imgdir=$1
if test -z "$2" ; then
swfout=$1.swf
else
swfout=$2
fi
set -o errexit# Stop running the script if an error occurs
set -o nounset# Stop running the script if a variable isn't set
# Find any supported images in the folder
find "$imgdir" ( ! -regex ".*.svn.*" -a ( -iname *.png -o -iname *.jpg -o -iname *.jpeg ) ) > tmp
# echo First part of source code
# SlideShow_1-SlideShow_4 are pieces of one as file that this dumps some
# additional code/data into
cat src/SlideShow_1.as > SlideShow.as
# Sort the file list, then grab the first one, then make 'SWF' metadata
# identify is from ImageMagick - tell script about file format
# sed (Strem Editor) is an ancient unix tool
sort tmp | sed q tmp | sed "s/(.*)/"1"/" | xargs -L 1 identify -format "[SWF(width="%w", height="%h",frameRate="30", backgroundColor="0x000000")] // %d/%f" >> SlideShow.as
# echo more of the source code
cat src/SlideShow_2.as >> SlideShow.as
# Build list of Embed metadata items
sort <tmp | sed "s/(.*)$/ [Embed(source="1")] public static const image/"
| sed -n -e "/.*/ p;="
| sed -e 'N;s/
//'
| sed -e "s/$/ : Class;/" >> SlideShow.as
# echo more of the source code
cat src/SlideShow_3.as >> SlideShow.as
# Add the list of Bitmaps we embedded to a list
sed -n "=" <tmp | sed "s/(.*)/ aImageClasses.push(image1);/" >> SlideShow.as
# echo last of the source code
cat src/SlideShow_4.as >> SlideShow.as
# Now compile the
mxmlc -compiler.optimize=true SlideShow.as -o "$swfout"
# Clean up tmp file
rm tmp
else
# Parameter was invalid
echo
echo $0 srcDir [tgtSwfName]
echo
echo srcDir: Where to look for swf files
echo tgtSwfName: What to call the swf file
echo "If tgtSwfName isn't specified a swf file named after the folder is made."
echo
echo Generate a slide show swf from a folder full of image files.
echo
exit 1
fi
Here's a version for you pitiful Windoze lusers so you don't feel left out.
makeslides.bat
Code:
@echo off
set imgdir=%~f1
set swfout=%~f2
if "%imgdir%" == "" goto help
if "%swfout%" == "" set swfout=%~f1.swf
set SED=toolssed
set IDENT=toolsidentify
rem Find any supported images in the folder
dir /s /b "%imgdir%*.png" > tmp 2>nul
dir /s /b "%imgdir%*.jpg" >> tmp 2>nul
dir /s /b "%imgdir%*.jpeg" >> tmp 2>nul
rem echo First part of source code
rem SlideShow_1-SlideShow_4 are pieces of one as file that this dumps some
rem additional code/data into
type srcSlideShow_1.as > SlideShow.as
rem identify is from ImageMagick - tell script about file format
rem Sort the file list, then grab the first one, then make 'SWF' metadata
sort tmp | %SED% q tmp | %SED% "s/(.*)/"1"/" | %SED% "s/^/@%%IDENT%% -format "[SWF(width="%%%%w", height="%%%%h",frameRate="30", backgroundColor="0x000000")] // %%%%d/%%%%f" /" > tmp.bat
call tmp.bat >> SlideShow.as
rem echo more of the source code
type srcSlideShow_2.as >> SlideShow.as
rem Build list of Embed metadata items
sort <tmp | %SED% "s/\///g" | %SED% "s/(.*)$/ [Embed(source="1")] public static const image/" | %SED% -n -e "/.*/ p;=" | %SED% -e "N;s/
//" | %SED% -e "s/$/ : Class;/" >> SlideShow.as
rem echo more of the source code
type srcSlideShow_3.as >> SlideShow.as
rem Add the list of Bitmaps we embedded to a list
%SED% -n "=" <tmp | %SED% "s/(.*)/ aImageClasses.push(image1);/" >> SlideShow.as
rem echo last of the source code
type srcSlideShow_4.as >> SlideShow.as
rem Now compile the
mxmlc -compiler.optimize=true SlideShow.as -o "%swfout%"
if errorlevel 1 exit /b 2
rem Clean up tmp file
del tmp tmp.bat
goto end
:help
rem Parameter was invalid
echo.
echo %0 srcDir tgtSwfName
echo.
echo srcDir: Where to look for swf files
echo tgtSwfName: What to call the swf file
echo If tgtSwfName isn't specified a swf file named after the folder is made.
echo.
echo Generate a slide show swf from a folder full of image files.
echo.
:end
Now to make it recursively eat folders and poop out swf files, you need one more script...
allslides.sh
Code:
#!/bin/bash
set -o errexit# Stop running the script if an error occurs
set -o nounset# Stop running the script if a variable isn't set
find screenshots/* -type d ( ! -regex ".*.svn.*" )
-exec ./makeslides.sh {} ;
allslides.bat
Code:
rem first sed: Eat paths with .svn in them
dir /b /ad /s screenshots | sed -n "/.svn/!p" | sed "s/(.*)/call makeslides.bat "1"/" > atmp.bat
call atmp.bat
del atmp.bat
Now, if you've skimmed this far, you may be thinking to yourself, "Self, what the heck would I ever do with THIS?"
Well, I'll tell you. With minor modification, the script could do a LOT more than just slurp images into a slide show swf.
You could maintain all of your version-controlled art/sound/video/etc. assets in a directory tree and make this a part of a makefile (or ant, I suppose) script, and it would be able to make one Resource.as file containing all of your resources as static members of some Resource class.
So instead of screwing around in Flash to maintain your resources, embed all of the bits into your source code automagically.
At the very least you should see that when you have a lot of little pieces to manage, writing a simple script to manage them can be a real labor-saver.
View Replies !
View Related
DVD Authoring
Is it possible to use flash to create animated menus for DVD's. I'm trying to create a menu aystem that would automatically resize to whatever resoloution the TV or Monitor ran at, but I'm not sure how to do it, or the best way to burn it to DVD.
With thanks,
Mouse.
View Replies !
View Related
DVD Authoring
Hi guys
just been asked by a client if I can build them a dvd. Havent done any dvd's so far!!! Web/graphic designer!
Can i get some recommendations for software to purchase. I have studio MX and Adobe CS, and was thinking of using flash to build the whole thing.
Is director the best way forward?
View Replies !
View Related
DVD Authoring
Has anyone or is anyone using Flash to author DVDs that are designed to play on computers and DVD players with remotes? Can you suggest where to go to get this kind of info. Is this a job for Director instead?
On a Mac, far as I know - no chance of getting use of a Wintel machine.
Thanks in advance.
Ed Savage
View Replies !
View Related
DVD Authoring?
Hi all,
Is it possible to make a DVD with Flash?....Ive got a couple of people who want DVD's doing that'll have several video clips on and about 20 translations.
Ive done a multimedia CD before in Flash but wondered if the same way of building that would suit a DVD or will I be needing some other software?
cheers!
View Replies !
View Related
CD Authoring
I have a CD Im authoring in flash.
I want to publish the cd to be viewed full screen and do not want the movie to scale...
my question is how is possible to set the stage to 100 Percent so I can use a background that scales to the resolution without using html?
not sure if its possible maybe a work around???
View Replies !
View Related
Flash Authoring
Hello i'm trying to make a simple login thing:
I understand that i have to make a .php file in which the authorization will take place and then pass results to Flash but how to send the login and password to that php file in a secure way for example a POST method?
View Replies !
View Related
Flash Authoring XML Use
This may not be the best board for posting this...if so i appologise.
Is it somehow possible to use XML data to postition clips on the stage in the authoring enviroment? I need this as points reference to draw a map of roads connecting locations that i have in a database and am showing through a asp->flash connection already.
Thanks for all input!
View Replies !
View Related
CD Authoring With Flash
Hello there. I have some experience creating websites with Flash but now need to take this to the next level which is CD Authoring. Naturally my first question is; is Flash a good option for this? There won't be any hardcore video and sound to this cd production, it's pretty much a info site which I want to run through an auto loading file when the cd gets put into the drive. Some other questions I need to resolve before moving ahead. 1. Can I create a copy function allowing the user to copy the application to the desktop or somewhere on their machine. 2. Can I create a simple search engine in flash for the content of the cd? 3. How can I manage copy in flash allowing the users to easily cut and paste copy as well as allowing easy updates for us? That was a mouthful but I look forward to your comments and suggestions. regards, Richard
View Replies !
View Related
CD Authoring With Flash
Hello there. I have some experience creating websites with Flash but now need to take this to the next level which is CD Authoring. Naturally my first question is; is Flash a good option for this? There won't be any hardcore video and sound to this cd production, it's pretty much a info site which I want to run through an auto loading file when the cd gets put into the drive. Some other questions I need to resolve before moving ahead. 1. Can I create a copy function allowing the user to copy the application to the desktop or somewhere on their machine. 2. Can I create a simple search engine in flash for the content of the cd? 3. How can I manage copy in flash allowing the users to easily cut and paste copy as well as allowing easy updates for us? That was a mouthful but I look forward to your comments and suggestions. regards, Richard
View Replies !
View Related
Flash As Vs Authoring
What is the difference in creating flash games in authoring time compared to straight action script.
eg is one faster on performance than the other or they both are as good as each other with things you can do etc.
View Replies !
View Related
CD Authoring With Flash?
Does anyone know how to do CD Authoring that can playback Flash content and Video, using Flash Pro 8? I also need this CD to be Mac and Win compatible. Director does this, I know, but I am wondering if anyone has had success with doing CD authoring in Flash.
Many thanks in advance for your help!-
|rossimo|
Edited: 09/11/2007 at 01:01:39 PM by rossimo
View Replies !
View Related
Scripting The Authoring Environment
I would like to write a script that makes changes that are observable in the authoring environment. Is there a way to script the Flash authoring environment beyond creating your own Parameters panel (like writing your own behaviors in Director)?
n10si_t
View Replies !
View Related
AuthPlay.dll Crash While Authoring In XP
Hi,
Has anyone else come across a crash in Flash MX while authoring?
I am building an XML driven movie on WinXP and although it runs fine in the browser, when testing in FlashMX, it occasionally causes an error that makes Windows shut down Flash and ask me to send an error report to Microsoft ... presumably so they can gloat.
I am a bit stumped as to what could be causing it - all standard functionality: XML parsing, generation and sending; Movie-clip duplication, removal and positioning. I haven't got to the point of doing anything difficult because of the crash.
Gaius
View Replies !
View Related
Two Question About Flash Authoring
Hi I hope some of you could help me with two question about Flash authoring
1.
I have som Flash files where I #include one/some .as files
I've noticed that each time I change some code in the .as file, I have to compile the .fla file again so the changes in the .as file work. Am I right? or am I missing something ???
If so, that is not so intuitive
2.
Is it possible to batch script things in Flash( MX)
Like create some DOS commands which eg. compiles all .fla files in a directory, so I don't need to go through each individual files in the Flash IDE
hope you can provide me with answers to these questions
and thanks in advance
regards
T
View Replies !
View Related
Flash Authoring Tool
Hi everyone
I'm starting to learn flash and was wondering about a good authoring tool.
Flash MX would be an obvious choice, but besides being expensive i've been told it's difficult to get started with it.
My purpose is to use flash to build websites with movies and lots of interactive elements, the usual i guess.
So in your opinion, what would be a good tool, that's powerful enough to do this, fairly easy to start using and if possible not too expensive? Talk about wanting it all, huh?
Thanks
View Replies !
View Related
Merge Authoring With Script
Hello.
I have a thumbnail gallery script for which I'd like to add a graphic created in the authoring environment and I have no idea how to call this graphic into the script.
So the general question would be: How does AS pull in and manipulate graphics created in the authoring environment? That is, if one has a button or mc saved in the Library, how is it referenced in script?
How are they scoped?
The specific question is: My graphic is a picture frame saved in the Library as "Frame_mc", a movie clip. I have an event handler in the script which enlarges a thumbnail on mouse click. Original pictures are varying sizes, so "Frame_mc" will need to be resized according to the dimensions of the photo. So in the event handler, how do I access "Frame_mc"?
Script is attached.
Thanks much in advance.
View Replies !
View Related
Detecting Which Authoring Environment The SWF Is In?
Just wondering, is there a way for a given SWF to detect whether it is playing in the Flash preview window (CTRL/CMD+Enter), or if it is playing in a browser window? My SWFs are referencing PHP files that don't work in the Flash authoring environment, so I often have to manually point the SWFs to dummy TXT files which contain a sample output of the PHP scripts in question, just so I can test the SWFs in-Flash.
Thanks!
View Replies !
View Related
Online Flash Authoring
You can create online Flash content with pagefish.com.
There are lots of opportunities like entering text, sound, video, pictures and it has a very basic user interface.
One can create a complete flash web site in couple of seconds.
http://www.pagefish.com
View Replies !
View Related
Authoring File Out Of Sync With Swf
Dear Friends,
I have a swf file in a DW page. When I click on the swf to edit thru the .fla scr file designated in the properties palette, as the fla opens it says it is updating links, and it also says that the 'authoring file is out of sync with the swf. I have tried every way I know of fixing this: made a new html page and reimported the swf, reconnected to fla in scr (in properties palatte) nothing works. Any ideas?
Sincerely,
Hope
View Replies !
View Related
GoToAndPlay In Authoring Mode
Does goToAndStop() work in authoring mode? I've created a simple movie with
this function in frame 2. It has no effect. When I test a projector it
works. Does the same also apply to goToAndPlay() and stop()?
Thanks,
Brian
View Replies !
View Related
CD-ROM Authoring W/Flash MX 2004
The company I work for has a corporate profile CD-ROM that was built by a fellow before I got there. He's no longer there and it's now my responsibility to update this CD-ROM when need be.
I've never made a CD-ROM with Flash before as I've always used Director up to this point. The company is all Flash and I'm cool with that (I'm having a lot of fun learning and using Flash) but I'm wondering about a few things:
A projector created by Flash is going to run just fine on Windows and Mac right?
With Director, I would create stub projector then just call in my DIR (raw Director file) into that projector. The DIRs would be saved as locked files though so that they could not be opened and/or run other than through that stub projector. Is something like this possible with Flash?
I'm going to have a bunch of external files (IE: SWFs, text files, video etc) that will be called into the projector at run time. Can I hide or restrict access to these files? Can I have them in a protected SWF that is like a shared library or something?
Director had some cool extensions that would allow you to make a splash screen etc. Does Flash have any CD-ROM specific extensions?
How do make a Flash movie (played off a CD) force full-screen or, to be in a chromeless (or customized) window?
Thanks in advance for any help!
View Replies !
View Related
Dynamic Text Authoring
ok, here's the deal
At first I wanted to have scrolling text that had bold, italic, bullets, and indentations. All of that was to make an outline (like you had to make before writing a paper in school). I was able to format all the text within flash in the dynamic text box, but when I published it the SWF made all of the characters bold and took away all the indentions.
I realize I can format the text using html coding both within the program and as loaded text, but that's a pain writing html tags for each line break and font.
Now what I would love to be able to do is have a program that I could edit text in, and it would format it using flash-approved html tags which I could save to the server and change easily.
Does anyone know of a program like this or of another way I can format this text?
the website i'm working on is
www.outoftheboat.com the needs section is an example of what the kind of text i'm working with.
Thanks for your help
ben
View Replies !
View Related
Flash Timeline Authoring
I am creating an animation, authoring in the timeline and i want to send a keyframe to a particular frame (even better a particular time in seconds) once I've dropped a movieclip onto to the first frame of the timeline.
Is there a quicker way of doing this other than scrolling up and down the timeline. This isn't a actionscript problem i'm trying to quickly author traditional type animation on the timeline, but make it as efficient as possible.
View Replies !
View Related
Class Authoring Problem
I'm having some trouble authoring my class. I'm trying to use the .getNextHighestDepth method when creating a new movie clip on the stage. Here's my code:
ActionScript Code:
class Blah{
public function start ():Void
{
var container:MovieClip = this.createEmptyMovieClip("container",this.getNextHighestDepth());
}
}
I get the following error:
ActionScript Code:
**Error** Line 4: There is no method with the name 'createEmptyMovieClip'.
Does anyone know how I can get this to work?
View Replies !
View Related
Authoring External Scripts
Hey, I'm a seasoned coder but new to this Flash stuff. It appears that you can break up your ActionScript by placing key functions and objects in outside scripts and then include them in where you need them. There doesn't seem to be any obvious way to create/edit separate AS files in Flash MX. Is there a standard way of doing this? Do most people simply use external plain-text editors? Also, I'd also be interested to know how most of Flash veterans around here layout their code (what do they place in external files, what do they place in the internal actions, etc).
View Replies !
View Related
Flash Authoring Tool(s)
Hi:
I am looking for some advice on cost-effective authoring tools that will produce flash slideshows and movies for use in web pages. I am currently using a very basic tool called "Firestarter" by Coffee Cup software. It's a pretty good application but somewhat limited.
Also, I develop heavily in PHP so applications that work well with PHP would be desireable.
Specifically, what I would like to do is:
- Create a slideshow/movie which has a caption field at the bottom and will allow separate html links from each image.
- Create a slideshow/movie built on the fly from a directory full of pictures such that if the contents of the folder changes, the slideshow will update without having to re-build it in the authoring tool.
- Create a slideshow with a scrolling thumbnail index which allows the user to select a picture to view in the larger window
What do people suggest for a good, reliable tool.
Thanks
View Replies !
View Related
Streaming Audio With Flash...DVD Authoring?
hello guys:
I got a question for you. I just finished producing a 6 min flash video to be projected for a conference, using audio and just images (like a slideshow) and along the way I recognized that the sound streamed differently depending on what computer it was played on. To create a quick fix, I streamed the sound perfectly only on the computer being used for the conference...works great!!
However, we want to distribute this flash piece on a CD and the sound has to stream perfectly each time on ANY computer.
The question is what is the most reliable technology way of doing this, making sure that the sound fits with the visuals? I was thinking DVD authoring or something? Ideally not, as not all of the people that will receive this will not have a DVD player....
Any input on this would be great...
Thanks in advance,
As always, I am lost without you all :-)
View Replies !
View Related
Authoring Cross Platform Cd Roms
Hi there,
Could someone please tell me how would one go about making/authoring a cd-rom that would automatically load/run at full screen size (no crappy title bars in view) when placed in a cd-drive of any computer, PC or Mac.
i'm gonna design it in flash but if needs be i will embed it into director (will this affect the interaction in any way?)
thanks very much
michael
View Replies !
View Related
Fade Tween Works In Authoring Env, Not In Swf
OK I've been making stuff fade by tweening the alpha setting on symbols for years. But now all of a sudden I have it working in Flash MX's authoring environment (i.e. pushing enter to play) but when you preview or export to SWF, the fades aren't working. The symbols just appear at 100% with no fade in. I've tried exporting for player 6 or player 7, same problem. There must be some stupid option somewhere that has gotten screwed up.
View Replies !
View Related
Live Video In Flash Authoring
Hello, is it possible to somehow have a live video feed into flash? I am going to be doing some filming soon and I need the actor to interact and be align with my interface design. I saw on 'Meet You Match' (http://www.macromedia.com/software/studio/experience/) that it is possible, I've had a look on the internet about how to do it, but it all seems increadibly complected with the need to install Flash Communication server. Is that really needed?
I have downloaded the trail, to see if I could make head or trails from it but I couldn't even connect...?? :S
Please can someone help......
Cheers.
Kaan.
View Replies !
View Related
Wrapping Text Within Authoring Scripts
Hi all - new member here and I love this place already!
I'll start with one of the things that has been annoying me for some time now and which many of you will probably laugh at me for:
If I'm writing a script and I want the text to wrap within the script so that I don't have to scroll across the page to read it, how do I do that?
Been working my way through a Macromedia AS2 book and for the purposes of fitting on the pages, they simulate a carriage return by typing ==> at the start of the next line. Is there something equivalent within scripting mode?
Any replies/derision gratefully received.
View Replies !
View Related
Too Many Curves Makes Authoring Slow
I'm currently working on a project that involves pretty detailed maps. They only take up a little more than 200 K compressed, but they make up about 31 000 curves and that makes working with the FLA-file painfully slow. Even on a dual 2.5 GHz PowerMac G5 every save takes half a minute.
I am looking for alternative ways of working with the maps. Ironically, once compiled and uploaded, the maps are no trouble at all, it's the slowness of the authoring I can't bare. I tried creating a SWF to hold only the maps as linkage enabled library symbols, but it seems I cannot use attachMovie on a symbol that resides in a dynamically loaded SWF file.
Any suggestions?
View Replies !
View Related
Abandoning The Authoring Environment In Favor Of AS
i want to do most of my work with AS but i keep having to go back to the authoring tool to create motion tweens of graphic symbols, is there a way of doing it with AS, if there is, how do i reference the instance when it has no name? is it something to do with the "export for actionscript" checkbox when im making the graphic?
View Replies !
View Related
Populating An Array During Authoring From XML File
Hi there,
I was wondering if it is possible to extend the Flash authoring environment with a command that allows a user to populate or refresh an array object with data from an XML file? Once the array is populated it is being used in the flash application. This populating of the array would only happen intermittenly (everytime the external xml file was updated) during authoring only.
If it can be done could you provide me with some help on how to tackle this?
Thanks in advance,
Dan
View Replies !
View Related
Get Duration Without Additional Flash Authoring
Given a flash movie that I did not author and which is just a quicktime, mpg, or wmv movie transcoded to flv/vp6, I need to get the duration via javascript.
- I would prefer to not have to modify the movie (i.e. add an actionscript)
- If that is not possible, given that I am a novice at flash authoring what is the easiest way to do it.
thanks
View Replies !
View Related
|