Instance / alias of name for objects in Captivate 3?

It is possible to assign instance names (or alias) to objects in Captivate (eg. a text box)? I want to be able to make a button object check another object (e.g. a text entry area) before deciding what to do on the 'success' (or failure). I don't see how to do it without (at least) with the instance names for objects (and then trying to write some actionscript to java, etc.) to connect.

I'm new to Captivate so I can miss the obvious here...

Bravo for assistance.

Hello

In Captivate-3 steps.

Captivate 4 variable introduced and scripts. You can take a look at this.

--

Maury

Tags: Adobe Captivate

Similar Questions

  • Cannot create Alias name for Cardinal cannot right click maximum DF PROFI II CARD

    Cannot create Alias name for Cardinal cannot right click to the maximum example of MAX installation instructions, does not match what I see. See attached picture.

    At the suggestion of Ryan to technical support, I improved the VISA to 5.4.1 and the problem was solved.

    Thank you.

  • How to provide the Alias name for BOX Stmt?

    Hello

    How to provide the Alias name for the instruction BOX?

    --

    Thank you and best regards,

    Badr Hari

    1007980 wrote:

    Hello

    How to provide the Alias name for the instruction BOX?

    --

    Thank you best regards &,.

    Badr Hari

    You post any instructions BOX or a query.

    You just add an alias after him, as you do for any other column you select.

    Select case when deptno = 20, then 'Yes' else 'no' from the end IsItDept20 dept

    ISITDEPT20

    NO.

    Yes

    NO.

    NO.

  • Provide a name for the new single-instance - distributed environment

    Hello

    I'm not sure about that piece of information in the installation documentation

    Please see

    http://download.Oracle.com/docs/CD/E17236_01/EPM.1112/epm_install_11121/frameset.htm?launch.html
    During Setup in a distributed environment, provide a name for the new single instance that you configure each server. For example, if you use the epmsystem1 of name of default instance on the first server, and you keep the same names on the Server naming convention, you must create new, instance names unique on each subsequent server, like epmsystem2, epmsystem3, and > so now.
    What happens if I use the same path "d:\...\epmsystem1" on all servers in a distributed environment?


    Concerning
    Kumar

    Published by: Kumar 1 October 4, 2011 06:18

    It was originally a 11.1.2 install and then upgraded to 11.1.2.1 with 11.1.2 I think that the names of instances were the same in a distributed environment.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How can I have clearly seen keywords to objects in captivate 7?

    Hi, I wonder if it is possible to delete keywords, that I gave to objects in Captivate 7?

    When I work on leaves in Cp7, I have a naming convention that I use compared to the slide that I'm working on. For some reason any it don't let me use the same name, even if the object that previously had the name has been deleted. So I guess there must be a way to erase these names so that they can be used on different objects.

    Thank you

    Dan

    Sorry, it's one of the annoying things in Captivate.  No way to reuse a label that has already been used. But labels are case sensitive: have you tried to take advantage of a single character?

  • "Anchor" for objects?

    Hello

    is it possible to have (the postion of) objects being dependent on another? To illustrate my point, I have attached a simple .fla file with two boxes (clips) that grow in height. The position of the bottom being constant, the top box box develops soon "in" the one below so that parts of it are hidden. What I want is that the gap between these two objects remains constant (in this case 50px).

    So, is it possible to make the position of an object depends on (size of) another? Or is there any other "Workaround" / tip you can give me? Please keep in mind that I am very new to Flash/AS3!

    Thank you in advance!

    If you wish to pursue the 'disorder', then you take the path of maximum difficulty for yourself.

    you will need to start a loop (like onEnterFrame) every time a trunk size of changes and you should stop this loop when your Inbox stops change size.  in this loop, that you will need to reference all the instances that need to adapt to the size change area and you need a reference to the area that is to change the size.  then you will need to code for the changes you want.

    Just start with the easiest part of it.  create an instance name for the box that is changing shape.  to do this, you will need to convert the box to a movieclip.  see if you can do that by keeping your timeline tweens.

  • Can I get an id/name of object state during execution?

    I would get State id and name an object when running in a tip action. Is this possible? I can probably make what I want using variables, but it would be cool to just enter the name of the State. Thanks in advance!

    You can specify the name of the element to a slide object in a tip Action, but there is no way to 'capture' the name.  It is the same for the States of the objects.  At this point advanced Actions don't have functions to do these things.

    However, if you're skilled enough with the JavaScript code you would probably be able to do.

    Except that it is 'cool', exactly WHY would you do that?  Perhaps there is another way to get similar results that CAN be done with the current functionality.  And you are publishing to SWF/HTM or HTML5?

  • Get the name of object fillColor?

    Hello!

    I know how to get the fillcolor object.

    myCurrentObject.fillColor
    

    But how do I get a custom name for this color, if it exists in the nuances? If someone has worked with this, please lend a hand!

    myCurrentObject.fillColor.name // Not works
    

    You need all the objects with color - which exists in the sample, to provide for the individual layers and assign names - names of swatches?

    If I understand correctly, then:

    function comparingArrays ( a, b ) {
        var c = 0;
        if ( a.length !== b.length ) return false;
        for ( var i = 0; i < b.length; i++ ) if ( a[i] === b[i] ) c++;
        if ( c === b.length ) return true; else return false;
    }
    function parseValArr (a) {
        var b = []; for ( var i = 0; i < a.length; i++ ) { b.push( Math.round(a[i]) ); }
        return b;
    }
    function getColorValues ( color ) {
        if ( color === undefined ) return undefined;
            else if ( color.typename === 'CMYKColor' ) return [ color.cyan, color.magenta, color.yellow, color.black ];
            else if ( color.typename === 'RGBColor' ) return [ color.red, color.green, color.blue ];
            else if ( color.typename === 'LabColor' ) return [ color.l, color.a, color.b ];
            else if ( color.typename === 'SpotColor' ) return getColorValues( color.spot.color );
            else if ( color.typename === 'GrayColor' ) return [ color.gray ];
    }
    function getSwatchOfTheColor ( color ) {
        var s = activeDocument.swatches,
            i = s.length,
            arr = [];
        while ( i-- ) {
            if ( s[i].color.typename === color.typename ) {
                if ( comparingArrays( parseValArr( getColorValues(s[i].color) ) , parseValArr( getColorValues(color) ) ) ) {
                    arr.push( s[i] );
                }
            }
        }
        return arr;
    }
    function setAttr ( obj, options ) {
        if ( options ) {
            for ( var i in options ) {
                for ( var j in obj ) {
                    if ( i === j && !(options[i] instanceof Function) ) {
                        obj[j] = options[i];
                    }
                }
            }
        }
        return obj;
    }
    function createLayer ( obj, options ) {
        var layer = activeDocument.layers.add();
        obj.moveToBeginning( layer );
        setAttr( layer, options );
    }
    function process ( objects ) {
        for ( var i = 0; i < objects.length; i++ ) {
            if ( objects[i].typename === 'GroupItem' ) {
                process( objects[i].pageItems );
            }
                else {
                    var swatchColor = getSwatchOfTheColor( objects[i].fillColor )[0];
                    if ( swatchColor ) createLayer( objects[i], { name: swatchColor.name } );
                }
        }
    }
    process( selection );
    
  • Shared services - your system already has the instance with the name epmsystem1

    Hello

    I'm putting in a new development system EPM 11.1.2.1 enviropment. I thought that I could connect to a database already configured Shared Services databases and configure the new instance in him epmsystem1 (the default), but he complains with the message error "your system already has the instance with the name epmsystem1.

    Is it really necessary to create a new name for the instance?

    11.1.2.1 in each instance EMP name must be unique, so if you have already configured an instance in an environment and you want to add a new instance, it must be unique.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Cannot delete alias if the referenced object does not exist

    My JavaScript does not alias in OSX when the referenced object no longer exists. The bug occurs on a network volume when the referenced object has been deleted or moved from another system. Do you have any idea how to remove/relpace this alias dead with JavaScript? Why it is not possible to remove an alias with a missing object? Thank you for helping me!

    myShortcut.remove ();

    Bildschirmfoto 2012-03-21 um 10.52.26.png

    Hmm. I have no problem removing broken aliases created in the Finder, but am not able to delete the symlinks broken on remote filesystems created with ln -s (or withile.createAlias ()f). Seems to be a bug for me, as the broken symbolic link can be deleted otherwise (in the Finder or with rm ). I guess you can use doScript() and an Applescript script:

    app.doScript('tell application "Finder" to delete POSIX file "' + myShortcut.fsName + '"', ScriptLanguage.APPLESCRIPT_LANGUAGE);
    

    Slow, however. You can use a 'do shell script' Applescript with rm but the multiple levels of bids and escape are a puzzle.

    Jeff

  • Name an object - Simple? JavaScript/Windows

    Hey all!

    And again, I have a problem in a fairly simple thing. I didn't look for a code looking for the Style of paragraph as i want to, so far no problem here. I fount the point, swapped to the selection tool so it can change the selection of the text instead of the text box and then I want to name this object. All this, but I can't do it! Hahahaha

    Take a look:

    // LOCALIZA O PARAGRAPH STYLE DA REFERÊNCIA
    var oDoc = app.activeDocument;
    
    //First loop through all stories then through all paragraphs in each story
    for(n=0; n< oDoc.stories.length;n++){
        for(i=0;i<oDoc.stories[n].paragraphs.length;i++){
    
            // If paragraph style is "Silkeborg" then select paragraph and insert "S " before
            if  (oDoc.stories[n].paragraphs[i].appliedParagraphStyle.name == "referencia") {
                oDoc.stories[n].paragraphs[i].select();
                }
            }
        }
    
    // SELECIONA O BOX
    app.toolBoxTools.currentTool = UITools.SELECTION_TOOL;
    
    // NOMEIA
    app.activeDocument.selection.name= "Modelo";
    

    He's looking for, if found, change of selection tool, but just will not mention the subject. What I am doing wrong?

    Here is another script I found that the names of the object of the same object tag:

    var myDocItems = app.activeDocument.allPageItems;
    
    for(var i = 0; i < myDocItems.length; i++)
      if(!myDocItems[i].name)
        myDocItems[i].name = myDocItems[i].label;
    

    And this one work, but this object that looking at my script is not a label, so I can't use it.

    Any tips?

    Thank you guys! CyA!

    'Sélection' is always a table, you cannot use

    .. Selection.Name =...

    You must use

    .. selection [0] .name =...

    Second, "a label" is not a problem :-) All managers of related texts have a label (and usually it is empty). I don't know if you should use "name" or "label" in this case - I think that the advantage of the 'name' in CS5.5 he's showin in the layers panel.

    Third (!), there are 1. no need to "switch to the selection tool" to set a selection and or use app.select.  JavaScript allows instant access to everything, then you can simply define the name of the outside frame of any paragraph using something like

    oDoc.stories [i] .paragraphs [n] .parentTextFrames [0] .name =...

    Note that a single paragraph can have more than a single "parent text block" - this paragraph maystart in one and end in another.

  • Get the mosaicApp instance (IApplication) in tile no objects

    Hello world

    I'm trying to get the instance of mosaicApp (IApplication) an object of no tile but it seems that it isn't an API to do.

    Any help would be appricated.

    This has been addressed in the next version of mosaic (after 9.5.0.2). Contact your representative for the preview program.

    Don

  • What is the code name for intex fx cloud (required to manually build 2.0)

    I want to manually build the last B2G for an intex phone fx cloud. The build process requires executing the script "config.sh' with the name of the phone code:
    https://developer.Mozilla.org/en-us/Firefox_OS/Preparing_for_your_first_B2G_build#Configuring_the_B2G_build_for_a_mobile_device

    The phones operating system supported firefox page does not display the code name for new devices:
    https://developer.Mozilla.org/en-us/Firefox_OS/Developer_phone_guide/Phone_specs

    Is it possible to get the code for intex phone name. If the list of the devices supported by "config.sh" does not include the code name of intex, is there a way to still be able to build the latest os from firefox for the intex device?

    Hi Notalex,

    The code name for the Intex Cloud FX device is Tarako. However, it uses another optimized codebase that the regular B2G is based so that it can run on lower range with little memory devices.

    Unfortunately, version 2.0 of the B2G code base would go not on the Fx cloud Intex due to material limitations.

    For more information and advanced issues on customizing your Firefox OS device, you can visit the following pages:

    I hope you find this information useful. Please let us know if you have any questions of usability with your new Firefox OS device.

    Thank you!! =)

    -Ralph

  • How remove the toolbar Babylon. Is there another name for "Babylon"? because I don't see a "Babylon" in my control panel, of it being installed? Help

    I would like to get yahoo as my home page. I tried to change, according to the instructions of mozilla. It did not work.
    By mozilla support I uninstall "babylon toolbar". I checked the Panel no Babylon not listed as being installed. My question is there another name for the "babylon toolbar?

    I'm of Babylon business support team. Research of Babylon and the toolbar are supposed to be part of an integrated set of tools that help people understand and explore their world. Sometimes, however, other manufacturers package our tools with their free end of programs and by unexpected people receive our software. We are sorry if this is the case with you and we would be happy to help you remove a part that you can not. Click here for easy removal instructions: http://www.babylon.com/uninstall_search/index , or contact me at [email protected] for more information.

  • Is that a way firefox will store the information of user name for a site without password information?

    some other browsers allow a user name to be automatically filled in and saved so you just enter a password. It seems that Firefox does not have this option. Is that a way firefox will store the information of user name for a site without password information?

    This works! Thank you very much.

Maybe you are looking for

  • Iphone6 interrupted, screen is fine but motherboard isn't that I said... need help and guidance, pleaseee :/

    The local store of Robotnik said that the motherboard is broken. So a 7-800 dollar phone falls from the aprrox 3 ft, screen is not brake but the fact of the motherboard? So basically I paid almost a $1000 for a nauseating inferior product? Apart from

  • Need help! Found a RSA-4096 in a shared dropbox folder,

    It's a ransom malware virus I disconnected and removed the file. can anyone advise on the next steps? I've not seen it in any of my other files so far! probably one of my colleagues that he had in his computer What can I do to protect my computer, sh

  • NEITHER 9205

    Hello I have 3 questions autour of nor 9205. 1 / I use 9205 to measure a voltage of 5 Volts, and there is a peak level of 15V (trig) under normal conditions of my .it signal. Now, I want to know if this pic can destroy my card because neither 9205 a

  • Doubts about the creation of the screen stack and its navigation

    Hello I like to navigate between the pages. While referring link below https://developer.BlackBerry.com/Cascades/documentation/UI/navigation/multiple_screens_stack.html They have the option to declare it in the header file, while declaring in the hea

  • Cannot connect to VoipStunt.

    Original title: Programs Application Applications Apps game games Legacy Crash crashes Hang Application Compatibility hangs In the last months I was often impossible to connect to Voipstunt. I have used for years, but had lately a lot of chrashes. Ev