URLRequests and MovieClips

I'm using AS3.
Is there any chance of creating a function for an instance of an MC to run URLRequests for different items on different frames, or is the only route to create a new MC instance on each necessary frame and type out the request to pull a photo or.swf? Just wondering if I can cut down on the amount of keyframes I'll foreseeably have.
Hopefully that made sense.
Also, how do I run an animated preloader in the movie clip for when it's fetching and loading a photo.
AND, how can I have the photo fade in (guessing somehow through brightness or alpha)? I know there's a lot being asked here. But with my naivete, I'm daunted trying to do these things inside a movie clip.
If any can offer help, thanks, and let me know if I need to provide more context.

oops, my error:
var ldr:Loader = new Loader();
var t:Timer=new Timer(70,0);
t.addEventListener(TimerEvent.TIMER,fadeoutF);
var fadespeed:Number=.03;  // use whatever number suits your needs
function loadAndAddF(mc:MovieClip,urlS:String){
ldr.alpha=0;
var urlR:URLRequest=new URLRequest(urlS);
ldr.load(urlR);
mc.addChild(ldr);
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE,loadCompleteF);
function loadCompleteF(e:Event){
t.start();
function fadeoutF(e:Event){
ldr.alpha+=fadespeed;
if(ldr.alpha>=1){
ldr.alpha=1;
t.stop();
then on each frame where you want to load an image into a frame movieclip use something like:
loadAndAddF(frameMC,"pics/image22.jpg");
// where frameMC is the name of your frame movieclip and you want to load image22.jpg that's in the pics folder.

Similar Messages

  • On button rollover Dynamic text and Movieclip appear

    Hi guys,
    I've got an issue - When one of my buttons is rolled over, I want text and a movieclip to appear. When the button is no longer rolled over, I want the text and movieclip to disappear.
    The way that I was going to do this was to have anchor_mc as an anchor, and upon rollover have the movieclip play from inside the anchor (as its at the exact X & Y that its needed at) and dynamic text appear.
    Questions:
    1) How do I attach mc_textbox to mc_anchor --- OR, how do I set coordinate for just where mc_textbox should show?
    2) How do I then make the movieclip disappear if the button is no longer rolled over?
    3) Is it not possible for me to merge all of the dynamic text functions into one function, using IF statements? I tried this, but couldn't work it out.
    AS3 code is attached below.
    import flash.events.MouseEvent;
    stop();
    line1.addEventListener(MouseEvent.ROLL_OVER, line_in1, false, 0, true);
    line1.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line2.addEventListener(MouseEvent.ROLL_OVER, line_in2, false, 0, true);
    line2.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line3.addEventListener(MouseEvent.ROLL_OVER, line_in3, false, 0, true);
    line3.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line4.addEventListener(MouseEvent.ROLL_OVER, line_in4, false, 0, true);
    line4.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line5.addEventListener(MouseEvent.ROLL_OVER, line_in5, false, 0, true);
    line5.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line6.addEventListener(MouseEvent.ROLL_OVER, line_in6, false, 0, true);
    line6.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line7.addEventListener(MouseEvent.ROLL_OVER, line_in7, false, 0, true);
    line7.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line8.addEventListener(MouseEvent.ROLL_OVER, line_in8, false, 0, true);
    line8.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    line9.addEventListener(MouseEvent.ROLL_OVER, line_in9, false, 0, true);
    line9.addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    function line_in1(e:MouseEvent):void
            line_output.text = "This is a test made by the MonkeyTest that has previously messed up\n        And testing a new line";
    function line_in2(e:MouseEvent):void
            line_output.text = "up messed previously has that MonkeyTest the by made test a is This";
    function line_in3(e:MouseEvent):void
            line_output.text = "This is a test made by the MonkeyTest that has previously messed up\n        And testing a new line";
    function line_in4(e:MouseEvent):void
            line_output.text = "up messed previously has that MonkeyTest the by made test a is This";
    function line_in5(e:MouseEvent):void
            line_output.text = "This is a test made by the MonkeyTest that has previously messed up\n        And testing a new line";
    function line_in6(e:MouseEvent):void
            line_output.text = "up messed previously has that MonkeyTest the by made test a is This";
    function line_in7(e:MouseEvent):void
            line_output.text = "This is a test made by the MonkeyTest that has previously messed up\n        And testing a new line";
    function line_in8(e:MouseEvent):void
            line_output.text = "up messed previously has that MonkeyTest the by made test a is This";
    function line_in9(e:MouseEvent):void
            line_output.text = "up messed previously has that MonkeyTest the by made test a is This";
    function line_out(e:MouseEvent):void
            line_output.text = "";
            var mc= new mc_empty(); addChild(mc);

    It isn't relly clear to me what you have versus what you want, so these answers may be equally unclear to you.
    1. One way to join them together is to maually place one inside the other while authoring the file.  Another way is to use addChild to add the text mc to the anchor...  mc_anchor.addChild(mc_textbox);  To control where the text mc appears you can set its x and y properties.using actionscript... mc_textbox.x = 0;
    2. To make the movieclip disappear you can set its visible property to false... mc_anchor.visible = false;
    3. You can probably reduce that code substantially, though it partly depends on what variations there are really going to be in the text that displays for each rollover.  For now, I'll assume the text will be entirely different for each...
    for(var i:uint=1; i<10; i++){
         this["line"+String(i)].addEventListener(MouseEvent.ROLL_OVER, line_in, false, 0, true);
         this["line"+String(i)].addEventListener(MouseEvent.ROLL_OUT, line_out, false, 0, true);
    function line_in(e:MouseEvent):void {
         var lineTarget:MovieClip = MovieClip(e:currentTarget);
          // could use a switch instead of the if's in series if you know what a switch is
         if(lineTarget == line1){
              // do things for line1
         } else if(lineTarget == line2){
              // do things for line2
         ) else if.... etc

  • URLRequest and navigateToURL to open email client but HTML email, not plain text???

    I want users to click a button that uses URLRequest and navigateToURL to open the user's default email client with email body pre-populated with HTML email.
    Even though I have tried to set the contentType property to one of the following, the HTML tags always display:
    application/xml
    application/html
    var request:URLRequest = new URLRequest("mailto: ?subject=Test Email&body=<h1>Test Body</h1>");request.contentType = "multipart/form-data";
    navigateToURL(request, "_self");
    BTW, the above code is simplified, so I am using escape() on the subject and body text, etc.
    So, is there any way to use mailto in this way to open the default email client and pre-populate with HTML email but not see the tags (BUT NOT REVERT TO PLAINTEXT)?

    FTQuest wrote:
    @Jason
    >The problem there however is that very few people actually set this up... (default mail client)
    Jason, can I ask you: is it your assumption, or there is/was reliable polling showing that majority of users prefer manually go the mail server instead of using the mail client application of their choice - Outlook, FireBird, Mail, etc?
    Igor Borodin
    There are numerous reasons behind avoiding mailto links in relation to design. And it's been debated back and forth for years. Form vs Mailto link both have their pros and cons and intended usages.
    After panelling groups of individuals for three seperate projects regarding various design perspectives in the RIAs we developed, it became quickly apparent that on numerous occasions users clicking a mailto link were unaware of what the resulting screen was actually for. Several had never set up the default mail client on their pc. Many thought that "Yahoo" was the only email service in the world... Now, with that said, the target demographic for those applcations may or may not be what his, yours, or anyone's project may be. The key there is going to be identifying your dedmographic and determining the tech prowness. Also, what exactly is the email's intended result? Refer a friend style? Might be better handled through a web form due to the possiblity of being able to properly track how many referrals were actually made. How many resulted in a visitor. Simply notifying admin that there is a problem on the site? Might be better to fire off a mailto.
    Reliably sending a preformatted HTML email can only be guaranteed on the server side. Otherwise, you run into problems just like he is having here. Now, if the email is plain text, different story.
    Again, it all comes down to identifying your usage and properly utilizng the available tools.

  • How do you download a static file using a FileReference and URLRequest and show the progress?

    All,
       I'm trying to download static content (PDFs) off of my server using tutorials from adobe's site and some online as well and i'm having no luck showing an updated progress bar.  I attached the meat of my code below.  If a user clicks a hyperlink, it calls the downloadPDF method passing in a constant url defined.
      When debugging, i can see that the event.bytesLoaded is incrementing on each call to the progress method, however the bytesTotal is only set to the intitial number of bytes transferred on the first pass through the method.  (Ex:  First time the method is called, bytesLoaded and bytesTotal will be 4,000... which i dont understand... the bytesTotal should be the total size of the file being downloaded.. definitely not the case...  the next time the method is called, bytesLoaded will increases to some number while bytesTotal will remain at 4,000).  This happens during the entire file transfer.
    Am i missing something? Are the examples incorrect?  Also to note, i'm using sdk 3.2 (Not sure if that makes a difference.)
    Thanks for any response or insight.
    Damian
    <mx:Script>
            <![CDATA[
                import com.ctc.fema.resources.Buttons;
                import flash.net.FileReference;
                private var fileRef:FileReference;
                private var urlReq:URLRequest;
                 * Constant values for user manual pdfs
                private static const PDF_STRING:String = "blahblahblah.pdf";
                private function init():void
                    /* Define file reference object and add a bunch of event listeners. */
                    fileRef = new FileReference();
                    fileRef.addEventListener(Event.COMPLETE, completeHandler);
                    fileRef.addEventListener(Event.OPEN, openHandler);
                    fileRef.addEventListener(ProgressEvent.PROGRESS, progressHandler);
                private function doEvent(evt:Event):void
                    /* Create shortcut to the FileReference object. */
                    var fr:FileReference = evt.currentTarget as FileReference;
                    try
                        /* Update the Model. */
                        fileRefModel.creationDate = fr.creationDate;
                        fileRefModel.creator = fr.creator;
                        fileRefModel.modificationDate = fr.modificationDate;
                        fileRefModel.name = fr.name;
                        fileRefModel.size = fr.size;
                        fileRefModel.type = fr.type;
                        /* Display the Text control. */
                    catch (err:*)
                        /* uh oh, an error of sorts. */
                private function downloadPDF(url:String):void
                    /* Begin download. */
                    urlReq = new URLRequest(url);
                    fileRef.download(urlReq);
                 * When the OPEN event has dispatched, change the progress bar's label
                 * and enable the "Cancel" button, which allows the user to abort the
                 * download operation.
                private function openHandler(event:Event):void
                    downloadStatusContainer.visible = true;
                    downloadStatusContainer.includeInLayout = true;
                    downloadProgressBar.label = "DOWNLOADING %3%%";
                    cancelButton.enabled = true;
                 * While the file is downloading, update the progress bar's status.
                private function progressHandler(event:ProgressEvent):void
                    downloadProgressBar.setProgress(event.bytesLoaded, event.bytesTotal);
                 * Once the download has completed, change the progress bar's label one
                 * last time and disable the "Cancel" button since the download is
                 * already completed.
                private function completeHandler(event:Event):void
                    downloadStatusContainer.visible = false;
                    downloadStatusContainer.includeInLayout = false;
                    downloadProgressBar.label = "DOWNLOAD COMPLETE";
                    cancelButton.enabled = false;
                 * Cancel the current file download.
                public function cancelDownload():void
                    fileRef.cancel();
                    downloadProgressBar.label = "DOWNLOAD CANCELLED";
                    cancelButton.enabled = false;
                    downloadStatusContainer.visible = false;
                    downloadStatusContainer.includeInLayout = false;
            ]]>
        </mx:Script>

    The tick counter has a resolution of 1 ms.  Resolution, accuracy, and the responsiveness of the OS are three different things.  The issue is that OS latency can be 10s of milliseconds or occasionally longer.  If the OS decides to index the hard drive between the time you read the tick count and send the start audio command, your tone could be quite late. Sending the TTL pulse is a third call to the OS.  So you have two latency times for each trial. Unless you have a real-time operating system, this latency issue will introduce randomness into your data.
    Try sending TTL pulses of 50 ms duration every 200 ms, software timed, for a few minutes and look at the variation in the edge timing.  Then try it again with tones thrown into the mix and see if the variation changes. 
    That is where hardware timing and synchronization pays off. 
    Lynn 

  • WARNING: Actions on button and MovieClip

    I have the following code that I am trying to get to work
    with ActionScript 3.0:
    on (rollOver) {
    gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
    this.gotoAndPlay("s2");
    on (release) {
    this.gotoAndPlay("s2");
    The problem is that ActionScript 3.0 will not allow the
    script on a MovieClip instance. I am at a loss with what to do, I
    work well with examples, so I have posted 2 source FLA that are
    identical, the only difference is that one targets ActionScript 2.0
    (and works), the other targets ActionScript 3.0 (and does not
    work).
    Please
    take
    a look

    There is no need to grasp the changes that fast. You can
    still publish files for AS2.
    Personally though I am always amazed that folks are still
    using the on(clipEvent) style of coding. Generally that style of
    coding should have gone away with the introduction of the
    MovieClip.onClipEvent syntax with Flash 6 – introduced in
    Spring of 2002. If you have been programming AS since 2002 and are
    still relying solely on on(clipEvent) then you have bigger issues
    than AS3. If you have come to AS more recently I just wonder why
    this style was the one you adopted. (By "you" I don't mean you
    – tmcquage – specifically. I mean you in the general
    sense, and I include all of the Flash community in why did we allow
    this to happen.)
    You could probably answer that question yourself quick than
    posting here! But I just tested it and the stop(); works fine.
    I would recommend sticking with AS2 for the time being. Learn
    how to use all the movieclip methods from the main timeline, not
    from on an instance. Then the change over to AS3 won't be such a
    shock. Even if you never go to AS3, you will be so happy you
    stopped using instance code. Really.

  • Flex, URLRequest and Fusebox

    Hi,
    I am doing some Flex and CF work here. I am using CF 8 and
    Flex 3 beta.
    I am building this file upload component in Flex where the
    user can upload a file. I got the code working but it only seems to
    work when I call my CF based upload script (essentially a CFFILE
    tag) directly. Since I am using Fusebox everything goes through
    index.cfm.
    private var _fileRef:FileReference = new FileReference();
    private var _request:URLRequest = new URLRequest("
    http://localhost/mysite/index.cfm?fuseaction=employee.upload_portfolio");
    So essentially I am trying to call a fuseaction that will in
    turn call the actual .cfm page which contains the <CFFILE>
    tag. How can I do this? Again it works just fine if I call the .cfm
    page directly in the URLRequest() method, but I would much rather
    call a fuseaction. Any idea on how to do this? I tried the above,
    but it does not seem to work, I got a File I/O run-time error.
    -Westside

    bump.

  • Problem with NumericStepper and MovieClip's gotoAndStop

    I have a NumericStepper that increment/decrements the slides in a MovieClip called libMC:
    <mx:NumericStepper id="slide"
    change="{libMC.gotoAndStop(slide.value)}" value="1" minimum="1"
    maximum="{numberOfPages}" stepSize="1" />
    For some reason when I am on the last slide and try to go back to the
    second to last slide (either using the down arrow or entering the
    second to last page number in the textbox and hitting Enter on the
    keyboard), I still remain on the last slide. This problem ONLY occurs
    when going from the last slide back to the second to last slide. All
    other slide transitions work fine.
    Any ideas?

    use the trace() function to debug your code.

  • Clip Mask and MovieClip pivot questions

    Two more beginner questions:
    1) What's the easiest way to invert a clipping mask for a
    MovieClip in ActionScript? I tried using a ColorTransformMatrix to
    invert the alpha of the mask MovieClip, but it didn't work (looks
    like the clip mask simply does nothing where there are no filled
    shapes). I would like to add a graphic everywhere EXCEPT within the
    area of an animated MovieClip, and due to various requirements I
    cannot simply place it behind that MovieClip.
    2) Is there a way to set the pivot of a MovieClip in relation
    to the animated drawings/frames? It looks like the "origin" of a
    movieclip is the lower left-most corner of all the bounding boxes
    of all the frames of animation in my MovieClip. So if I set the _x
    and _y of a MovieClip in ActionScript to 150,150 it places the
    lowerleft-hand corner there instead of what I would like to be
    logical center of the MovieClip (say, center of a wheelbase of a
    car, or center of the feet of a person, or center of mass of a
    rock). I am fine with dialing in an offset, but just wondering if
    there is a cleaner way to do it (esp. if I happen to add more
    animation frames or replace drawings and the bounding box changes
    size).
    Thanks,
    Ken

    Ah, I figured everything out.
    1) Actually, the ColorTransformMatrix does work, but I didn't
    realize that alpha was 0-255, not 0-1 (you'd think after being
    bitten by MovieClip scales being 100 = 100% instead of 1 = 100%,
    I'd have guessed, but...). So a ColorTransformMatrix of
    (1 0 0 0 0)
    (0 1 0 0 0)
    (0 0 1 0 0)
    (0 0 0 -1 255)
    applied to the mask will successfully invert it. Nice.
    2) Apparently I had previously messed up grabbing all the
    images and dragging them - I had forgotten to turn onion skinning
    to "onion all" so that I could actually see everything (all my
    images are all on top of each other so it wasn't obvious I didn't
    have everything visible). I had been selecting all the frames and
    dragging the images around in relation to the registration point,
    but only the last 3 frames were actually moving, and they happened
    to be a part of the animation I didn't bother triggering while
    testing. Oops.
    Thanks much for your help.
    Ken

  • Extending and MovieClip?

    This is really aggravating me. I come from a OOP background
    so Java and others are natural to me but ActionScript 2 is really
    really unintuitive even thought it tries really hard to be a object
    oriented language. So sorry if some of my question comes off as
    rant/frustration.
    I'm trying to extend the MovieClip class but it seems "class
    Test extends MovieClip" isn't actually a MovieClip!!! wtf
    [code]
    class Test extends MovieClip {
    function Test(){
    trace("constructor called");
    lineStyle(5, 0xFF00FF, 100);
    moveTo(200, 200);
    lineTo(300, 300);
    lineTo(100, 300);
    lineTo(200, 200);
    On frame 1:
    import Test;
    stop();
    var myMc = new Test();
    [/code]
    It outputs constructor called, but it doesn't draw anything
    and in true Actionscript fashion, outputs no errors or warnings
    whatsoever.
    It seems that a class that extends a MovieClip isn't actually
    a MovieClip. So much for that "is-a" relationship that its supposed
    to have. or i guess it gives you access to the MovieClip functions,
    but theres no point because theres no MovieClip on the stage...
    Sure I suppose I could create an empty movie clip in the
    constructor and put things in there, but then whats the point of
    extending MovieClip? If Test really is a MovieClip it should be
    able to draw on itself.
    What am I not getting???

    Yes, I believe its more like you're used to in as3.
    So in as2 extending a MovieClip is not "as it should be". But
    its not too difficult to get used to. If you're just starting with
    actionscript coming from another OOP language you may want to start
    with as3.
    If you're doing it in as2 then cast the return type of
    attachMovie to your class.
    var mynewThing:Thing = attachMovie("thingClip", "firstThing",
    nextdepth)
    There are some 'tricks' to avoid using a library symbol:
    "an empty movie clip is automatically created for your class
    in your library with the linkage id __Packages.[full class name].
    So you could just use that without defining any symbols yourself."
    -source:
    http://board.flashkit.com/board/showthread.php?t=615810
    example:

  • Classes and Movieclips question

    Hey
    I'm just wondering, how do I use/call (say... modify the y
    coordinate) of a MovieClip that is placed on the stage, in a parent
    class of the Document class?

    Fuc*in kglad, I love you man. You ended a week long feud I
    had with flash because I couldn't get this to work. I'm so happy
    about this, it feels so nice to be able to work on my game again
    and suddenly a huge part of flash just made sense.
    I greatly appreciate your help. Thanks mate :).
    For those who may have stumbled across this thread who have
    the same problem (it really isn't a problem, but more of a lack of
    knowledge of something specific), here is what you have to do:
    In my document class I have this function:
    [code]
    public function CallBaseEngine():void {
    helloPerson(player);
    [/code]
    Now in a parent class of the doucment class (meaning that the
    document class "extends" to this class I have this:
    [code]
    public function helloPerson(player):void {
    player.x = 999;
    [/code]
    player being simply the instance name of a movieclip I have
    on the stage.
    So what does this code mean for the n00bies? Well in the
    first block of code I am simply calling a function called
    helloPerson which is located in a parent class, remember children
    can "access" their parents but parents can't "access" their
    children so if I did the same thing but tried to call a function in
    the child class I would get an error saying its not found. However,
    you put "player" in the brackets which means that you want to bring
    the movieclip with an instance name called player through with you
    on your way to call the function helloPerson.
    In the second block of code, I am quite simply modifying
    where the player movieclip is along the x axis, this is to make
    sure that I can access the movieclip called player and the code is
    properly working. Bringing along doesn't mean we create a
    "duplicate" or anything, it basically is bringing along the
    permission to access player.
    Thanks again kglad!

  • Recover informations between Class and MovieClip

    Hello,
    I have a page (MovieClip) which is charger and have a attribut a matrix (not the class). On this page, there is some cases (MovieClip) which receive value of the matrix.
    Each cases are managed by Class. It's a good option, because I can put a listener into the contructor of the class and not having 64 functions if I have 64 cases. This listener allows to change the value of the cases when it clicked.
    The problem is that I don't see how to know when a case is clicked in the page for changing the value of the matrix.
    Regards,

    I have a MovieClip called "Level" and I have created a Class "Level" and a Class "Matrice". The "Level" Class has an attribute mat:Matrice. The "Matrice" Class has a dimension and a 2 dimension array (If dimension = 2, you have a 2x2 matrix).
    On the Level MovieClip, you have several Case MovieCLip. I also created a "Case" Class for managing the listener.
    And when I clicked on a Case, the text value changed but I can not update the Matrice in the Level Class.

  • GetURL and movieClip Problems

    Hi,
    Is there something different going on when, using the getURL
    when working within movieClips;
    buttColor_mc.onRelease = function(){
    mySound.start(0, 1);
    trace('You've landed');
    getURL("
    http://www.adobe.com", "_blank");
    This works perfectly, while testing in Flash cs3, but when
    embedded into html page using (soundObject javaScript) it loads
    perfectly, onRelease plays the specified sound file, but will not
    open a browser window. Have not tried it on out server yet. But
    surely, if it works while testing in Flash cs3, then it should
    work?
    Any help here will be more than appreciated; I am currently
    in the middle of putting our website together, and am in need of
    ROI from this.
    Kind Regards,
    Boxing Boom

    Hi,
    This issue has now been resolved; it was down to the Manager
    Settings in Flash Player etc...
    Boxing Boom

  • Label Name and MovieClip Help

    Hello guys I am wondering if you help me. I'm a beginner at Flash and not sure if this can be done.
    Basically. On my stage in have two MovieClips. MC_1 and MC_2. When i put the mouse over MC_1 I want it to play a 'label'
    that is inside the MC_2 AND a label that is in MC_1. We can call the label name for MC_2 "lidopen" and the label name for MC_1 "stars."
    Also if I take the mouse off, I want it to go back to normal, and if i click down I want it to play a new .swf file called "123.swf"
    I hope you understand me, and thanks for your help in advanced =)

    Here is some code that will go in the timeline that contains the two movieclips...
    MC_1.onRollover = function(){
         MC_1.gotoAndPlay("stars");
         MC_2.gotoAndPlay("lidopen");
    MC_1.onRollout = function(){
         MC_1.gotoAndStop(1);   // I assumed 1, so change if needed
         MC_2.gotoAndStop(1);
    MC_1.onPress = function(){
         // do something with 123.swf
    I am not clear on your intentions as far as playing 123.swf, so I haven't attempted to code that.  IF you are loading it into the same file, then you might use MovieClipLoader.loadClip or loadMovie, or if you are opening a new web page you would use getURL.

  • Flash Player 10, strange problem with emdedded fonts and movieclips

    Hello, developers! I have a big problem with font embedding
    and I can not debug it myself. So I need you help.
    I' ve done a simple list of attached movieclips with
    textfields inside them, with embedded fonts. I have no problem with
    flash player 9 in order to see the list, but in flash player 10 I
    can't see it. The font is very common, Arial actually so you can
    test it very easily. I am using a font symbol in the library, a
    class and an xml file for my data.
    Also you can see it online in (if you have flash player 10
    you can't see a thing)
    http://www.forestonfire.com//research/flash/fontproblem/index.html
    I have compiled the file as an exe projector in order to see
    it as I do in flash player 9
    http://www.forestonfire.com//research/flash/fontproblem/fontinflash9.zip
    I have zipped also the source code in order to compile it
    yourself.
    http://www.forestonfire.com/research/flash/fontproblem/fontembedded.zip
    and the same example without embedded fonts (I have the same
    problem there so perchaps are not the fonts)
    http://www.forestonfire.com/research/flash/fontproblem/fontnotembed.zip
    Please, check it and tell me if there is a solution
    available. Thank you in advance.

    I've included also a much more simple example without the xml
    and the font symbol, only the class and a movieclip from the
    library, but I can't still see it on flash player 10
    http://www.forestonfire.com/research/flash/fontproblem/simplyfied.zip
    I have no clue about this problem.

  • Flash Slide  presentation and movieclip looping

    Hi,
    Im having a problem with the flash slide presentation. I have
    on the main timeline of one of my slides a movieclip. When i play
    the movie, the clip will loop endlessley. I would like the movie
    clip to play just once. In a regular flash movie this would not be
    a problem - i could put a stop action on the last frame of the
    movieclip. but, doing that in the context of a flash slide freezes
    the movieclip at the begining so it does not play at all..
    help!

    Ok, Ive managed to solve item 2. - if you set in the slide
    component inspector - "playHidden=false" then the slide animation
    will restart any time you reenter the slide. Im still lacking an
    understanding of how to stop a motion tween from repeating itself
    when it's contained within a movie clip as a motion tween timeline
    cannot recieve fram actions apparently...

Maybe you are looking for

  • Java.lang.NullPointerException exception in SOAP Receiver adapter

    Hi Experts, I have a requirement where a third party system will call a service(WSDL) generated from ID to receive some details from SAP system. The design and configuration part everything was created and was able to receive requests from third part

  • Touchpad drivers installation for Mini 110

    Have a HP Mini 110 1030NR PC, with XP. Where do I find the latest drivers for my touchpad? How do I install the new drivers?

  • The apps icon is not showing anywhere on screen why?

    I'm just trying to learn as much as I can,know not a lot so far first question is why has the App Store icon gone from opening pages screen ? What can I do to fix it  Anyone ?

  • Can't import an xml file

    Hi, I am using Captivate 5.5 on Windows. I have an .swf file which needs to have an xml file with it in order for it to behave the way in which it was intended. The developer has said that the two files need to be included in the same folder. I have

  • Duplicate records in flat file extracted using openhub

    Hi folks I am extracting data from the cube to opnhub into a flat file, I see duplicate records in the file. I am doing a full load to a flat file I cannot have technical key because I am using a flat file. Poonam