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




The Manager Class



Who out there uses one big Manager Class to control everything? How has this worked for you?



FlashKit > Flash Help > Flash ActionScript
Posted on: 08-10-2006, 01:44 AM


View Complete Forum Thread with Replies

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

Help With Sound Manager Class
Because of details in a previous thread I made a SoundManager class for my application to use for preloading external sounds:

Code:
class SoundManager
{
static function LoadFromXML(xml:String, parent:MovieClip)
{
myXML = new XML();
myXML.onLoad = XMLLoaded;
Parent = parent;
myXML.ignoreWhite = true;
myXML.load(xml);
bytesTotal = 0;
}
private static function XMLLoaded(succeeded:Boolean)
{
if(succeeded)
{
var nodes = myXML.firstChild.childNodes;
for(var i = 0; i < nodes.length; i++)
{
var att = nodes[i].attributes;
SoundManager.Sounds[att.Name] = new Sound(Parent);
SoundManager.Sounds[att.Name].loadSound(att.Url,false);
SoundManager.bytesTotal += SoundManager.Sounds[att.Name].getBytesTotal();
}
Loaded();
}
}
static var Loaded:Function;
private static var bytesTotal:Number;
private static var myXML:XML;
static function GetSound(name:String):Sound
{
return Sounds[name];
}
static var Sounds:Array;
static var Parent:MovieClip;
static function getBytesTotal():Number {return bytesTotal;}
static function getBytesLoaded():Number
{
var loaded:Number = 0;
for(var i = 0; i < Sounds.length; i++)
{
loaded+=Sounds[i].getBytesLoaded();
}
return loaded;
}
}

Its basically static functions that load sounds from an xml list and stores them for later use. However my preloaded keeps saying NaN% (Not a Number). I put breakpoints and both getBytesTotal and getBytesLoaded = 0. All the sounds exist within the xml..

Manager Class In OOPs
Is there way to manage style and layout for movieclips...any samples or tutorials using oops...


Layout manager class to align thumbnails to horizontally-top, vertical-left,....

Any Timer Manager Class Available?
Hi...

I need to create a timer manager class, but I thought that I'd ask to see if there is anything available out there..

What I am trying to do is... A class that I can add multiple repeating jobs with an interval that will execute a given function with the given interval, and have an ability to stop/pause/restart the job...

Is there anything similar out there???

Thanks...

Screen Manager Class
Hi guys,
Ok this is more of a "how do the rest of the world go about it" type question but basically, what kind of a screen manager do you guys use and by a screen manager, I'm talking about a class or classes which control the transitions from each screen of your Flash app.

Do you addChild your new DisplayObject but only animate everything in in an init() class then have a "clear everything off stage" method and use a singleton that holds a reference to the currently displaying class? Then when you want to change content, send in a reference to the new screen and your ScreenManager might hit the sendOut method of the currently displaying class and, when done, hit the init() method of the target one?

Would love to hear your thoughts as I feel my current setup could use a bit of an overhaul!

Help Me Create A Button Manager Class
I am trying to create a create a class that stores an array of movie clips. I want the class to register itself to receive onRelease events from each button in the array. I have been trying to us AsBroadcaster but I suspect I'm not understanding it to I'm not implementing it correctly.

Here's what I have so far:








Attach Code

class ButtonGroup {
private var groups_array:Array = new Array();

public function ButtonGroup() {

}

public function new_group( button_array:Array, id:String ):Void {
groups_array[ id ] = new Array();
groups_array[ id ].push( button_array );
for ( var p in groups_array[ id ] ) {
AsBroadcaster.initialize( groups_array[ id ][p] );
groups_array[ id ][p].addListener( this );
groups_array[ id ][p].broadcastMessage( "onRelease" );
}
}

public function onRelease() {
trace( "test" );
}
}

























Edited: 04/28/2007 at 02:00:09 PM by nudnic

[F8AS2] Sound Manager Class
Anyone know why this keeps playing the same sound over and over?

If I call it using:
Code:
var sounds:src.snd.SoundManager = new src.snd.SoundManager(); // This isn't how I do it, but ... you understand.
sounds.queueSound('libsound1');
sounds.queueSound('libsound2');
sounds.queueSound('libsound3');
sounds.queueSound('libsound4');
it will play 'libsound1' four(4) times.

Code:
import mx.utils.Delegate;

class src.snd.SoundManager {
private var snd:Sound;
private var sndQueue:Array;

public function SoundManager() {
snd = new Sound();
sndQueue = new Array();
snd.onSoundComplete = Delegate.create(this, onSoundComplete);
}

public function onSoundComplete() {
if (snd.position >= snd.duration) {
if (sndQueue.length > 0) {
var nextSound = sndQueue.shift();
playSound(nextSound);
}
}
}

public function queueSound(libName:String) {
sndQueue.push(libName);
onSoundComplete();
}

private function playSound(libName:String) {
snd.attachSound(libName);
snd.start();
}
}
If I trace nextSound, it shows:
libsound1
libsound2
libsound3
libsound4

I get the same result if I trace libName in the playSound function.

For some reason the attachSound is not changing library sounds.

Using Transition Manager For Custom Class (movieclip);
Having an issue, because I don't really understand how it works. I have a custom class called EmailForm, which is a email form movieclip. Now, I am having no trouble getting it on the stage...

[php]
PHP Code:



var form:EmailForm = new EmailForm();
form.x = 300;
form.y = 300;
addChild(form);
// TransitionManager.start(form, {
                    // type:Fade,
                    // direction:Transition.IN,
                    //duration:1,
                     // easing:Strong.easeInOut
                    // });




...however, if I try to use the transition manager, it throws the following error:


Quote:





PHP Code:



ReferenceError: Error #1069: Property __transitionManager not found on Web.EmailForm and there is no default value.
    at fl.transitions::TransitionManager$/start()
    at Web::Website()









What do I need to do to my custom class (EmailForm.as)?

Xml Slideshow With Tween Class And Transition Manager
I need an xml slideshow with tween class and transitionmanger.
But i am novice in this field
please help

Help With AsBroadcaster Making A Button Manager Class
I am trying to create a create a class that stores an array of movie clips. I want the class to register itself to receive onRelease events from each button in the array. I have been trying to us AsBroadcaster but I suspect I'm not understanding it to I'm not implementing it correctly.

Here's what I have so far:

Attach Code

class ButtonGroup {
private var groups_array:Array = new Array();

public function ButtonGroup() {

}

public function new_group( button_array:Array, id:String ):Void {
groups_array[ id ] = new Array();
groups_array[ id ].push( button_array );
for ( var p in groups_array[ id ] ) {
AsBroadcaster.initialize( groups_array[ id ][p] );
groups_array[ id ][p].addListener( this );
groups_array[ id ][p].broadcastMessage( "onRelease" );
}
}

public function onRelease() {
trace( "test" );
}
}

Stage Layout Manager Class - Performance
Hello,

I've been messing around with a stage layout classes off and on for a little while. I created a simple one a while ago that while it worked, was a simple instance based approach, one stageResizeManager class per object.

So, I thought I'd try to make more of a manager, which could take any number of clips and lay them out (position) them on the stage however you want.

Anyway, I've made it, but I kinda think the performance is terrible. I'm using an object approach to store all the various properties of each clip and iterating over these properties seems to nosedive performance. I was thinking of flattening the passed in object with parameters into an Array and simply using that, or wrapping each passed in DisplayObject in its own class instance.

What do you think is the best approach performance wise for a utility like this? I'm tending towards using a class wrapper approach, and just using the manager class to manage the communication between outside parties and each "managed displayObject".

I've attached what I have, have a look if you like and let me know what you think. (Flash CS3, various classes)

I've made the various changes suggested and uploaded the finished version here:

http://www.blog.noponies.com/archives/109

Does Transition Manager Cancel The Tween Manager Effects ?
because as soon as I try to combine both transitions, one doesn't work
Example : onRollOver, a movie clip is supposed to fade in with pixel dissolve effect and of course onRollOut to "Yoyo".As far as I can go, only the fading goes on but the pixeldissolve effect does not work.
Can you help me or it is simply not possible.
Thank you .

Extension Manager
How do I get the extension manager in MX to open. I have downloaded an extension but cannot get it into flash. The "manage extensions" under window in flash is always "in grey - faded ou"

Extension Manager For Osx 10.2.4
Hi,

Hope someone out there can help me out here.

I am currently trying to download and install macromedia extension manager for my mac. I have been on to the macromedia site gone to the exchange and downloaded the extension manager. But when I try to to install it says that the version is for Mac osX 10.2.6 and I am on 10.2.4!!!!

Where can I download a compatible version from???? the only other version on there is for flash 5 not MX.

Be grateful for any help offered - please!

Diggz

Extension Manager...?
ok guys tell me how can i use extension manager and how is it helpful...???
be little staright in expalnation...thanks a lot

Download Manager
how do i make like a list with downloadable files in flash MX?
just so people can download my music that I've made.

Content Manager?
I am looking for solutions for managing content in swf files. Site is done in flash and has text areas ( ie: menu, services, etc. ) that need to be updated by a NON-FLASH person.

We know how to pull information in from an XML file but i guess what I am looking for is a more "user-friendly" method. That is, I don't want to give them an xml file and say, "Just type over what you don't like and FTP it up to the server."

Help With The Extension Manager
hi guys, im just learning how to install extensions and that sorta things but after i downloaded one (the first) to check it out, i go to Help--> and supposedly i have to use the "manage extensions" option from the menu but it appears gray and cannot use it, any idea what going on?

Extension Manager
OK folks...

I am a Flash newbie so perhaps this is a foolish question to everyone here. While my dev. experience is more than 17 years, I have been able to quickly pick up on much of what I have needed to know - yet clearly I am a Flash novice.

In a nutshell, I have professionally produced video. I have created my FLV file. I have generated the SWF that plays the video and all is well so far. Looks beautiful on the web so this part of my headache is working..... But.....

2 things: I want to find a preloader that works...not on the SWF, because that won't do me any good. I want it to work with my FLV so the resulting SWF will have a nice preloader. All these rinky dink utilities I found work only on the SWF and I do not want to make an SWF out of my video file. The quality is better when I build an SWF that calls my FLV. So I found a site that has a very simple preloader that will work nicely inside my project (.FLA) with my FLV. I needed the extension manager to download the mxp file. I installed the extension manager and it tells me my system requires Flash 6 or greater to install the extension. Well I have Flash MX PRo 2004 ... so I don't understand why this is happening. My only products showing as available are Dreamnweacer and Fireworks. But I have nearly every Macromedia product installed!

Sorry for the long-winded topic but if anyone can point me in the right direction, that would be phenomenal.

Thank you all in advance.

[F8] Content Manager
Does anyone know where I can go to find/what I need to do to create a web page so that a client can update their "News" page by updating an XML document via a web page?

[F8] Content Manager
Does anyone know where I can go to find/what I need to do to create a web page so that a client can update their "News" page by updating an XML document via a web page?

Trace Manager
I meant this post first for the guys in the game forum, but realized I should probably post it here too. (sorry if that's against protocol)

I put together a little AS file for producing clearer traces. You can find it here:
http://blog.sokay.net/2007/10/10/trace-manager/

It's meant to help with building large engines and things with lots of nested functions. It really helps clear things up.

Love to hear what you guys think.

Dev Kit, Interval Manager... Here You Go
Another little useful class I decided I'd give to you guys since it's going to be a bit before the kit is out.

This is used to manage intervals. It may not seem like a big deal, but it has honestly saved me so much time and grief. It gives you one location for setting and clearing intervals, and even allows you to set a timeout function.

Here is the class, IntervalManager.as


ActionScript Code:
/**
 * Flash's interval management is horrible.  Here we provide a way
 * of setting and clearing intervals, in one location.
 *
 * @author Michael Avila
 * @version 1.0.0
 */
class IntervalManager
{

   // stores the interval ID's in a dictionary, so that you can name them
   private static var intervalIDs : Object = new Object();

   /**
    * Sets an interval, storing it's reference in this IntervalManager.  If there is already an interval associated with the
    * name that you provide (meaning an interval that was created with but not cleared with the IntervalManager), the IntervalManager
    * will clear the interval and set the interval you provide in it's place.
    *
    * @param The name you are assigning the interval, note that this is how you will be deleting it
    * @param The path to the function that will be called by the setInterval
    * @param The name of the function as a string
    * @param The interval that this function will be called on
    * @param The args that will be passed to the interval.  The arguments are passed as an array, so be sure
    *        to have your function compensate for that.
    */
   public static function setInterval( name:String, path:Object, functionName:String, interval:Number, args:Array ) : Void
   {
      if ( IntervalManager.intervalIDs[name] != undefined)
      {
         IntervalManager.clearInterval( name );
      }
      IntervalManager.intervalIDs[name] = _global.setInterval(path, functionName, interval, args);
   }

   /**
    * Sets a function to be called at "interval" seconds after the timeout is set.  If there is already a timeout associated with
    * the name that you provide (meaning an interval that was created with but not cleared with the IntervalManager), the IntervalManager
    * will clear the old timeout and set the new timeout you provide in it's place.
    *
    * @param The name you are assigning the timeout
    * @param The path to the function that will be called by the setTimeout
    * @param The name of the function as a string
    * @param The interval that this function will be called on
    * @param The args that will be passed to the timeout.  The arguments are passed as an array, so be sure
    *        to have your function compensate for that.
    */
   public static function setTimeout( name:String, path:Object, functionName:String, interval:Number, args:Array ) : Void
   {
      if ( IntervalManager.intervalIDs[name] != undefined)
      {
         IntervalManager.clearInterval( name );
      }
      IntervalManager.intervalIDs[name] = _global.setTimeout(path, functionName, interval, args);
   }

   /**
    * Clears the interval with the name you provide.
    *
    * @param The name of the interval you'd like to clear.
    */
   public static function clearInterval( name:String ) : Void
   {
      _global.clearInterval( IntervalManager.intervalIDs[name] );
      delete IntervalManager.intervalIDs[name];
   }
}

The code is simple... no need to worry about it.

Here is the code in the fla:


ActionScript Code:
IntervalManager.setInterval("hello", this, "sayHello", 1000, ["Michael"]);
IntervalManager.setTimeout("helloOnce", this, "sayHelloOnce", 1000);

function sayHello(args:Array) : Void
{
    trace("Hello, " + args[0]);
}

function sayHelloOnce() : Void
{
    trace( "Hello from the TimeOut" );
}

function onMouseDown()
{
    IntervalManager.clearInterval( "hello" );
}

This class will be found in the package,

createage.managers

in the Dev Kit.

The documentation for the dev kit can be found here...

www.createage.com/CreateageLib

Take Care.

_Michael

Is There An Upload Manager Out There?
Hi,

there are some Loader Manager out there like "Bulk-Loader" for helping by loading Data into Flash.

Ok, you can use for example 'Bulk-Loader' also for uploading Data like Text.

But what is with FileReference Data's?

Is there also so an Manager for Uploading Data somewhere?

Poker Pit Manager
Hey all,

I am trying to develop a new pit manager software for the casino I work for. I decided on a web base to keep it within my realms of programming. I have go the database and admin stuff working, I just need to make a nice pretty Flash waiting list for the poker *&%^s to look at while they wait.

I have made a php that creates this piece of XML:

Code:
<?xml version="1.0"?>
<lists>
<list>
<game>$100/$250 NL</game>
<player>Sam</player>
<player>James</player>
<player>Michael</player>
</list>
<list>
<game>$200/$500 NL</game>
</list>
<list>

<game>$80 NL</game>
</list>
<list>
<game>$5/$10 LIMIT</game>
<player>Steve</player>
</list>
<list>
<game>$10/$20 LIMIT</game>
<player>Jesus</player>
</list>
<list>
<game>$500/$2000 NL</game>

</list>
</lists>
Now I would like to get this into 6 separate lists in flash. Can someone help me out? Or knows where a step by step tutorial is for something similar because I haven't found many very helpful XML Flash tutorials out there. Even the one on this site wasn't enough for me.

Thanks,

THEfish!

FLV Asset Manager
'm working with a lms company to develop a system where the client uploads their FLV file as an asset and it is part of training course they set up for their employee training. I've got about 1000 flvs to manage and I'm trying to find the best way to go about accomplishing this task. I'm in a Java system and I'm guessing I need to create an external file that will be updatable and some how have the flash file to reference that file. I need a point in the right direction.

Thank ry

Popup Manager In AS3
What's the code for creating a Popup Manager in AS3?

Extension Manager
ok guys tell me how can i use extension manager and how is it helpful...???
be little straight in explanation...thanks a lot

Content Manager
Hey guys,

i made my flash design loading text from a txt file. But the problem is that i can't control the bold and italic from the text.
So what i need is kinda content management. The company where i make the design for want to have control of the contant. I already did a quick search about loading html in flash but i wasn't lucky to find anything usefull.
Does anybody kow if this excist? or does anybody has another dolution for this problem?

Interval Manager, Dev Kit
Another little useful class I decided I'd give to you guys since it's going to be a bit before the kit is out.

This is used to manage intervals. It may not seem like a big deal, but it has honestly saved me so much time and grief. It gives you one location for setting and clearing intervals, and even allows you to set a timeout function.

Here is the class, IntervalManager.as


ActionScript Code:
/** * Flash's interval management is horrible.  Here we provide a way * of setting and clearing intervals, in one location. * * @author Michael Avila * @version 1.0.0 */class IntervalManager{   // stores the interval ID's in a dictionary, so that you can name them   private static var intervalIDs : Object = new Object();   /**    * Sets an interval, storing it's reference in this IntervalManager.  If there is already an interval associated with the    * name that you provide (meaning an interval that was created with but not cleared with the IntervalManager), the IntervalManager    * will clear the interval and set the interval you provide in it's place.    *    * @param The name you are assigning the interval, note that this is how you will be deleting it    * @param The path to the function that will be called by the setInterval    * @param The name of the function as a string    * @param The interval that this function will be called on    * @param The args that will be passed to the interval.  The arguments are passed as an array, so be sure    *        to have your function compensate for that.    */   public static function setInterval( name:String, path:Object, functionName:String, interval:Number, args:Array ) : Void   {      if ( IntervalManager.intervalIDs[name] != undefined)      {         IntervalManager.clearInterval( name );      }      IntervalManager.intervalIDs[name] = _global.setInterval(path, functionName, interval, args);   }   /**    * Sets a function to be called at "interval" seconds after the timeout is set.  If there is already a timeout associated with    * the name that you provide (meaning an interval that was created with but not cleared with the IntervalManager), the IntervalManager    * will clear the old timeout and set the new timeout you provide in it's place.    *    * @param The name you are assigning the timeout    * @param The path to the function that will be called by the setTimeout    * @param The name of the function as a string    * @param The interval that this function will be called on    * @param The args that will be passed to the timeout.  The arguments are passed as an array, so be sure    *        to have your function compensate for that.    */   public static function setTimeout( name:String, path:Object, functionName:String, interval:Number, args:Array ) : Void   {      if ( IntervalManager.intervalIDs[name] != undefined)      {         IntervalManager.clearInterval( name );      }      IntervalManager.intervalIDs[name] = _global.setTimeout(path, functionName, interval, args);   }   /**    * Clears the interval with the name you provide.    *    * @param The name of the interval you'd like to clear.    */   public static function clearInterval( name:String ) : Void   {      _global.clearInterval( IntervalManager.intervalIDs[name] );      delete IntervalManager.intervalIDs[name];   }}


The code is simple... no need to worry about it.

Here is the code in the fla:


ActionScript Code:
IntervalManager.setInterval("hello", this, "sayHello", 1000, ["Michael"]);IntervalManager.setTimeout("helloOnce", this, "sayHelloOnce", 1000);function sayHello(args:Array) : Void{    trace("Hello, " + args[0]);}function sayHelloOnce() : Void{    trace( "Hello from the TimeOut" );}function onMouseDown(){    IntervalManager.clearInterval( "hello" );}


This class will be found in the package,

createage.managers

in the Dev Kit.

The documentation for the dev kit can be found here...

www.createage.com/CreateageLib

Take Care.

_Michael

Exstension Manager
I'm trying to embed a Yahoo map flash using Flash 8 , I downloaded ExstensionManager 1.7 installed it , problem is when i go to Flash 8>help>manage exstensions, the window is blank , the Install Exstrensions is off, can't be used and the Package exstension doesn't recognize the Yahoomap and the class actionscript which comes with it. Anyone knows how to get this done?Thanks a lot.

Extension Manager
ok guys tell me how can i use extension manager and how is it helpful...???
be little straight in explanation...thanks a lot

Content Manager
Hey guys,

i made my flash design loading text from a txt file. But the problem is that i can't control the bold and italic from the text.
So what i need is kinda content management. The company where i make the design for want to have control of the contant. I already did a quick search about loading html in flash but i wasn't lucky to find anything usefull.
Does anybody kow if this excist? or does anybody has another dolution for this problem?

Extension Manager Help
I had to deinstall Flash CS3 and re install it. As a precaution I saved the Extension Manager to an external HD. Now after I installed Flash CS3 and I launch Extension Manager it won't see Flash CS3 or any older versions of Flash. It only sees Dreamweaver and Fireworks. I did put the old extension manager back into the App's folder on the main HD, but Flash won't see it.
jbechdel@comcast.net

Task Manager
Hey,
I was wondering if anyone had some good advice on some software...

Does anybody use a to-do list software or some kind of task tracking software. Does even such a thing exist?

I'm looking for something to keep track of development tasks, to do lists, time frames etc... possible multiple project tracking, specifically for the web development environment or that can be used as such.

Does anyone have any good suggestions?

Thanks in advance,
Lil Chris

News Manager Help
i have recently downloaded an fla file from ultrashock called news manager. the problem is that i don't know why it won't work. when i test the movie, it only shows the loading part of the movie but doesn't do anything at all. i am stuck and in need to make this work or my site.

thenks in advance

ps.. could someone download it and tell me if they experience the same problems...

News Manager For Php
Last edited by guest : 2002-08-06 at 20:48.
























hi~
I need it.
thx!

sorry~English~so bad..

Bookmark Manager
Last edited by mux_rollik : 2005-03-15 at 11:13.
























Hey guys,

I am not sure if this is the correct category for posting this message.

I have made Flash/XML Bookmark Manager. It is still in beta version. You can use it on different computers and it is synchronized through a remote server.

You can download it from my site http://www.flashforabuck.com/apps/bookmark/bck001.htm

I hope you can tell me what you like and what you don't.

Thanks for your time.

News Manager
Hi all
Could someone please reccomend me a site, where I can download sample fla for news manager? I found here at ultra one file but it looks more guest book thans a news mamanager....anyone, any tip?


Thanks
Reverse

News Manager
Hey, I recently downloaded the News Manager from Here, http://www.ultrashock.com/flas/Detailed/117.html]link[/url], and I uploaded it to my site, and it doesn't work. Why?

Extension Manager For FlashMX?
The Macromedia Extension Mangager 1.5 doesn't work on my machine. Any body has exprienced it?

Extension Manager Format
I'm new with Flash MX and was trying to download a component so I
could start working on it in Flash MX . I downloaded the Extension
File Manager as recommended , but when I try to open the component ,
I get a message that the "File Format is not recognized" . Can some
one tell me what I'm missing ?

Thanks,

Sandpiper

Macromedia Extension Manager?
Is this little gem still necessary for component management? (specifically, the Flash Charting Components, already downloaded)

I can't find it anywhere on the MM site - anyone got a link or info about this sucker?

Cheers

Component Manager Issue
I just downloaded a component, camtasia's 'vcr contols' for flash mx. Wen I tried to install the component, i got an error that said i needed to have flash mx installed. It said i Had Dremweaver installed, but the thing is, I have studio installed (dreamweaver,flash,fireworks,freehand).
and when i try clicking "manage extensions" from flash, it says, a required file, EXTENSIONS.DLL was not found.

Any Ideas?

Anyone feel like posting a copy of the file and where to put it?


thanks in advanced


chordmasta

Extension Manager Trouble
once again, I have stumbled upon a problem. I ran into some difficulties when installnig the paypal extension, namely, when I open the extensions manager, it says that I do not have flash on my comp... riight.. arg. Can someone PLEASE help me! Has anyone encountered a similar problem and solved it? I'm not sure if we're dealing with flash anymore, maybe its just a problem with my system hardware... who knows. Someone out there must have experienced this, right?

Error Message: "The extension requires the following products: Flash ( Version 6 or greater) The extension will not be installed. "

Isn't MX above 6? Please help!

Yours truly, JJ

Flash Extension Manager
Hi everyone,
I am currently working on a project to add a few custom functions to Flash MX. The way we are approaching this is to build a component that simply defines the functions that a user drags onto the stage somewhere, and then provide a number of functions which appear in the reference section of the actions panel. This component simply replaces an old way we did it with #include. We are trying to make the functions easily accessable.

I have got the .mxp file to install the component and also add our actionscript references and code hint the key variables and function names.

The question is, are there any other ways of improving the integration of our functions into Flash MX. It would nice to get the code hinting to work for example, or perhaps (maybe wishful thinking) to install our customs functions without the need for the compoment to be dragged on the stage. Are there any developers here who have experience in working with the flash extension manager who can provide some more advice as to what is/is not possible.

Thanks in advance

FedEx Ship Manager API
I am looking at integrating this for a client at the moment, but it seems as though they dont have very good documentation for Flash er well... yeah. Has anyone worked with this? Implemented? Samples??? Yeah, that would freaking rock if one of you FK'ers out there knew about this. Thanks for any help!

http://www.fedex.com/us/solutions/sh...cs.html?link=4

UPDATE:

Right now I am trudging thought the XML guide and that looks rather promising, any comments on that?

http://www.fedex.com/us/solutions/wi...ide.pdf?link=4

Extention Manager Freakin Out
I went on a little component download spree... and now I can't open my extentions manager! What to do? Whats wierd is that now when I even try to download a MXP, my Safari crashes! What have I done????? I'm such an idiot! Please Help.

Hi. Macromedia Extension Manager
Hey, I cant download Macromedia Extension Manager from macromedia's website, because for some odd reason, its resticted here. I need it though, If someone has it (its located at http://www.macromedia.com/exchange/em_download/ ), can you plz pass me an alternative link or send it via email at mlperry@fccj.org


edit:
can you please pass the Java 2 Runtime Enviroment (windows-offline installation), could you plz pass that from https://sdlcweb4d.sun.com/ECom/EComA...93586DFCA9DB00 to mlperry@fccj.org

thank you

Flash Content Manager
elo there, id like to ask if there's a possible way to edit the content of a flash document? let say i want to edit the text in my news section and add or upload another picture without opening the fla files or uploading the image directly in the webserver.... like when you upload your picture in friendster, you can directly view the result in seconds.

please help. thanks in advance...
show me some tutorials or links

also link me to the free webhosting for testing an ASP.NET email using flash?

thanks thanks thanks!

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