Learning interactions help - no buttons

Hi
I have a button that goes to Scene 9. I have told this on
release button to:
gotoAndStop("Scene 9",1);
On the first frame of scene 9 I have put in a learning
interaction. When I run it there are white blank spaces where the
check answers should be and the reset button.
If I have a new .fla and only 1 scene and 1 frame it works
fine.
I have no idea what is wrong - please help.
Dave

don't use the goto functions and don't use scene info for
navigation: use the goto methods and frame labels or numbers:
_root.gotoAndStop("scene9 frame1"); // <-be sure to label
this frame.

Similar Messages

  • Problem with Button in Learning Interaction

    I have created a Flash file with 4 "Fill in the Blank" questions (from the Learning Interactions continued within Flash CS3) at the end. I'm then using the swf file in two different ways. One way simply loads the swf file onto a 'stand-alone' page on my website and it works perfectly.
    The other way I want to use it is integrated into a more complicated website where I have a Flash File into which various swf files are loaded when needed. In this version the "Control Button" doesn't change to "Check Answer" and "Reset" as it should and the whole question doesn't work.
    The working version is at http://web.me.com/ginneswatsonkelso/New_Chemical_Resources/Name_Isomers_Alkanes.html
    Select "4 For You to Try" to go directly to Quiz Questions.
    The non-working version is at  http://web.me.com/ginneswatsonkelso/New_Reaction_Pathways/New_Reaction_Pathways.html
    Go to "Extras" in Menu and select Naming Alkane Isomers, then "4 For You to Try" again.
    I'm using ActionScript2 and set for Player 9.

    Yes, my original technique was to upload the Parent SWF to a folder and then the HTML widget on my webpage would load the file from that location. As you say, all the daughter swf's had to be uploaded into the folder created for that webpage when iWeb uploads my website to MobileMe. This has worked fine for all my other daughter swf's but (I'm presuming) there is something about the Learning Interaction that doesn't let it work this way.
    The other disadvantage of doing it that way is that anytime I tweak the original webpage and iWeb uploads the changes, it recreates the page folder minus all my daughter swf's and I have to upload them manually again.
    What I've now done is uploaded all the daughter swf's to the same folder as the Parent and added a full web address to this folder in all my loadMovie commands in the Parent swf. Done this way, the swf with the Learning Interaction works as intended.
    Many thanks for taking the time and interest to help.

  • Smart Learning Interaction Buttons

    On some of the Smart Learning Interactions, you can add buttons to the interface. Two questions:
    It seems there's a limit of 5 on these, is that correct?
    Is there a way to remove the existing or added buttons?
    Thanks!

    Hello,
    Maximum is 5 indeed.
    When you select a button a minus sign appears that allows you to delete the 'button'
    Lilybiri

  • Adobe Captivate Help | Smart learning interactions

    This question was posted in response to the following article: http://helpx.adobe.com/captivate/using/smart-learning-interactions.html

    Is the Scrolling List interaction just a fancy way of displaying content versus a traditional text caption? Thank you.

  • How Can I Remove Tabs That I Added in a Learning Interaction Widget?

    Hello, I inserted a "Tabs" Learning Interaction widget into a Captivate 8 project I'm working on.  Adding tabs is easy enough by simply hitting the plus button.  But when I want to remove a tab, I can't for the life of me determine how.  Any help would be greatly appreciated!  Thanks

    When you double-click on a Tab button in the Interaction Properties, you'll see a minus sign that will allow you to delete that tab. Beware: you need a minimum of at least 2 tabs, maximum is 5 tabs.

  • Learning Interactions

    I have recently received a copy of the Adobe eLearning suite, in particular I hope to use Flash for the majority of my elearning projects.
    I have been having trouble using the learning interactions that come ready to use with Flash. For example, I placed the drag and drop interaction onto the stage area, but when pressing F12 to preview and use this feature it would not work (could not drag the movie objects), the same goes for all the other features I can select radio buttons etc but when pressing the 'cheack answer' button nothing happens.
    Even though these interactions come with instructions which i have followed, it still does not seem to work. I do not wish for them to be scored, I just want the user to receive correct or incorrect feedback.
    Has anyone used this before and have any idea what I am refering to? Am I suppose to add actionscript to this aswell (even though these interactions have been pre-setup)?
    Would really appreciate any help!

    I am having the same issue!

  • Modify Learning Interactions properties panel

    Hi there,
    I was wondering if I can modify the parameter panel of a
    Learning Interaction component to make it more user-friendly for a
    Flash author? For example, I would like to change a single line
    textfield to a multi-line textarea. Has anybody tried that and
    could provide me with some direction and help?
    Thanks,
    Dan

    Are you trying to assign the value from the array:
    SessionArray[0].interaction_ID to your variable qresult?
    If so, you're using the wrong operator symbol. "==" is a
    comparison operator (it tests to see if something is equal to
    something else and returns a "true" or "false")
    To assign the value you'd do this: qresult =
    SessionArray[0].interaction_ID; (note the single "=")
    Then you can load the value of qresult into your text field
    in a separate function called from your button event
    handler.

  • CS3 Learning Interaction & Plateau LMS

    I created a Flash CS3 Learning Interaction and published it
    as AICC to be launched through a Plateau LMS. The quiz launches
    correctly but does not pass the score or completion status. Does
    anyone know what the Activity ID and Activity Name should be for a
    Plateau LMS? I tried it using the Item ID and the Content Object ID
    already.
    Thanks!

    So you are trying to return the value of the text field
    qresult?
    vcheck.onRelease = function (){
    trace (qresult.text);
    Dan Smith > adobe community expert
    Flash Helps >
    http://www.smithmediafusion.com/blog/?cat=11
    http://www.dsmith.tv
    "Mike@MTS" <[email protected]> wrote in
    message
    news:g409j5$st8$[email protected]..
    > I've reposted this hoping someone can help.
    >
    > I'm using learning interactions components to create
    question and answer
    > session at the end of a lesson.
    > I need to get at the interaction tracking values for
    each Q&A which will
    > be
    > used elsewhere.
    >
    > I have found some Macromedia documentation :
    >
    > "Tracking properties available in the SessionArray
    > The property names references standard interaction
    tracking values for
    > both
    > AICC and SCORM LMS. You can retrieve an interaction?s
    properties by
    > referencing
    > its location in the following command:
    > SessionArray[n].[property_name]
    >
    > For example, to reference the interaction_ID value for
    interaction #1, you
    > would use this command:
    > SessionArray[0].interaction_ID
    >
    > To reference the result value for interaction #2, you
    would use this
    > command:
    > SessionArray[1].result."
    >
    >
    > I am not great with actionscript so can anyone help. I
    need to get the
    > information to be passed into a text field.
    >
    >
    > Attach Code
    >
    > stop();
    > var qresult:String;
    > var vcheck:Button;
    >
    > qresult="";
    >
    > vcheck.onRelease = function (){
    > trace (SessionArray[0].interaction_ID);
    > SessionArray[0].interaction_ID=qresult;
    > }
    >
    >
    > All I get is in the qresult text field is 'undefined'.
    >
    > Can anyone help please.
    >

  • Unable to load any Learning Interaction

    When attempting to go to the Learning Interactions menu choice from the Interactions top menu, the window that appears loads blank at first, then some of the learning interactions choices appear, but the window does not scroll down to see more samples, and when I click the insert button attempting to insert any of the choices that finally appear in the window, another small window appears saying "Not a valid widget". I have restarted captivate 8.1 on my Mac O.S. 10.9.5. several times, as well as tried this on a number of projects. Please help!
    Thanks,

    Which version do you use?  Is CP installed on your system, not on a network drive, and are the folders pointing to your CP-files and cache both on your system as well? Are you connected to the WWW, because there are regular updates and your system will try to download them? Do you run Captivate as administrator? Can you find the interactions, they should normally be copied to a Public folder, under 'Adobe\eLearningAssets' but I don't know where it is on Mac (using PC myself).

  • Modifying Learning interactions

    Hi Everyone
    I m working on an flash quiz done by learning interactions
    included in flash 8 pro. But i have an extra feature that i want to
    add to the quiz. Current setup of the quiz is if the user answers
    right question "next" button pops up than user proceeds to next
    question, if user answers it wrong 2 times than it automatically
    goes on to next question what i m trying to at this point is to
    give the right answer to the user if 2 attempts to get the right
    answer fails. I m new in both flash and AS so i appreciate the
    help.

    anyoneeee?>
    quote:
    Originally posted by:
    shaytac
    Hi Everyone
    I m working on an flash quiz done by learning interactions
    included in flash 8 pro. But i have an extra feature that i want to
    add to the quiz. Current setup of the quiz is if the user answers
    right question "next" button pops up than user proceeds to next
    question, if user answers it wrong 2 times than it automatically
    goes on to next question what i m trying to at this point is to
    give the right answer to the user if 2 attempts to get the right
    answer fails. I m new in both flash and AS so i appreciate the
    help.

  • Learning Interactions not working in Chrome

    This is my first time using Captivate (8.01).  My problem is that 3 widgets/learning interactions are not working when viewed in Chrome. It is a responsive project. They work fine in Safari.
    Would greatly appreciate any information about how I can fix this. Thanks.

    Yes. Jeopardy, Process Circle and Millionaire. I did find out (through a nice, long  -and helpful -chat with Adobe support) that these interactions will work on the Chrome browser when accessed from an LMS. I needed to send them out to reviewers because I didn't have access to an LMS. I just defaulted and asked them to use a different browser.
    Thanks for replying and offering to help.

  • Flash learning interactions, what am i doing wrong

    Hi all
    everytime after i modify and then save and publish a learning
    interaction...... i get a standard error message and flash shuts
    down. also none of the modifications i make save...... how do you
    save the the modifcations made to a learning interaction ? one i am
    in the component inspector and i make changes to the Learning
    interaction...... where do i go to save it, there is nothing in the
    component inspector and paramters that points to saving..... so i
    have been saving the fla as normal... eg under file menu 'save
    as'... i then test the movie and get nothing.
    Can anyone help ?

    Dave,
    > I have a Flash 8 FLVPlayback component on stage, with
    > an instance name of 'vid'. In a frame script I have:
    >
    > vid.setMedia("dd2.flv");
    > vid.play();
    The FLVPlayback class does not feature a setMedia() method,
    that I can
    see. According to the docs, FLVPlayback "wraps"
    mx.video.VideoPlayer. Not
    sure if that means "inherits," but assuming for sake of
    argument that it
    does, the VideoPlayer class does not faeture a setMedia()
    method, either.
    Unfortunately, the docs get a bit cryptic at this point, IMO.
    The FLVPlayer
    Component has a contentPath property, as you mentioned, but I
    don't see the
    same property in either of the aforementioned classes.
    Perhaps something in the inheritance chain provides for a
    FLVPlayback.setContent property. I see references to a
    mx.video.NCManager
    class, but can't seem to find that class reference anywhere.
    If you can do without the FLVPlayer Component, you may just
    want to use
    a Video object to load your external FLV.
    http://www.quip.net/blog/2006/flash/how-to-load-external-video
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Using Flash Learning Interactions in Captivate

    Hi there,
    I am developing a short practice quiz in Captivate, but for
    one of the questions I want to use a Flash CS3 learning interaction
    (the "Hot Spots" one). I get the Flash file built, import it into
    Cpativate, and everything works.
    Now for the big question - how do I get Captivate to track
    the successful/unsuccessful action from this question in a quiz? I
    want to present users with a results page at the end of the
    practice quiz, but since this question is not built with a
    Captivate question slide (like m/c, t/f, etc.), how can I track the
    result and include it on the results slide at the end?
    Thanks in advance for any help!
    Cheers,
    Shawn

    Hi J and welcome to our community
    There is no way (back door or otherwise) that I'm aware of to
    do this. Unless, of course, you mean to use Flash 8 and export the
    Flash in a version 6 format.
    Hopefully we will see Flash 8 files working just dandy in
    Captivate version 2.
    Cheers... Rick

  • Learning interactions and Flash player

    I am trying to place a standalone multiple choice learning
    interaction on my timeline. I can place it on the stage and see
    everything in the component inspector, (only broke apart once!) but
    when I test it, it appears that I cannot see any of the UI
    components such as the checkbox or radio buttons. Searching this
    forum, someone suggested previously that I had to be running Flash
    Player 65? I installed Flash Player 9 from this site to ensure I
    had the latest and it still does not work. I tried it at work,
    where we are running Flash Player 7 and it seems to work fine. Is
    it still my Flash Player? Do these interactions ONLY work with a
    specific player? If so I need to know so that I can specify that in
    the delivery. Thanks.

    open the fla in flash and see if there's an flvplayback component on stage.  if there is change its size to match your flv.  if not, search for .source (as3) or .contentPath (as2).  that will lead you to the object that plays the flv and you can assign its size using actioscript .

  • Learning Interactions in Flash Professional CS4

    I have installed the Learning Interactions extension in Flash Professional CS4, but it does not operate correctly. First, it tells me to edit a given interaction in Windows>Panels>Clip Parameters, which as far as I can tell no longer exists.
    When I double click right on the clip to edit it, not all fields are editable. and ActionScript 3.0 is having fits with these interactions, giving me a list of Warnings in the Output tab.
    I realize these are old interactions, are they still usable? They seem better behaved in an ActionScript 2.0 document, but I still can't edit them. And I cant find newer versions of the extension.
    Any input or assistance would be appreciated. I am a returning Flash user, having not used the app in a few years.
    Doug

    Hi,
    Pls let me know if you managed to solve this problem with the learning interactions in CS4. I am running the demo of CS5 (and doubt very much that I will upgrade after this and issues with the help) and have downloaded and installed the learning interactions, but cant seem to get them to work. As you described, I cant find Windows>Panels etc and even though I opened a AS2 file I still get loads of AS errors when trying to run the interactions.
    Any help will be greatly appreciated!

Maybe you are looking for

  • Can I move my itunes collection from one computer to another?

    Can I move an internal hard drive which has my itunes library (music transferred from my cd collection as well as music purchased from itunes) from one computer to another?  The second computer already has itunes on it but no sopied music from cd's.

  • Create a LOV for parameters in development tools

    Hi, I found a way to create a LOV for a parameter using PL/SQL developer. The code is as followed: select * from account_hier t where t.level_a LIKE &<name="Level A" hint="Level A" type="string" default="%" ifempty="%" list="select distinct level_a,l

  • Deinstallation of Oracle E-business suite with demo vision demo on linux

    Hi all, I installed oracle ebs 12.1.1 on my server with demo vision database. Now I want to deinstall the ebs i previously installed. What is the procedure for the deinstallation? Thanks in advance.. Regards, Mike

  • [Ubuntu 14.04] How can I enable port-range endpoint?

    I have deployed an Ubuntu 14.04 VM on Azure and I want to enable port-range endpoint.. How can I do that? If not allowed from the portal, does configuring the ports via iptables command opens these ports for me? Sorry I'm new to Cloud and got confuse

  • ITunes Match error - confused

    Hi folks Just subscribed to this new service (in the UK) and it's frustrating me. I eventually got it to finish its initial process (had to stop & start a few times as it seemed to hang during uploading) but I have a lot of files (3,852 out of 24,934