Setting Variables to embedded SWF in Director

I have a print button on screen at the end of a test within
my director project. Once the user completes they are able to print
there results. I have a certificate created in Flash publised using
player 7 AS2 which is suppose to recieve varibles and populate text
fields on stage.
This works perfect when testing within the authoring
environment or when using a projector but when using Shockwave it
doesn't seem to send all the variables to the flash movie.
therefore does not trigger the flash printObj command.
Now last time I checked the project online it was working
perfect in Shockwave 10.1 and the earlier version of shockwave 10.2
I noticed with shockwave 10.2.0.23 the latest version it
crashes out the browsers. I have fixed it from crashing but not all
the variables are getting to the flash movie.
I am using:
on mouseUp me
pPrintMe = true
end
on exitframe me
myCallBack= sprite(pPrintSprite).getVariable("drCallback",
true)
if pPrintMe=true then
setVariable(sprite(pPrintSprite) , "drTitle",
string(myObjectList[#CBT][1]))
setVariable(sprite(pPrintSprite) , "drName",
string(myObjectList[#firstname] & " " &
myObjectList[#lastname]))
setVariable(sprite(pPrintSprite) , "drTID",
string(myObjectList[#tid]))
setVariable(sprite(pPrintSprite) , "drModule", "Has
completed the test for the above training package with the
following results:")
setVariable(sprite(pPrintSprite) , "drScore",
string(gtestPList[#score][1] & " out of " &
gtestPList[#score][2] & " points"))
setVariable(sprite(pPrintSprite) , "drPercent",
string(gTestPList[#score][4]))
setVariable(sprite(pPrintSprite) , "drDate",
string(baSystemTime("%0d-%b-%Y")))
setVariable(sprite(pPrintSprite) , "copyright",
"Copyright© "&string(baSystemTime("%Y"))&" Company
name")
end if
end
Now simple enough code. I blame Adobe for breaking my
code!

O yes, i have very similar problem to this, where since i
have updated to latest version of the shockwave player, not all my
variables are passing through to flash (version 8) and my web
browser is crashing out.
What can i do about this?

Similar Messages

  • Accessing Captivate 5.5 variables from embedded SWFs

    Hi,
    as we all know the interface for accessing Captivate variables from embedded SWFs tends to change between Captivate versions. Shortly after it's release we upgraded to version 5.5, and I'm not succeeding in accessing the Captivate variables in my Flash/AS3 code the same way it was done in version 5.
    How should I access the Captivate 5.5 variables (rdinfoCurrentSlide et al) from my SWFs?

    Hi,
    You can use system variable : cpInfoCurrentSlide to show the slide number.
    So you can use text captions to display the value of the variable, the format for displaying the value stored in the variable is $$<system variable>$$. So for slide number use : $$cpInfoCurrentSlide$$, type this in the text caption and then check it in the preview.
    Thanks

  • Passing Captivate Variables to Embedded swf

    Hello,
    How can i read a captivate variable in embedded swf file like cpInfoCurrentSlide;
    Thanks

    var cpRoot:Object = MovieClip(root);
    var mainmov:Object = MovieClip(cpRoot.parent.root);
    mainmov.cpInfoCurrentSlide
    mainmov.rdinfoCurrentSlide
    Some things only work with the old rd variables.
    This works for 6 and 7, I haven't tested on 8 yet.

  • Embedded swf in director on touch screen - double tap required

    There is a known problem with swf's with nested mc's embedded in a director projector when used on a touchscreen (with dragmode enabled)
    I've found many threads referring to the problem (here's some), but none of the solutions suit my particular situation.
    http://www.directorforum.de/threads/54055-Flash-within-touchscreen
    http://www.directorforum.de/threads/52818-Mouse-events-for-Flash-Object-in-Director-on-tou chscreen
    http://forums.adobe.com/thread/159381?tstart=0
    Basically, the problem is that flash requires a mouseRollOver event to give the focus to the mc, before it registers an onPress. With a touchscreen, where the cursor is disabled, the first click and release on the swf (or nested mc's) reads as an onRollOver event, and the user must click again to register an onPress and onRelease. This leads to very confusing behaviours in my application where I have dots (embedded mc's)  being created when an image is touched, then the dots can be clicked and dragged, or double tapped to be removed.
    All works fine when the mouse and cursor is used, but I can't get it to work using a single tap on the touchscreen. In some cases I can get away with using onRollOver but when used with startDrag I can't think of a way of stopping the drag when the user lifts their finger. (which doesn't register as an event)
    What I need is an AS2 script that forces a click event (onPress) when the user taps the button once. Unfortunately I only know AS2 so can't use mouseEvents from AS3. I've spent days on this (after I thought I'd got all the bugs out) and have run out of ideas. Any suggestions appreciated please

    Managed to get around it along the lines of: this[my_name].onRollOver = function()
    pressAction(my_name);
    }; this[my_name].onPress = function()
    pressAction(my_name);
    }; where pressAction() starts the drag and sets dotName and a flag to record if its using the rollover or press.
    then on the base movieclip... this.onMouseUp = function()
    this[dotName].stopDrag();
    };

  • Calling functions / setting variables in loaded SWF

    You know how you can create a Movieclip object, add a
    function or variable to it, then call that function or change that
    variable from within the SWF that includes it? I wanna be able to
    do that, only with SWFs that are loaded at run time.
    My "main" SWF is simply a menu-type thing. The user clicks a
    button in my MAIN.SWF, and the MAIN.SWF then loads the SWF that's
    associated with that button, using the AS 3.0 prescribed
    Loader()-URLRequest()-addChild() method that everyone always asks
    about.
    This works great. But now I've got some custom objects and
    such (ie., not just strings) within my MAIN.SWF that I'd like to be
    able to share with the loaded SWFs. Preferably, I'd like to use an
    accessor-type function (ie.,
    LoadedSWF.GiveMeTheCoolObject(MyCoolObject);), though at this point
    I'm willing to hack into the object itself (ie.,
    LoadedSWF.CoolObject.CoolField = MyCoolObject.CoolField;) if that's
    what it takes.
    I've tried just calling the functions and setting the fields,
    but the AS 3.0 compiler doesn't care for that sort of nonsense on
    it's generically-defined objects. Notice also that, at run time, a
    call to LoadedSWF.hasOwnObject("GiveMeTheCoolObject") returns true.
    So my big-brained colleagues, what's the magic?
    In advance, thanks for the help!
    Scott

    Kglad,
    quote:
    Originally posted by:
    kglad
    from that error message it appears your function is expecting
    a member of the MyCoolObject class, correct?
    and MyCoolObject is not an instance of that class. so, you
    need to fix that. ie, create a member of that class and use that
    class member as the function parameter.
    Heh, that's what the error message says all right. But the
    object actually IS a MyCoolObject class object. I stared at this
    thing for hours, and MyCoolObject IS an instance of that class. I
    tried various casting combinations (including casting it to an
    Object and passing that) but had no luck whatsoever.
    So I googled this particular runtime error message ("Error
    #1034: Type Coercion failed: cannot convert ") and found a ton of
    links to other people having a similar issue. Typically, the
    problem was just as you said, someone passing a button as a string,
    that kinda thing. But one guy had a problem with an object he
    derived from the Event class. After hours spent trying to get it to
    work, he tried overriding the base class' clone() method and got it
    to work:
    http://www.asserttrue.com/articles/2006/10/14/custom-events-in-actionscript-3-0
    As for my project, I took a long hard look at the overall
    architecture of my project and decided that it was best if all the
    "real work" took place in the MAIN.SWF file. This approach would
    solve a couple of other problems, and it just makes sense in a
    "separate the display from the data" mentality.
    So (and this is the interesting part) I changed the API for
    the LOADED.SWF to accept String pairs (ie.,
    LoadedSWF.AddToDisplay(Name:String, Data:String) ) instead of
    accepting MyCoolObj. Ran it, and Viola, now we're working without
    any run time exceptions. After that glorious moment, I created a
    couple of other APIs that just accepted base classes (one an int
    type, the other a function type) and was happily on my way.
    From this, I gather that passing non-base class (ie, derived
    class) objects to loaded MovieClips via custom function APIs is...
    maybe not as straightforward as we'd expect. In the grand scheme of
    things though, not a big deal: As far as I'm concerned AS3 rocks.
    Again Kglad, thanks for all the help: Your input on how to do
    this was the big push that I needed to get over the last technical
    hurdle of this project.
    To those who are reading this topic for the "how do I call
    functions and/or set variables in a loaded SWF?"
    The short answer is to cast the loaded SWF's content object
    as a MovieClip and then call the function or alter the variable:
    //Load the SWF (you've seen this code a million times)
    var LoadedSWFObj:Loader = new Loader();
    var MyURL:URLRequest = new URLRequest("LoadThisSWF.SWF");
    LoadedSWFObj.load(MyURL);
    //This is within your Event.COMPLETE handler:
    //Cast it as a MovieClip object and work with that.
    var LoadedSWF:MovieClip = LoadedSWFObj.content as MovieClip;
    // or another way to cast it is:
    var LoadedSWF:MovieClip = MovieClip(LoadedSWFObj.content);
    //Call yer function:
    LoadedSWF.CallMe();

  • Problems with embedding swfs into Director 11.5

    Hello everyone,
    I am hoping someone can help me and please bear with me - I don't know a lot about director - I can do some Lingo and get around in the program to make things work.
    Right now I am working on an interactive presentation where the user can click a button to view an animation. I am using Director 11.5 for my presentation and have made my animations in After Effects CS3 -- from there I converted my .mov files to .flv files using the Adobe Media Encoder CS4... then I took my .flv file into Flash and published it as a swf file.
    The problem that I am having is that when I play the presentation (within Director and after publishing the .app/projector file) the swf files are playing - but there is all this glitchy-artifact stuff all over them. Does anyone know why this would be happening? When I play the swf files in the flash player they look great. Before, when I was using Flash MX and Director MX, I never had any problems with embedding my swf animation files - and they played great - without any artifact. Any and all help would be much appreciated as this project is due in the next few days and I would prefer to figure out a solution rather than uninstalling Flash CS4 and Director 11.5 - and going back to MX.
    I toyed with the thought that my video card isn't good enough but I tested the .app file on another machine and the glitchy-artifacts were still there. I have attached a jpg showing the artifact that appears.
    I am running Mac OS X 10.5.7
    Dual 2 GHz G5 PowerPC
    ATI Radeon X800 XT
    Thank you!

    Sorry... here is the image again and I think the problem might be my machine -- it is very old (~4+ years) and when I tested my .app on a newer intel mac here it worked fine... but maybe I am missing something -- it seems odd that I can see the swf fine in flash player but it is glitchy when played through director or the .app projector file

  • Loading External SWF and setting variables

    Hello Everyone.
    I'm sure you are all a where of the FlashVars attribute for
    Flash embeds which holds variables for SWF's when they are
    rendered. I'm attempting to load an External SWF dynamically
    from within my own SWF and need to provide it with the values
    normally stored in the FlashVars. For the example below I
    wait until the External SWF is completely loaded using the
    onLoadInit event from moviecliploader and then i attempt to
    set the required variables that the loaded SWF needs. This works
    great in test and debug mode (ie. Test Movie and Debug Movie
    from the Control menu), but when i publish my FLA to SWF and run
    the SWF the variables will NOT get set in the loaded External SWF.
    From my readings ive people have mentioned that the player is only
    able to access Methods of an External SWF. If this is the case then
    how do they expect people to set the FlashVars of dynamically
    loaded SWFs? I investigated the loadVariables procedure as well and
    had the same results in test mode and was wasn't reliable because
    of timing issues.
    The sample source is below... if anyone has any ideas or has
    come across this issue before, I would really appreciate some
    insight.
    Thank you in advance for your time.
    var loader_mc:MovieClipLoader = new MovieClipLoader();
    var mclListener:Object = new Object();
    loader_mc.addListener(mclListener);
    mclListener.onLoadProgress = function(target_mc:MovieClip,
    numBytesLoaded:Number, numBytesTotal:Number) {
    // DO NOTHING
    mclListener.onLoadComplete = function(target_mc:MovieClip) {
    // DO NOTHING
    mclListener.onLoadInit = function(target_mc:MovieClip) {
    // WORKS IN TEST MODE NOT IN PUBLISH/SWF MODE
    target_mc._root.param1 = "value1";
    // WORKS IN TEST MODE NOT IN PUBLISH/SWF MODE
    _level0.container_mc.param1 = "value1";
    this.createEmptyMovieClip("container_mc",
    this.getNextHighestDepth());
    container_mc._lockroot = true;
    loader_mc.loadClip("somecoolflash.swf", container_mc);

    I've tried that as well and it behaves the same as onLoadInit
    ... Works when i test but doesnt when i publish to a swf. I think
    this is security related and the flash player just cant write to a
    loaded swf and set variables.

  • Set Variables from HTML

    Here is the set up, I have a video player embedded in an html
    file. The player will play a lead in video for branding purposes IF
    the user has not viewed this lead in video yet. ELSE it wil play
    the video they specified and then continue to play the rest of the
    videos in a que.
    Everything is fine except, the current video is dependant on
    the HTML page the view is at and I would rather just have 1 swf
    file rather than 1 swf file for every video.
    So my question is, how can i get the HTML page to tell the
    swf file which file to load after the lead in file. I essentially
    need to send this parameter from the HTML file to the swf file -
    How do I do that??
    Thanks!

    Using FlashVars is just appending the variable to the SWF's
    url. So, in your embed script, where ever you have the path to your
    SWF, like, mymovie.swf, you just append whatever variable you need
    to that. So, lets say you want to pass in a name, you would use
    mymovie.swf?name=dzedward
    Then, in flash retrieve it like so:
    root.loaderInfo.parameters.name;
    Lets say you want to pass in first and last name:
    mymovie.swf?firstName=Damon&lastName=Edwards
    retrieve it like so:
    root.loaderInfo.parameters.firstName;
    root.loaderInfo.parameters.lastName;
    Now, if you're using SWFObject to embed your SWF, its as
    simple as:
    so.addVariable("name", "dzedward");
    retrieving it the same way as above.

  • Embedded swf not playing in Captivate 4

    Hi - I have embedded a flash authored swf into CP4, it is published from flash as a ver 9 swf.  I am using Flash Player 10 on the PC. It's a single frame swf and contains AS3 code to make a simple rollover image popup (further development is planned but just testing for now).  It works when viewed standalone in a browser or with the flash player
    In CP4 when played by either previewing it or by publishing and viewing in a browser, the screen with that swf on it is a 'white screen of death'.  I have tried the following:
    1. clicking and unclicking synchronise with project
    2. click and unclick externalize animations check box in prefs - the swf file was also manually copied over to the publish directory
    3. set display for "duration of animation"..also tried 'rest of slide' and 'specific time'
    4. click and unclick - 'synchronise with project'
    5. Set Actionscript Version in prefs to "AS3"
    6. I placed another different swf (flash ver9) onto the following slide in CP4 - this one with no Actionscript content at all - just a simple timeline based motion tween.  It works!
    Does anyone know if CP4 cannot accept embedded swf's with Actionscript 3 code in them?

    Hi there
    Oftentimes the warning about referencing Root is simply a nuisance and may be totally ignored.
    I find that the animation works here on my own PC if I click Edit > Preferences... > Project node > Publish Settings node and configure for AS3.
    Perhaps try that?
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Embedding SWF in a text field

    Hi, New user to Flash here with a problem embedding .SWF
    files. I have already existing SWF files that I have called
    historically from HTML using <object> to embed the object and
    <param name= value=> also to pass it information. The SWF
    movie I need to embed basically builds a graph and takes its data
    from the location you supply it in <param name= value=>
    field. This code is not mine and I can't alter it.
    What I want to do is construct a flash version of my site and
    embed these graphs within a flash textfield. I have been able to
    successfully embed a test SWF file using <img> tags on a text
    field ---> but here is my question. How do I support the
    <param name= value=> functionality I got when I called these
    graphs from HTML using <object>?
    I hope that's clear? Any help at all is greatly appreciated.
    Tom

    Tom,
    > What I want to do is construct a flash version of my
    site
    > and embed these graphs within a flash textfield.
    That's a really interesting approach. At first, I didn't
    understand
    what you were aiming for, but it sounds to me like you're
    tying to use HTML
    inside a Flash text field -- which is doable, to some extent
    -- and embed an
    external SWF in that HTML ... all within Flash.
    > I have been able to successfully embed a test SWF file
    > using <img> tags on a text field --->
    That does work, but it's about the closest you'll get, I'm
    afraid. It's
    only happenstance that Flash's very narrow (and somewhat
    unique) version of
    HTML accepts SWFs in an <img> tag.
    > but here is my question. How do I support the <param
    name=
    > value=> functionality I got when I called these
    graphs from
    > HTML using <object>?
    Flash only supports a very limited subset of the HTML
    language. You can
    see the full list of supported tags by searching the phrase
    "supported tags"
    in the documentation (specifically, the Learning ActionScript
    2.0 in Flash
    book). For better or worse, <object>, <param>,
    and <embed> are simply not
    in that list.
    > Any help at all is greatly appreciated.
    Your only choice is to use one of the more traditional
    methods of
    loading external SWFs, such as loadMovie(),
    MovieClip.loadMovie(), or the
    MovieClipLoader class. Once your external SWF is loaded, you
    may "feed" it
    variables that should be detectable by the ActionScript
    inside the loaded
    SWF.
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Possible to make embedded swf (in another swf) fill browser?

    I have an .swf which is set at 100x100 percent and fills the
    browser window. I have an embedded .swf within this .swf, and I
    would like to be able to have the embedded .swf fill the browser
    window and remain fluid (for different screen resolutions). This
    has to be done from the embedded .swf.
    I thought if I could retrieve the stage details of the parent
    .swf from within the embedded .swf, then I could use these to
    resize the embedded .swf - but I haven't been able to do this.
    I'm plum out of ideas. Can anybody give me any pointers?
    Many thanks.

    I may have my terminology mixed up. I have a pre-compiled
    .swf that allows embedding of .swf's from a seperate .xml file via
    a LocalConnection API.

  • Passing variables / accessing other swfs

    It has been years since I used flash, so I consider myself a
    rank armature. I'm Using Flash 8 and would like the code to be
    backward-compatible to ver. 6.
    I have a big movie, with lots of images. I've comprimised the
    image quality as much as I dare, but it still takes 20-30 seconds
    to load (my client is in Paris, and claims to have the fastest
    connection in Paris, but it takes more than a minute to load it
    from there, even when loaded on his local server). I'm assuming
    that the only way to achieve a meaningful decrease in load time
    will be to split it up into smaller swf's, one mail swf, and each
    sub-page in it's own swf, and have each swf loaded only when
    needed. The fla can be downloaded here:
    cjreynolds.com/fuda30.zip
    The movie currently runs an intro animation, then when a link
    is clicked, it loads different "pages" which consist of large movie
    clips. These are contained in a MC called "pages", and are called
    by manipulating a root variable called "level" - ie: "level = 1"
    causes the MC at frame 1 of the "pages" MC to be displayed. (this
    was an existing movie that I have been tasked with modifying).
    #1 - Is it correct that splitting the individual pages into
    different swfs the only way to lessen load time? I would welcome
    any other suggestions.
    #2 - If spitting the movie up is the way to go, I'm thinking
    I need to replace the movie clips in the "pages" MC with swfs. How
    do I tell each individual page to go back to the main (intro) swf
    and load a different page? The main timeline contains animations
    that "overlay" the sub-pages, creating a transision effect when
    going from one page to the next.
    Thanks for your help - you guys (and gals) have been a great
    source of aid for me!
    joe

    Yes, _root is the wrong thing to use, and _global is never
    good practice. I
    don't use loadMovieNum - I'd use MovieClipLoader and it's
    loadClip method to
    load other swf's into target clips. You can then use
    something like
    this._parent to get to the timeline of the clip 'containing'
    the loaded
    clip.
    However, I think your best bet is to probably use a singleton
    class. That
    way you have your main movie instantiate and set variables
    within the
    singleton - then any other movies can easily create an
    instance (which will
    be the same instance since it's a singleton) and get the
    values you need.
    Simple example:
    class VariableHolder{
    private static var instance:VariableHolder;
    private var myA:Number;
    private function VariableHolder(){}
    public static function getInstance():VariableHolder{
    if(instance == undefined){
    instance = new VariableHolder();
    return instance;
    public function setVariableA(newA:Number){
    myA = newA;
    public function getVariableA():Number{
    return myA;
    So, in your main movie you'd do:
    var myVariables = VariableHolder.getInstance();
    myVariables.setVariableA(50);
    And then in another movie you do:
    var myVariables = VariableHolder.getInstance();
    var myA = myVariables.getVariableA();
    //will set myA = 50;
    Because you're using a singleton - the second getInstance()
    call returns
    just the one class instance - held in the class' instance
    variable. You can
    have any/all movies instance the class, and only one instance
    is ever
    returned... Once you wrap your head around this it's a very
    efficient way to
    pass stuff around between various movies.
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Embedded swfs max number

    Is there a maximum number of swf assets I can embed in an fla using this syntax:
    [Embed(source ="../swfs/swf1.swf", symbol = "symb" )]
    var SWF1:Class;
    var swf1:MovieClip = new SWF1();
    swf1.gotoAndStop(1);
    [Embed(source ="../swfs/swf2.swf", symbol = "symb" )]
    var SWF2:Class;
    var swf2:MovieClip = new SWF2();
    swf2.gotoAndStop(1);
    [Embed(source ="../swfs/swf3.swf", symbol = "symb" )]
    var SWF3:Class;
    var swf3:MovieClip = new SWF3();
    swf3.gotoAndStop(1);
    I'm doing this in flash cs5 with a bout 20 or 30 swf files and at one point it compiles but some or all movieclips are shrunk down to one blank frame.
    I check using this:
    var allPages:Array = [swf1,swf2,swf3...];
    var t:int = 0;
    for each(var clip:MovieClip in allPages) {
        var f:int = clip.totalFrames;
        t+=f;
        trace(f);
    trace(t);
    trace(this.totalFrames);
    Sometimes this code above does not even get executed and the compiled swf does not respond at all.
    Each swf contains anywhere between 500 and 3500 frames. Sometimes I embed the same swf multiple times to grab different symbols in it.I have had no luck determining the root of the cause:
    -number of embedded swfs?
    -size of the embedded swfs?
    -number fo frames in an embedded swf?
    -total number of frames in the main swf?
    Can anyone help?

    I don't think Apple has ever published the limit of Public (WAN-side) IP addresses that can be handled by its AirPorts or Time Capsules.
    ... and yes, they can "point" to different devices on the LAN. To allow for the distribution of these Public IP addresses, the Connection Sharing option should be set for: Distribute a range of IP addresses, from within the AirPort Utility.
    ref: AirPort Utility > Select the base station > Manual Setup > Internet > Internet Connection > Connection Sharing = Distribute a range of IP addresses

  • How to make a Loadvars sendAndLoad request from embedded swf in flex

    I've developed a simple flex app with embedded swf. Basically swf use Loadvars to get data from particular database table. Ok, when I tested the flex app on localhost it is works fine and embedded swf make its sendAndLoad calls correctly.
    But! When it is located on the web server swf not work correctly. I meant there is not returned values by sendAndLoad method.
    Well, to make some points: questionContentLoadVars.img1 holds(return) the string from php call. This "img1" is an empty returned string only in Flex app placed in the web server otherwise it returns correct value from php call?
    When gameplay22.swf is standallone works!
    When gameplay22.swf is in HTML page works!
    When gameplay22.swf is embedded in FLex and executed in LOCALHOST works!
    But in the web server this embedded gameplay22.swf doesn`t works!
    What is the problem with it?
    //* here is flash(swf) part of gameplay22.swf file which is embedded in the Flex by SWFLOader(gameplay22.swf)
        questionContentLoadVars = new LoadVars();
        questionContentLoadVars.onLoad = function(success){
        if (success){
        slidingSvityk_mc.descripTA_mc.description_ta.text = questionContentLoadVars.theContent;
        else 
        slidingSvityk_mc.description_ta.text = "err!";
        function loadQuestionData(sectionID){
        var tablename ='questionsgeo';  // database tablename
        //sending variables to the PHP script
        questionContentLoadVars.row = sectionID;
        questionContentLoadVars.tablename = tablename;
        questionContentLoadVars.id_ = "";
        questionContentLoadVars.img1 = "";
        questionContentLoadVars.sendAndLoad("getQuestionRec.php",questionContentLoadVars,"_POST") ;
        function showLoadedGalleryImages():Void{
        infphp.text = questionContentLoadVars.img1;
        var img1Bulk:MovieClip = new MovieClip();
        img1Bulk = imgGalleryContainer_mc.img1Bulck_mc.createEmptyMovieClip(img1Bulk, _root.getNextHighestDepth());
        img1Bulk._x = 0;
        img1Bulk._y = 0;
        image_mcl.loadClip(questionContentLoadVars.img1, img1Bulk);
        //* And here is Flex part of embedded SWFLOader(gameplay22.swf) component
        <s:SWFLoader includeIn="user" width="1024" height="768" horizontalCenter="0" source="gameplay22.swf" verticalCenter="0"/>

    Thanks kglag, for trying to help,
    As i posted in another forum the problem was in the free flex example which i used to add another state and by using SWFLoader to  embed my swf file.
    Now i was created my own flex app and add SWFLoader to embed my swf and voila - it works!
    There is no cross-domain loads  the loaded content is in the same domain.
    So, again thanks!

  • Embedded SWFs not working with Flash 9

    Hello,
    I am also plagued with the Flash Player 9 issue. None of my
    embedded SWF files work if I publish with this version of the
    player installed. I ran the uninstaller and I'm now using version
    8. However, each time I open a PPT file I get an error saying "some
    controls on this presentation can't be activated. they might not be
    registered on this computer". This is very irritating. So, my SWFs
    still don't work. I found that if I register the v9 ocx and
    re-insert the SWFs, they will publish properly (while the Player 8
    is installed). However, I have about 50 existing PPTs with anywhere
    from 10-30 SWFs per presentation. I'd like to avoid this method if
    possible. Does anyone know of an easier solution? Thank you.

    good morning DocDVM and Supermercado Gato,
    I have the same issue with embedding SWF files into Breeze. I
    have been doing some searching the last two weeks and i found an
    tech note that you might want to read. It seems that Breeze is not
    really set up for Flash player 9 so Adobe came up with a work
    around. Read the technote.
    http://www.adobe.com/go/f9204eb8
    I am having my IT Department update Breeze for me so i will
    let you know if it works or if you update your Breeze let me know
    if this fixes the issue.

Maybe you are looking for

  • Password Change on Pix 515e

    All, I inherited a PIX that I need to change the passwords to. Currently it has: enable password xxx passwd adfasdfnen encrypted I am wanting to remove these two passwords and create a username and password for the login. If I enter the command no en

  • Connection properties in weblogic

              Hi,           I am using Weblogic connection pooling.           I am getting a connection from this pool and set the autoCommit to false. Now           I release this connection and the same connection is allocated to a different           

  • Asynchronoud table error

    Hi , While working with IMDB cache table *( please note:- I have logged in as a cacheuser with admin privelege using ttisql utility .I am able to create the sunchronous and read only cahce group tables but facing an error with Asynchronous group cach

  • Retrieving ESSBase data from Microsoft Access

    Hello Can anyone advise on how to pull data from Essbase directly into MS Access rather than via Excel? Thanks

  • What's required to use the built-in LDAP authentication scheme

    In order to use the built-in LDAP authentication scheme in my ApEx application, do I have to have anything more installed in my oracle environment or available to us than accessible LDAP addressing? Our environment is a 10.2 database instance (Enterp