Load a director level into flash // is it possible?

Hi,
I am planning a complex system where eventually users will need to do immersion into 3rd dimension and also play lots of flash quizz.
I know director can load flash which makes it obvious choice for development but coding in lingo (a non POO language) maybe a little bit of regression looking the average age of the development team that iam building. So looking forward, i wonder if it's possible to make flash load director levels.
Thank you

Venian,
Director used to be considered flash's big sister: http://www.adobe.com/products/director/
Btw i just found out that you can use javascript within Director making it then perfect choice for my project.

Similar Messages

  • How to speed up the loading of live data into flash file.

    How to speed up the loading of live data into flash file if the swf file size is 1.5 MB. Flash file is using 20 web service connections to load the live data.

    Hello,
    I am also facing a similar problem wherein the SWF file takes time to load the refreshed data in Infoview i.e. after exporting the xlf file to Business Objects platform. Currently I am using Xcelcius Engage/Enterprise 2008 SP3 Windows (file name: 51038212.ZIP) version 5.3.0.0 build number 12,3,0,670. Also the SWF file is approximately 2MB in size  and it uses 42 live office connections.
    Please suggest solution as to how to decrease the time it takes to refresh the live office connections.

  • Can we import a Director movie into Flash ?

    I'm exploring a possibility of importing a Director movie into Flash or if it is possible to import a published Director movie into Flash.
    Anticipating your reply....
    Thanks,
    -Mithun

    As I may have mentioned in the other thread where you asked this, No.  You can not.  You can import a flash swf into Director but you can not import anything from Director into Flash.

  • Can I import Director movies into Flash?

    Hi,
    Can Flash handle Director movies? I am making a presentation
    of my artworks in Flash environment; I have both Flash and Director
    movies. I know that I can import all my swf movies into Director
    MX2004 to create a standalone projector and play both swf an ddir
    movies. Does it work for the reverse?
    Thanks
    Uti

    No, you can't import or display Director movies in Flash in
    any way. Best
    you can do is launch the Director executable from the Flash
    movie, though
    how you do this depends on which version of Flash you are
    using.
    Remove '_spamkiller_' to mail

  • Loading Variables from ASP into Flash

    I can find plenty of tutorials detailing how to load
    variables from a defined asp page into Flash, but here's my
    dilemma...
    I have an asp page that is reading a URL with a unique
    identifier in it (www.sampleURL.com?id=123456), and then turns the
    id number from the URL into a variable. On the same page then, sits
    my swf where I need to use LoadVars to pull in that ASP variable
    via Actionscript. If I don't have a static asp page to pull the
    variables in from and I want to pass the variable within the same
    asp page the swf is located on, how do I do it? Many thanks in
    advance...

    "bonzomn65" <[email protected]> wrote in
    message
    news:ej0630$pjh$[email protected]..
    >I can find plenty of tutorials detailing how to load
    variables from a
    >defined
    > asp page into Flash, but here's my dilemma...
    >
    > I have an asp page that is reading a URL with a unique
    identifier in it
    > (www.sampleURL.com?id=123456), and then turns the id
    number from the URL
    > into a
    > variable. On the same page then, sits my swf where I
    need to use LoadVars
    > to
    > pull in that ASP variable via Actionscript. If I don't
    have a static asp
    > page
    > to pull the variables in from and I want to pass the
    variable within the
    > same
    > asp page the swf is located on, how do I do it? Many
    thanks in advance...
    >
    You don't need LoadVars for this at all. You can just pass
    the variable to
    your Flash movie by specifying a query string when you are
    calling the
    movie.
    If you are using the straight object, embed method then it
    would look
    something like this:
    <param name="movie" value="movie.swf?id=11111">
    <embed src="movie.swf?id=11111" ... >
    If you are using the ActiveContent JavaScript for your movie
    then you just
    leave off the .swf... so
    "name", "movie?id=11111"
    Then, in flash you can access the value of id from the _root,
    like
    var idInFlash:Number = _root.id;
    Of course in the above example you would replace 11111 with
    the proper
    syntax for printing a variable's value in ASP.

  • Importing Director movies into Flash

    My short Q, which I suspect is a FAQ though it doesn't appear
    on the Director or Flash FAQs on the Macromedia (sorry, Adobe ;-))
    site, is: how can you import Director movies (source .dir, or
    published .dcr) into a Flash movie?
    I had thought this would be simple, that Flash would have an
    import filter for Shockwave movies, as after all both products come
    from the same stable and you can import .swf movies into Director,
    but not so, at least in my copy of Flash 8. Neither can Director
    export as a .swf - the only export format that might just work is
    .avi but I'm damned if I want to create a big video file just to
    reuse a snippet from a Director movie. I did a quick Google search
    for DCR->SWF converters but couldn't see anything obvious to
    use.
    The reason I'm bothered about this is that we've produced a
    lot of e-learning material in Director (a good third of our
    learning objects at
    http://www.nottingham.ac.uk/nursing/sonet/rlos/rlolist.html
    use Shockwave movies) and although we've now moved on to Flash,
    occasionally we want to be able to reuse snippets from Director
    movies in Flash movies. It would be disappointing, to put it
    mildly, were we not able to move content between software
    applications produced by the same company...
    TIA for any answers/suggestions.
    Cheers
    Fred
    School of Nursing, University of Nottingham

    I feel your pain an don't know what's going to happen with
    Director now that Adobe is involved.
    You mentioned that you could export as avi, could you copy
    the scenes in which you want to use into a new director file,
    export that as an avi and conver t that to an flv?
    Just a thought.

  • Im stumped with loading an id number into flash.

    I have a flash file (actionscript 2) created that calls an
    external text file, and loads it into a scrolling text area.
    example: // send and load variables
    lv.load("
    http://website.com/" + id + ".txt");
    the url i want to load looks like this:
    http://www.website.com/1.txt
    the "1" is the id number. i have multiple id numbers.
    example: "2", "3", "4" , etc.
    if i direct link it like: lv.load("
    http://website.com/1.txt"); it
    works perfect.
    however, since i have multiple files, i want to determine the
    url by the "embed code"
    so i have something like
    <param name="movie" value="events.swf?id=12" /> and
    <embed src="events.swf?id=1" .....
    for some reason its not work. I thought I had it right, but
    apparently not.
    I have been wasting hours on this. Someone please
    help.

    try the following:
    - _root.id instead of just id
    - pass the id through with <param name="FlashVars"
    value="id=1"> (in addition to what you have already... different
    browsers work differently in this case...)
    - set a default id in case the id doesn't come through
    http://www.permadi.com/tutorial/flashVars/index.html
    Hope that helps.
    stephank

  • Integrate Director Movie into Flash CS5

    Hi,
    I have couple of interactive media pieces created in Director MX 2004. I would like to know if the latest Flash CS5 can handle
    Director Movies. Kindly advise the best way to create  a portfolio (consisting of Dorector and Flash Movies) that can be showcased in a website
    as well as in a CD-R.
    Also, a tutorial or direction to creating an Adobe Director website whereby the swf movies can be integrated would be useful.
    Any direction would be appreciated.
    Thank you

    You cannot place a Director file inside a Flash - you can put Flash into Director, but not the opposite.

  • Load variables from XML into Flash

    I was wondering how to load variables from an XML document to
    a Flash file? I am familiar with the code to do it for a text file,
    but was wondering how to do it for XML.
    Many thanks in advance!
    JJ

    Thanks for the recommendation on the site. What I am trying
    to do is load varaibles from an XML file into text boxes in my
    flash movie.
    Here is my loading:
    var my_xml = new XML();
    my_xml.ignoreWhite = true;
    my_xml.onLoad = function(success){
    if (success) {
    gotoAndStop("slide01");
    my_xml.load("narration.xml");
    this is what I have on my frame with the text boxes (the text
    boxes are also have the variable name in the variable area)
    var narration = my_xml.picture01;
    var my_title = my_xml.my_title;
    var my_date = my_xml.my_date;
    should I do my_date.text = my_xml.my_date; instead?
    my xml doc looks like this
    <?xml version="1.0" encoding="iso-8859-1"?>
    <picture01>This is the text for picture
    01</picture01>
    <picture02>This is the text for picture
    02</picture02>
    <my_title>Las Vegas</my_title>
    <my_date>October</my_date>
    Any help on this would be GREATLY appreciated!
    Text
    my_date.text = my_xml.my_date;

  • Loading Captivate 3 files into Flash CS3

    I've experienced and read about making sure that streaming
    SWF you wish to unload in AS3 need to be stopped, otherwise the
    audio that you may have playing in the continues to play even
    though the SWF is no longer disaplyed. I even succussfully do this
    with a file that has audio streaming on the main timeline. However,
    I am working with some some SWF files created with Captivate 3
    (exporting to flash version 9), and I cannot detemine how to stop
    the audio from playing.
    The audio in question is what Captivate adds - the mouse
    clicks and keyboard clicks - to captures I create in a browser, or
    any other application. You can suppress these, but I'd rather
    figure out this dilemma than go to that side of things.
    I'm assuming that the sound effects in the Captivate SWF file
    are no on the main timeline, and so I cannot control the playback
    of the timeline. Perhaps the sounds are not timeline oriented, but
    instead are sound ojects, I don't know. If that were the case, I
    wouldn't know what to do to target them from the parent SWF file
    and stop them.
    Has anybody experience this or similar issues?

    Hi learning_still and welcome to our community
    Unfortunately it's not possible to do this. The best you can
    do would be to open each version of Captivate. In version 3, open
    the project you wish to "convert" to version 1. Note the dimensions
    of the project.
    In version 1, create a new blank project of the same
    dimensions.
    Now from version 3, copy the first slide. Paste into version
    1. Rinse and repeat until each slide has been copied and pasted. I
    haven't tried this, but you may be able to select *all* slides and
    paste. That would save some time.
    Note that any items that version 1 doesn't support won't be
    copied, including question slides.
    Hopefully this was helpful in some way... Rick

  • External html page into flash

    how to load external html page into flash? (AS3)

    You cannot load an html page into Flash, though you can try to load the html code that it contains into a textfield.  Flash supports only a very limited number of html tags, so it is highly likely you won't get what you are after if you are reading an html file that hasn't been edited for Flash specifically.  Just look up the TextField.htmlText property in the AS3 help documents and it lists the html tags that are supported. 
    For AS3 you need to look into the URLLoader class as far as loadng an extrernal text file goes.

  • Using Director projector inside Flash

    I have a Director projector from a project I did a few years
    ago but no longer have the .dir file. I want to be able to display
    it on my website. Flash won't let me import the .exe directly. Is
    there any way I can launch the .exe using ActionScript, or maybe
    import the projector into a new Director file and publish it as a
    shockwave file? Any help would be appreciated. Thanks.

    > Flash won't
    > let me import the .exe directly. Is there any way I can
    launch the .exe
    using
    > ActionScript,
    No, you can't import any sort of Director content into Flash.
    Come to that,
    with very good reason, you can't 'launch' an EXE from a
    browser at all. In
    Flash, create a link to the file, which will then allow users
    to download
    and run it.
    > maybe import the projector into a new Director file and
    > publish it as a shockwave file?
    No, you can't do that either I'm afraid. I don;t know of
    anything that will
    decompile Director projectors, and you can't import
    executables into
    Director.
    Remove '_spamkiller_' to mail

  • Loading purchased swf into Flash Builder 4 Flex app

    I have purchased a Flash "fundraising thermometer" from an online Flash components site. It takes input from an xml file and displays a thermometer with the goal at the top and the current amount raised indicated. It came with the following files:
    thermometer.swf
    thermometer01.fla
    thermometer01.html (A sample that works.)
    xml/thermometer.xml (The source file: goal amount, current amount, mark interval, etc.)
    caurina/transitions (Mostly .as files.)
    Since the test html (thermometer01.html) works fine, I thought this would be a no-brainer.
    I first unzipped the files into a "thermometer" folder in my current project. I then went into Flash Builder and created a SWFLoader object as follows:
    <mx:SWFLoader 
    id="myLoader" source="../thermometer/thermometer.swf" complete="initThermometer();" autoLoad="true" scaleContent="false"/>\
     private function initThermometer():void { 
         Alert.show('Thermometer loaded');
    The Design view looks fine. I can see the thermometer default image (see below).
    When I run the app, I get no errors, just a broken image link in a box (see below). The alert box also never shows up.
    I'm new to Flex, so I may be doing something stupid that keeps this from working. I contacted the author of the thermometer widget but he doesn't know anything about Flex.
    Any help figuring out how to get this to work in a flex app would be appreciated.

    You should probably add more event handlers to see what's going on.  Especially "ioError". The complete list is below.  For coverage, add a handler for each event. You can also use in MXML
         complete="initThermometer(event)
    and add an argument to your Actionscript method, to find out details about the event.
    private function initThermometer(event:Event):void { 
         Alert.show('Thermometer loaded ' + event.type);}
    Events
        complete="No default"
        httpStatus="No default"
        init="No default"
        ioError="No default"
        open="No default"
        progress="No default"
        securityError="No default"
        unload="No default
    General info here:
         http://livedocs.adobe.com/flex/3/langref/mx/controls/SWFLoader.html
    I did not test my code suggestions, but it's probably close.

  • Other problems with loading Captivate files into Flash AS3 project

    I have a Captivate file done with Captivate 3, published to
    Flash player 9 that is being loaded into Flash AS3. The captivate
    is a simple recording of some mouse clicks in a browser. I am
    displaying the playbar along the bottom, and its buttons all work
    fine except for the progress bar, where you can drag the knob and
    scrub back & forth in your presentation.
    This progress bar is not working as it should. I see the
    mouse cursor change to a hand, but when I click I cannot drag the
    knob to control the progress bar. The other buttons in the playbar
    do work (replay, pause, play, back, forward).
    This is a unique problem in that it is only happening when
    viewed in IE (7) when loaded into my Flash AS3 project. When viewed
    in Firefox in my project, or as a standalone SWF, or as a SWF
    simply embedded onto a plain HTML page, it works just fine.
    Does anybody have any insight?
    Another thing I notice with loading Captivate files with AS3
    is the the amount of output messages it displays. Rather annoying
    (unless this is a "feature" I've yet to be aware of - heh)

    Hi,
    I know exactly how you feel, there is simple answer; replace
    Captivate for Camtasia Studio 5 at techsmith.com. The weight on
    those shoulders will be gone! You'll smile more, be more
    socialable. One Happy Person.
    I am very happy person ;)
    Kind Regards,
    Boxing Boom

  • Searching for flash based forums, or a way to load forums into flash ?

    Im searching for flash based forums, or a way to load forums into flash ? i found this
    http://activeden.net/item/flash-forum/52576?page=1
    Any ideas or recommendations would be greatly appreciated

    You can load the raw html - if flash is told (e.g. via
    flashvars) the url of the page that you want (its available in
    flash as what you would think of as the browser's 'view source'
    style plain text) with either as2 or as3.
    But you can't do full browser-style rendering of the content
    because flash just can't do all that. You could parse the raw html
    (probably a custom parser as I think the internal xml parser might
    choke on some of the tags in html that are not closed such as
    <br> etc) and just pick out bits of text or images that you
    could display but you can't achieve an embedded browser.
    Adobe's AIR might be more what you want - it has embedded
    browser support- but it doesn't run inside a browser like flash.

Maybe you are looking for

  • Printer won't switch from one tray to another

    Having problems with my HP Officejet Pro 8600 Premium not doing the auto switch from default tray to next tray during print job.  I've tried unplugging the printer, removing and replacing tray 2, checking for jams, shuffling paper, resetting the defa

  • How to disable "special" f-key function on Apple Wireless Keyboard in Windows 7

    Hi.  I dual-boot my iMac using an Apple Wireless Keyboard.  In Mac OS's "Keyboard" system preference pane, I've chosen to treat the F-keys as actual F-keys, and not the "special" function keys, such as volume control and screen brightness.  This howe

  • Printing spreads

    Anyone know if there's a way to print spreads from Pages - not much good having facing pages if you can't, I've tried the layout option in print dialog, but 2-up adds extra margin space - not true spread printing.

  • Disable the xauth in IOS router for EZVPN client

    I am trying to diable the xauth option and make the authentication by default not the interactive. I have tried using the username option, still its in the xauth interactive mode.Please can anyone help me out in this.

  • Roll back the firmware.

    Just got the new express N version yesterday. I hooked it up wireless and it worked right off. Had access to the internet (slow access, but it was there) as well as iTunes to the stereo. Then I went back a little later to look at the manual settings.