using variables with a widget

With the help of CP4

I have a var defined by the user (varX) in CP4 with a value of 0

I'm trying to change the value of varX using a custom widget question (AS3)

Changing varX = 4

I then need to pick up varX and post it on another slide, or even another static widget


track in my custom widget

MovieClip (root) .varX = 4;

later in another slide using a text field I

$$varX$ $

However, it shows 0

is there a way to change a user-defined or system var with a custom widget

Although MovieClip (root) .varX; can operate, right that you want to use the widget API and use mainmov instead of Michael.  You might have a synchronization problem where a variable/object is not instantiated yet.  To be honest, the widget API template provided by Cp is very basic.  If you develop widgets, I highly recommend Widget factory by Infosemantics.  They took the widget API to the next step and it's free.  It is much easier to work with...

Jim Leichliter

Tags: Adobe Captivate

Similar Questions

  • I created a website with Muse using a slide show widget a little over a year.  I gave up Muse bur have recently re-enroll as a single Train to examine the use of Muse. The file for the my site is no longer on my computer or lea

    I created a website with Muse using a slide show widget a little over a year.  I gave up Muse bur have recently re-enroll as a single Train to examine the use of Muse. The file for the my site is no longer on my computer or at least I find and I want to make changes.  Is there a way to download the Internet Web site and bring Muse to make changes or I have to start all over again.

    Hello

    to copy entire websites is an arduous task in my eyes. Your sounds to me that you have access to your old site. If you could perhaps talk to your supplier at the time, to get it back.

    Hans-Günter

  • The use of bind variables with XMLTABLE?

    I tried to use bind variables with xmltable statement. Here, my unit test:

    create or replace function wsdltest return xmltype as
    l_dummy xmltype.
    CLOB l_stt;
    L_Name varchar2 (500);
    CLOB l_xml;
    BEGIN
    l_xml: =.
    ' < name of definitions = 'F1' targetNamespace = "http://xmlns.oracle.com/orawsv/XFILES/F1" xmlns = "http://schemas.xmlsoap.org/wsdl/" xmlns:tns = "http://xmlns.oracle.com/orawsv/XFILES/F1" container = "http://www.w3.org/2001/XMLSchema" xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/" >
    < types >
    < xsd: Schema targetNamespace = "http://xmlns.oracle.com/orawsv/XFILES/F1" elementFormDefault = "qualified" >
    < xsd: element name = "SVARCHAR2-F1Input" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "A VARCHAR2 IN" type = "xsd: String" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < xsd: element name = "F1Output" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "RETURN" type = "xsd: String" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: Schema >
    < / types >
    < name of message = "F1InputMessage" >
    < name of part = "parameters" element = "tns:SVARCHAR2 - F1Input" / >
    < / message >
    < name of message = "F1OutputMessage" >
    < name of part = "parameters" element = "tns:F1Output" / >
    < / message >
    < portType name = "F1PortType" >
    < operation name = "F1" >
    < input message = "tns:F1InputMessage" / >
    < output message = "tns:F1OutputMessage" / >
    < / operation >
    < / portType >
    < connection name = "F1Binding" type = "tns:F1PortType" >
    < style: binding soap = transport "document" = "http://schemas.xmlsoap.org/soap/http" / >
    < operation name = "F1" >
    < soap: operation soapAction = "F1" / >
    < input >
    < soap body parts: = 'settings' use = "literal" / >
    < / Entry >
    < output >
    < soap body parts: = 'settings' use = "literal" / >
    < / output >
    < / operation >
    < / binding >
    < service name = "F1Service" >
    < documentation > Oracle Web Service < / documentation >
    < name of port = "F1Port" binding = "tns:F1Binding" >
    < soap: address location = "http://localhost: 8080/orawsv/XFILES/F1" / >
    < / port >
    < / service >
    < / definitions > ';

    -OK
    l_stt: = ' select * from xmltable (XMLNAMESPACES ("http://www.w3.org/2001/XMLSchema" AS "XSD", default "http://schemas.xmlsoap.org/wsdl/"),)
    [' / / definitions/types/XSD:schema/XSD:element[@name="SVARCHAR2-F1Input ']"
    by the way xmltype(:1)
    columns
    path of xmltype AB ".") you;
    --
    EXECUTE IMMEDIATE l_stt INTO l_dummy using l_xml;

    -ERROR ORA-01006
    L_Name: = ' 'SVARCHAR2-F1Input "";
    l_stt: = ' select * from xmltable (XMLNAMESPACES ("http://www.w3.org/2001/XMLSchema" AS "XSD", default "http://schemas.xmlsoap.org/wsdl/"),)
    [/ / definitions/types/XSD:schema/XSD:element[@name=:2] "
    by the way xmltype(:1)
    columns
    path of xmltype AB ".") you;
    --
    EXECUTE IMMEDIATE l_stt INTO l_dummy using l_xml, l_name;

    Return l_dummy;
    END;

    Any idea?

    Thanks in advance
    Cyryl

    You can try something like

    declare
      l_dummy xmltype;
      l_stt clob;
      l_name varchar2(500);
      l_xml clob;
    BEGIN
    l_xml :=
    '
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Oracle Web Service
    
    
    
    
    ';
    l_stt := q'~ select *
      from xmltable( XMLNAMESPACES( 'http://www.w3.org/2001/XMLSchema' AS "XSD", default 'http://schemas.xmlsoap.org/wsdl/'),
                   '/definitions/types/XSD:schema/XSD:element'
                   passing xmltype( :2 )
                   columns
                   ab xmltype path '.' ) t
         where extractvalue( ab, '/element/@name', 'xmlns="http://www.w3.org/2001/XMLSchema"' ) = :1
     ~';
    l_name := 'SVARCHAR2-F1Input';
      EXECUTE IMMEDIATE to_char( l_stt ) INTO l_dummy using l_xml, l_name;
      dbms_output.put_line( l_dummy.getstringval() );
    end;
    /
    
  • Using variables to get the answers to the questions of fill-in-the-White

    Hello

    Fill-in-the-blank questions, to provide answers. I want to provide these in the form of variables (user-created), rather than in the form of fixed strings (so, as $$ var1$ $ and not as 'Rabbit'). I could not get this to work. The variable input function is available (in the properties panel), but it does not in fact (i.e. even if you select a variable to be entered, it is not actually automatically registered).

    Is there a way around the problem?

    1. NB containing the same question for text entry boxes (rather than fill-in-the-blank questions). If I could get this works for text entry boxes, I'd use questions these rather than fill-in-the-white.

    2. a peut use variables for the answers to the multiple-choice questions. So I hope I can make it work for fill-in-the-blank questions as well.

    Thank you in advance. Marvin DuBois

    That would be my suggestion. I don't have a blog, but using BER of for this kind of questions me as well. And unlike the widget/interaction, that I've mentioned before, BER is an interactive object, which means it can be validated and that there may be a score attached to it. But, it will not help you, since you have to add the correct answers in the same way as for a drop-down list in the issue of the FIB (they are the sorts of TEB). And it is this list that does not enter a variable rather than a fixed sequence of characters.

    This means that you are into stocks advanced, identical to that of my blog posts with the widget/interaction.

    Have a work around (after all I'm the work around Queen) having intercourse, if you don't check that BER, described here:

    http://blog.lilybiri.com/report-custom-questions-part-2

    The idea is to use another interactive object that can have a score. Actually, I use two instances of the same object: a score of 0 and one with score of X and show the right according to the conditional action.

    However if you want to have multiple TEB on the same blade, which must be verified with the same tip action, you will need either the mastery of InfoSemantics (only for output SWF) widget or Javascript.

    Lilybiri

  • Custom Quiz with master Widget are not related to the LMS (Captivate 5.5)

    Hello

    I wrote a quiz with partial credit and, in order to make answers, I use the master Widget. (A big thanks to Lilybiri and Infosemantics for all the advice I found in blogs and learning classes!)

    In summary, the quiz is composed of 2 questions with 4 possible answers.  Each of the 4 answers have a different score attached to it (i.e. to answer a = 4 points; Answer b = 3 points answer c = 2 points; Answer d = 1 point).   On each slide of the question, I have added a Master Widget (using the variable representative points the student received as a slave).  I want the quiz to report the score for each question.   After the student has answered these two question slides, they continue to a slide 'results '.  Here, they consider the total of their scores and get your comments on if their total is high, too low or online.  On the results page, I used the master Widget itself to make the quiz on the total score.

    I downloaded this quiz as a package SCORM 2.3 Moodle and Blackboard 9 (we are different systems LMS to test).  The short quiz in each LMS, but when I try to access a report, I get no results: no report received for each item quiz and no total score points.  Indeed, in the table, I get a blank page:

    Blackboard sceen.jpg

    In Moodle, I get:

    Presentation1.jpg

    Here's what to look like my quiz preferences:

    Quiz preferences.jpg

    I'm really stuck.  I realized there are many components to this process and I really need help to find out where the problem lies.

    Thank you for your time and help!

    Bray,

    Yes the numbers on the slide of questionnaire results are important because they indicate that some of your widgets or other interactive objects are not reported to the "official" quiz score

    You must go back and check the objects you want to appear in the score.  The score of 67% reported by the quiz on the quiz results slide probably means that Captivate think you have only three objects within the quiz and only two of these (two-thirds or 67% in round numbers).

    You mentioned before that you have three Master widgets in this project.  How many of them can be found in the report for the quiz?  To check if they are all considered to be successes, turn on Success and Failure subtitles for these widgets, and then run through your interaction.

    When you use a Slave to Variables with the master of widgets for partial credit, remember that even if the captain widgets can account for these variables as being interactive objects, Captivate does not work.

    Although the captain widget is VERY powerful, it also tends to mess with minds, because there are SO many ways you can configure. If you use partial credit, check if you have the option to bypass the assigned score own widgets with the total score of points from the slave value objects.  If you use this option, you must ensure that at no time can the substituted score not fall within the range 0-100% compatible SCORM LMS will accept.

  • Problems with Youtube widget

    The YouTube in Adobe Captivate widget has stopped loading videos and display in the browser. I tried several browsers on mac and PC, I tried clearing the cache of the browser, and I tried export Flash and HTML5 and still cannot load the widget - just get a blank space instead. Is there any recent updates to Captivate (or Flash), or is it a bug that you have found? This isn't just occurring with the new modules I have created with the software, but has affected retroactively SCORM packages that have already been deployed on UTSOnline which, as of about a week, showed the videos as usual. This affects all modules I checked.

    Please get back as soon as possible.

    Thank you

    You search this forum, you will notice quite a few other discussions related to display YouTube videos with this widget in particular.  It seems that YouTube changed something on their end that now breaks video display in any Captivate project that was based on the YouTube widget.

    I suggest that you look at the other threads on the same topic.  Some Captivate developers report that they can still view their YouTube videos by replacing the YouTube widget with a Web Captivate object that points to the same video.  But this means that you need to open files CPTX of all affected projects and edit slides using the YouTube widget, then republish and redeploy the content.  If you have a lot of projects that use the YouTube widget then the resolution of the problem is gong to be a bear to the difficulty.

  • Using variables such as table names. Ideas for alternative designs

    Hello

    I am the design of an application that uses synonyms to pull information from the 'client' DBs via links from DB. Synonyms are created with a DB_ID in name (example: CUSTOMER_100, CUSTOMER_200... where the 100 and 200 are DB IDs of 2 separate DBs customer.)

    I have a procedure that selects data in the synonym based on what DB_ID is passed to the procedure. I want to be able to perform this procedure for any entered DB_ID. I know now I can't use variable for the table names names and using EXECUTE IMMEDIATE does not seem suitable for what I'm trying to do.

    Does anyone have suggestions or re-design options, I could use to achieve this generic procedure which will select a certain synonym based on the information of DB input parameters? Thank you.

    CREATE or REPLACE PROCEDURE CUSTOMER_TEST (p_host IN VARCHAR2, p_db_name IN VARCHAR2, p_schema in VARCHAR)

    IS

    v_hostname VARCHAR2 (50): = UPPER (p_host);

    v_instance VARCHAR2 (50): = UPPER (p_db_name);

    v_schema VARCHAR2 (50): = UPPER (p_schema);

    v_db_id NUMBER;

    v_synonym VARCHAR2 (50);

    CURSOR insert_customer

    IS

    SELECT

    c.customer_fname,

    c.customer_lname

    OF v_synonym_name c;

    BEGIN

    -MADE BASED ON INPUT PARAMETERS DB_ID

    Select d.db_id

    in v_db_id

    of t_mv_db_accounts ac.

    t_mv_db_instances I,.

    t_mv_dbs d,

    t_mv_hosts h

    where ac.db_ID = d.db_ID

    and i.db_ID = d.db_ID

    and i.HOST_ID = h.host_id

    and upper (H.HOST_NAME) = v_hostname

    and upper (D.DB_NAME) = v_instance

    and upper (Ac.ACCOUNT_NAME) = v_schema;

    -ADD DB_ID TO NAME SYNOYNM

    v_synonym: = 'CUSTOMER_ | v_db_id;

    FOR cust_rec IN insert_customer

    LOOP

    INSERT INTO CUSTOMER_RESULTS (First_Name, Last_Name)

    VALUES (cust_rec.customer_fname, cust_rec.customer_lname);

    END LOOP;

    COMMIT;

    END;

    /

    RGS,

    Rob

    EXECUTE IMMEDIATE ' INSERT IN CUSTOMER_RESULTS (First_Name, Last_Name) SELECT customer_fname, customer_lname FROM ' | v_synonym;

  • You can use Braintree with Adobe Muse?

    Is it possible to use Braintree with Adobe Muse? I'm trying to implement a system of payment on my site of Muse, but I have bad to configure a. I know someone asked this question once before on the forums, but the answer they received did not really do anything.

    Does anyone have experience integrating Braintree Muse? Can be used on its own with Muse Braintree or is it necessary to use a 3rd party shopping cart to integrate the two? Or Muse integrates only with payment companies partners (such as PayPal) that provided a widget for use with the Muse?

    Thanks for any idea, that all the world can offer.

    See Brad's response in this post on the forum.

    You can use the Braintree system in Adobe Muse

  • How can I use variable presentation logic SQL

    Hi Experts,

    How can I use variable SQL logical presentation. I need the exact syntax. Kindly help me to achieve this goal.

    "Time". "" Date "between the Date of 2014 '-1-17 'and Date' ' 2014-2-16

    Thanks in advance

    Asim

    It's done... We can use it in the logical query with the same syntax where we use in converting this filter as SQL...

  • Orchestrator web client: using variables in one presentation to another page

    A workflow that works linking orchestrator does not running the web client because (after a repair) I found that the values of a page of the submission form is not available on the other.  For example, the user selects the string: templateName on the first page and the following pages using #templateName to call a function.   However, this variable is empty so can not be used.  However, it can access General variables with values hard-coded.

    Is this a bug? limitation? Are there workarounds?

    (I use vsphere client 5.5 build 2026576)

    Default value is set once while data binding must be updated each time that the first field is changed.

    Sometimes what happens is that when the workflow starts, the default value cannot be calculated because the parameter is not yet set.

    You can avoid making mistakes with the launch of the first privilege of actions: if (parameterName == null) return null;

    But I'm surprised the example that you gave does not work.

    Check the server.log file to verify if the action runs with the empty parameter en or if there is another error.

  • Value of Variable with OracleDiagent throwing error in white

    Hi all

    In my process I use 3 variables as input #GL_Product_code, #GL_Period_no, #GL_Year, on this basis, I need to get all the details, if I gave the white input from of the two other entries value must extract the value below in the code where condition
    .. .or product_code = nvl('#GL_Product_code',product_code) and period_no = nvl('#GL_Period_no',period_no) and year = nvl('#GL_Year',year)

    but when I use local agent my process of execution with errors, when I execution of his mistake to launch as variable with OracleDiagent has no value

    Error details

    oracle.odi.core.exception.OdiRuntimeException: java.lang.Exception: ODI-17506: Variable has no value: GL_VALIDATE.GL_PERIOD_NO

    Thanks for your suggestion...

    Published by: 981371 on February 11, 2013 09:53

    Published by: 981371 on February 12, 2013 02:28

    Published by: 981371 on February 12, 2013 22:10

    Give a default value for this variable as 'IS NULL' or 'IS NOT NULL' somethhing to be replaced if you don't pass any value then runt.

    Chantal
    http://dwteam.in

  • Add submenus for a menu created with Menu Widget

    I would like to add additional links submenu from a menu of Muse. Is it possible to create additional pages in the site hierarchy?

    Example:

    I have a site on page 4 - Page 1, Page 2, Page 3, Page 4.

    Page 3 has 3 child page.  I used it Muse Menu Widget to create a menu with 4 links. The Page 3 menu item has a submenu with 3 links in there.

    I want to link to two of the child pages of Page 3 in the menu of Page 1. Therefore, the Page 1 menu button will have a submenu with 2 links inside.

    Is this possible?

    Hello

    Default menu links cannot be changed. If you can create a menu manual and then add links from page submenu and menu items to the main menu.

    This video would give you an idea:

    https://www.YouTube.com/watch?v=g341WCh07sA

    Thank you

    Sanjit

  • Problems with video widget in Muse

    Hi all

    I'm wandering if someone can help me!

    I have been using Muse to design my first website, for my part and was lucky to fall on this 'background video Widget"created by HelloNoam. I tried to implement on my single page site. A single page website of scrolling is obviously not a drawing that you would normally use the widget background for, however, in principle, it works well by putting the widget on a layer below all other Web site content. I have, however, two problems with the site.

    It is a prototype of the Web site without the video widget and as you can see there is a grey white space on the third "page where the video will appear:

    http://www.dominicsimmons.co.UK/nowidget/nowidget.html

    This is the website with the widget (the video may take a while to load one used is large enough, it could be shortened to end use):

    http://www.dominicsimmons.co.UK/widget/widget.html

    The first problem is that when the widget is placed on the page, for some reason any that it will create an additional section at the bottom of the page about the size of a footer (although there is no current footer). There is no explanation for what I can see, and this happens only when the widget is used. As far as I know, this happens in all types of browser.

    The second problem seems to be isolated to when using Safari. When the widget is used, the first 'page' loads but then "pages" later (other than the video page) are white and are displaced. Again I am lost as to why this would be and why it would occur only in Safari and only when the widget is used.

    I talked to Abhishek on the Adobe Live Chat and he advised me to create a new thread here describing the problem. I hope that someone will be able to help/identify the problem because I'm lost as to what is wrong and have little or no experience coding (thus why I use Muse)! It is the only big problem I'm facing and for being a filmmaker, and I want to implement a video design beautiful.

    Many thanks in advance,

    Dominic

    Muse is not video well at all.  Muse is very good at putting up a site of very fast and professional quality with items correctly created, but without video.  Do not use the SWF of Muse recommended files as half of your audience can see your stuff. This is because the HTML 5 is the only way to make it universally visible devices by all static and mobile and more than half of the population now discovers the internet through a mobile device. Learn dreamweaver or other to do it correctly. To bad that Muse could be great if Adobe all down here bits and added the video correctly. Even through code Muse does not well at all. I guess it must be purposely because no company in their right mind would destroy their own potential software without a valid reason.

    Well Adobe?

  • variable with sql reuse various clauses

    Hello

    Is it possible to reuse the same variable with sql different queries in the packages...

    Example:

    I have a Word to say variable

    name of the variable 1): filename

    (2) in variable query: select 'emp.txt' of the double

    so using the name of this variable in the data store, I'm passing filename dynamically, but I need to change the file name to dept.txt emp.txt missing emp.txt food.

    A solution on my side uses a table dump with the file name. more without the use of db tables

    Please share views

    See you soon,.
    Surya

    You will then need the help of beanshell java technology. Variable2 take the second query in cooling mode. Now, create a procedure. At the 1st step of technology will be java beanshell with below codes.

    <>
    String xtr = "#variable2";
    @>

    Now in ko-> step use variable1 in assign mode

    Variable1 =<@=xtr@>

    It will certainly work.

    Thank you.

  • Using variables &amp; shares advanced Captivate 6

    Hello

    I'm working on a project with only 2 slides.  The second slide has a folder with 8 tabs.  When the user clicks on the tab for information tab appears and a check mark appears on the tab to let them know the tab has been seen.

    Capture1.PNG

    I used variables and standard actions to make the correct text and completion work coches (nothing wrong with that)

    Capture2.PNGCapture3.PNG

    After that the user has seen all the tabs I didn't it must seem strange that nothing else happens or confuse the rest of the course (British Colombia, there is no quiz or interaction - I just need them to read the info).  I created a conditional action to 'Thank you for taking this course' appears and a play button for learners to understand the course is completed.

    Capture4.PNG

    The conditional action indicates whether each variable is equal to 1 (because variables start at 0 and change in 1 click on) it shows the message of thanks and the BACK button (I disabled the buttons of visibility on them) and condtional action added to the slide itself.

    Capture5.PNG

    I don't know why it does not work!  I even displays the variables on the screen to ensure that they evolve all at 1 when you click on and they are, but the text button and replay thanks are not displayed.  What I am doing wrong?  I'm captivate in version 6.0.1.240.

    Thank you

    That was my thought as well.  Because you appear not to leave the slide until all tabs have clicked, it would only seem to be click events available to trigger you actions.

    If I had to create this interaction, I would have used Actions conditional Advanced executed by clicking on each tab and not just the Standard Actions.  The first part of the CAA would be to show the relevant tab and hide all others, and then the next part of the CAA would be to check if all variables have been set to 1.

Maybe you are looking for

  • share the iphone to the internet option is not available

    Hello. My problem is that I have a 6 Iphone with iOS 9.3.1 and I don't have the internet sharing option. It doesn´t appear. It should be in "Clamp" and it doesn´t appear. Why is this? How can I solve that? Thanks for your help.

  • Unstable Vista on Equium A100 - issue of scroll bars

    Vista is really unstable on this Equium A100... or I do something wrong?In contrast to the good old XP on my previous Satellite this folds operating system windows upward when I hit the scroll bars, simetimes minimizing, sometimes closing... And it i

  • digital output to control three motors

    Hi all I am a newcomer in the field of control. I have the following problem. I try to control 3 units using a NI USB 6215. So I connect 3 led to the line 0, 1, 2 and I adapt a Labview example in my case. The problem is that only the first case (I me

  • WRT300N - full signal, no connection

    Hey guys! So, I have this router configuration as second WiFi hotspot in my house, and it was working fine. Today, I changed my ISP and that using as a point of connection Wi - Fi only now. My configuration is Modem cable > 24 ports > wired connectio

  • APC Smart provider has stopped working

    I am running Windows Vista and an error box has just been released - it said that APC Smart provider has stopped working.  I can not download updates, can not do a restore of the system in normal mode or Safe Mode. Any suggestions would be greatly ap