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




Does Transition Manager Cancel The Tween Manager Effects ?



because as soon as I try to combine both transitions, one doesn't workExample : 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 .



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 04-04-2007, 08:47 AM


View Complete Forum Thread with Replies

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

Tween/transition Manager FLASH 8
Can someone provide example, actionscript, etc. of how to fade in/out a mc using the tween/or transition manager in Flash 8?

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

Transition Manager Question (again)
I pretty much have this all done and figured out.. but I cant seem to find a GOOD decent documentation on EACH of the Transition effects.. but more importantly ALL the parameters each one uses..

I found this:
http://www.onebyonedesign.com/tutori...riptTrans.html

with some documkentation on the params each trans effect can take.. but am looking for more..or examples (code) of each effect.. (so i can peek att he params passed to it)

Thanks

nevermind.. (DUH!)

if anyone else is wondering.. they have a nice documentation in the FLASH HELP FILES! (DOH!) LOL

[F8] Pauze Transition Manager
I'm using setinterval to pauze a frame for 5 seconds. Each frame uses the transition manager to apply a blinds transmition effect to the next frame. Problem is that on occasion the screen seems flash/blink. I think that's because the transition mananger uses seconds, not frames and at certain moments a transmition is interupted while gotoandplay goes to the next frame? Anyway, is there a way to pauze the playhead while a transmition is in progress and continue when it has ended? So in effect have it tested whether a transmition has ended?

Here's the code on each frame:

Code:
stop();
import mx.transitions.*;
import mx.transitions.easing.*;
TransitionManager.start(achter01, {type:Blinds, direction:Transition.IN, duration:0.5, easing:None.easeNone});
Timer = function () {
clearInterval(Pauze);
gotoAndStop(2);
};
Pauze = setInterval(Timer, 5000);
This shows the transmition, meanwhile pauze it 5 seconds before going to the next. Sometimes it works perfectly, sometimes the transmission effect seems to flicker for just a millisecond. How can I fix this? I think I have to find a way to test whether that transition has ended?

Transition Manager Error
I am using this code within a movieclip instance.



ActionScript Code:
public function barGo(e:Event){
                if(theXML.@linkType == 'A'){
                   
                    navigateToURL(new URLRequest(theXML.@go),theXML.@where);
                    trace("clicked a link sub Bar");
                   
                }
                else if(theXML.@linkType =='B'){
                    var tbox:displayText = new displayText();//extends movie clip
                    //parent.parent.
                    addChildAt(tbox,0);
                    TransitionManager.start(displayText,{type:Fly, direction:Transition.IN, duration:2, easing:Strong.easeOut})
                   
                }
               
               
            }

I am getting an error...
1067: Implicit coercion of a value of type Class to an unrelated type flash.display:MovieClip.

No idea how to solve this.. any ideaS?

TRANSITION MANAGER In AS 3.0 ; ADVANCED ISSUE
My question is, how do I use the Transition Manager in ActionScript 3.0 but use my own transition? I rather not use the blinds or dissolve transition effects at all. For indeed, I rather create my own effect for the transition.

This a question that no one is answering or demonstrating in the great Flash Community. I know I need to create a movieclip with my own effect, but I'm scrambling to find out on how to embed it into the Transition Manager.

More importantly, how do I embed my own transitions to the Transition Manager in ActionScript 3.0 when loading a different .swf file. More clearly, I want to use my own Transition effect via a MovieClip when loading external .swf files. How can that be done in with the Transition Manager in ActionScript 3.0?


The Flash Community needs to be abreast of the code for this...I believe.

TRANSITION MANAGER In AS 3.0 ; ADVANCED ISSUE
My question is, how do I use the Transition Manager in ActionScript 3.0 but use my own transition? I rather not use the blinds or dissolve transition effects at all. For indeed, I rather create my own effect for the transition.

This a question that no one is answering or demonstrating in the great Flash Community. I know I need to create a movieclip with my own effect, but I'm scrambling to find out on how to embed it into the Transition Manager.

More importantly, how do I embed my own transitions to the Transition Manager in ActionScript 3.0 when loading a different .swf file. More clearly, I want to use my own Transition effect via a MovieClip when loading external .swf files. How can that be done in with the Transition Manager in ActionScript 3.0?


The Flash Community needs to be abreast of the code for this...I believe.

TRANSITION MANAGER In AS 3.0 ; ADVANCED ISSUE
My question is, how do I use the Transition Manager in ActionScript 3.0 but use my own transition? I rather not use the blinds or dissolve transition effects at all. For indeed, I rather create my own effect for the transition.

This a question that no one is answering or demonstrating in the great Flash Community. I know I need to create a movieclip with my own effect, but I'm scrambling to find out on how to embed it into the Transition Manager.

More importantly, how do I embed my own transitions to the Transition Manager in ActionScript 3.0 when loading a different .swf file. More clearly, I want to use my own Transition effect via a MovieClip when loading external .swf files. How can that be done in with the Transition Manager in ActionScript 3.0?


The Flash Community needs to be abreast of the code for this...I believe.

TRANSITION MANAGER In AS 3.0 ; ADVANCED ISSUE
My question is, how do I use the Transition Manager in ActionScript 3.0 but use my own transition? I rather

not use the blinds and dissolve transition effects at all. For indeed, I rather create my own effect for the

transition. This a question that no one is answering or demonstrating in the great Flash Community. I know I

need to create a movieclip with my own effect, but I'm scrambling to find out on how to embed it into the

Transition Manager.


More importantly, how do I embed my own transitions to the Transition Manager in ActionScript 3.0 when

loading a different .swf file. More clearly, I want to use my own Transition effect via a MovieClip when

loading external .swf files. How can that be done in with the Transition Manager in ActionScript 3.0? Thanks

a billion for any thought.

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)?

Transition Manager Used With Timeline Style Animation
I have a simple timeline animation which fades a clip in from alpha=.3 to alpha=1. On the final frame, I use a TransitionManager tween to spin the object:

ST.startTransition({type:Rotate, direction:Transition.IN, duration:12, easing:Bounce.easeInOut, ccw:true, degrees:720});

However, when I restart this clip by returning to the first frame, the clip remains at alpha=1. It seems the transition manager has "taken control" of its properties, so that the timeline can no longer change it. I can only access them by using code such as

ST.content.alpha = .3
... but of course while this works to reset the alpha, the timeline tween is now useless. It simply remains at .3 and does not increase.

Can I not mix these two methods? Or is there a way of completely removing the TMs control over the object? I've tried
ST - null;
ST.removeAllTransitions(); (a method in the TransitionManager class)

Any help appreciated.

Changing Zoom Angle With Transition Manager
Hi guys and gals,

I'm making a map and would like to be able to zoom in and out of counties. I've got most of it down I believe, but would like to be able to control where the zoomed in image ends up. I'm using the transition manager information I found here.

Here is what my code looks like:

_root.img_dunn_mc._x = 82;
_root.img_dunn_mc._y = 235;
mx.transitions.TransitionManager.start(img_dunn_mc, {type:mx.transitions.Zoom, direction:0, duration:.5});

The x and y values are to make it appear that the county is zooming in from a specific spot on the map. When it zooms in, it simply makes the clip bigger. Is there a way to control the x and y coordinates of the zoomed in image?

Wow, I hope that made some sense.

Thanks!
Matt

Photo Slide Show Using The Transition Manager
Hi Everybody!!! (said in best Dr. Nickesque fashion)

I've build some pretty nice photo slide shows using this great Kirupa tutorial by sbeener mixed with the awesome help I received from scotty in this post.

Now I need some more help as I would like to make it a bit more complex by using the transition manager.

Can this be done? Well ... I know it can be done, I just need to know how. I've studied the code as best as I could to see if I could pull some thing off myself but my AS is not that advanced yet. I'm getting there but, not yet.

I basically have 5 photos that are going to be sitting on a home page that I want to bring in every 15 seconds or so with a slick transition and then loop.

Any help or direction will be greatly appreciated.

Using The Transition Manager On A Movie Clip Prevents Me From Physically Moving It After That
Hi,

I'm using the transitions manager to animate certain objects in my movie. let's say I'm using it on a ball - using the following code:

import mx.transitions.Tween;
import mx.transitions.easing.*;

function zoomIn(_mc) {
new Tween(_mc, "_xScale", Bounce.easeOut, 0, 100, .3, true);
new Tween(_mc, "_yScale", Bounce.easeOut, 0, 100, .3, true);
}
function zoomOut(_mc) {
new Tween(_mc, "_xScale", None.easeIn, this._xscale, 0, .05, true);
new Tween(_mc, "_yScale", None.easeIn, this._xscale, 0, .05, true);
}

and then calling it later with this:

zoomIn(ball_mc);

That works fine. But at a later stage of the movie I then try to move the location of the ball - not with code but by adding a key frame and physically moving it's location. When I play the movie back it does not show that it moves.

I'd really just like to know why this is!

Thanks,

Ray

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.

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

[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

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