Help with buttons to access the loaded layers

Hi all... Using Flash CS3 and AS3 to build a learning module that loads different layers of SWFs of the buttons on the main screen.  Got this work without problems.  What I want to do is to add buttons to provide learners of features, specifically a next button, the "back" button and a check box that will keep progress automatically.  I did some massive research and so far nothing seems to work.  Seems like I am going so far is the main layer, not the new layers as they are loaded.  Here is what I tried with the back button; the next button uses nextFrame and Handler2.  It does not work.  Not even sure how to start with the check box for advance auto.  Any help would be GREATLY appreciated.

Mark

back_btn.addEventListener (MouseEvent.MOUSE_DOWN, mouseDownHandler1);

function mouseDownHandler1(event:MouseEvent):void

{

MovieClip (root) .prevFrame ();

}

If you try to get the swf loaded in advance and not the main timeline, you need to target the loader.content, not the root, as in:

MovieClip (loader.content) .nextFrame ();

Tags: Adobe Animate

Similar Questions

  • Help with button to set the current page as home page

    Hey guys,.

    OK, I'm sure it's probably a really easy question because I know that I saw somewhere how to do, but I want to have two links on my home page that says something like: do "" my page and bookmark this page. Does anyone know how I would do it so that when they clicked on the buttons it just that? Thank you very much

    Jeremy

    Sunday, November 26, 2006, 09:28 + 0000 (UTC), "dayencom".
    wrote:

    > Hey guys,.
    >
    > Ok, I'm sure it's probably a really easy question because I know I have seen
    > somewhere how to do it, but I want to have two links on my home page that say
    > something like: do "" my page and bookmark this page. Does anyone know how I
    > would do that so that when they clicked on the buttons, it comes that? Thank you
    > much

    I get what you mean?

    http://JavaScript.Internet.com/miscellaneous/bookmark-page.html
    --
    Steve
    Steve at flyingtigerwebdesign dot com

  • Hello, I need help with my photoshop, rececently the majority of my family disappeared merger options and I cant access AVC and other options ive tried reset preferences and it seems to come back but when I add an image and try add text again

    Hello, I need help with my photoshop, the majority of my family rececently disappeared options fusion and I can't access strokes and other options ive tried to reset the settings of preference and he seems to come back but when I add an image and you try to add text again, they'll only options I have are drop shadow , gradient, Chromakey, shine of satin overlay, inner (I use photoshop cc 2015) Please help, my Skype contact options are: RoblivionM8 and email:[email protected]

    Thanks for your time

    Your first screenshot shows the layer style dialog where not all types of effects are indicated on the left. Bottom left of the dialog box, you see a small icon fx with a menu arrow drop-down. Use drop down the menu and make sure all you click on show all effects or restore the default list. I don't know what you're trying the shoe on the second screen capture.

  • With the help of buttons to filter the interactive report

    I have an interactive relationship with a default filter set up. Now, I would like to have buttons to modify the SELECT statement used for the report. While I need not make a new page of interactive report for each button. I want to provide the user with a buttons show all reports, view reports on demand and completed report. Everyone will just filter the lines accordingly. What is the best way to achieve this?

    Thank you!

    Hello
    You can created a where clause clause in your IR as:
    Select...
    Of...
    where report_type like 'at the request of the reports' and: p1_button_value = 1
    or report_type like 'Finished reports' and: p1_button_value = 2
    or: p1_button_value = 3

    Now, you create your button and an element called: p1_button_value. Function of the key, you click on the value of your Exchange item. If you need display different columns, then go to the column and change the condition:
    : p1_button_value = 1

    It will be useful,

    Tobias
    ----------------
    http://Apex-at-work.blogspot.com/

  • ScriptUI Palette with button to perform the function

    Hey Hey. Ho ho. I have a question for you guys. Hey Hey. Ho ho.

    So I'm writing a script to automatically replace art existing in a file with the art of my network (specifically, necklaces. we work that says "made in usa" but we moved production overseas, then update the country of origin.) I have fixed all our model files, new orders are set up correctly, but we have tens of thousands of old orders with bad collars in the files. so far we have been manually accessing the network, opens a file that contains the correct collars and paste in the required file. A PITA serious, especially when you do 20 - 30 times per day.

    So, naturally, I started to think about how to automate it. For most files, this process is really simple and straightforward because the files that we use has set up a system of good address. However, orders more alumni dating back to before the address system, so the script in some cases, to do a break in order to let the artist select USA collars so that the script can move to a new layer and hide.

    To remedy this, I decided to use a scriptUI as an alert box pallet (if the artist still has access to the user interface, so they can select the necessary art, then click a button to perform a function and complete the task. The button in the palette works to perform the desired function, but then I get an error in ESTK that "there is no document. What I'm doing wrong here? Everything works until the promptToSelectCollars() function; The error occurs at line 291 trying to use docRef.layers.add (); I added the line 290 after the first time I got the error to see if docRef just need to be redefined, but that did not help.

    I guess I can just force the artist to select any work necessary before running the script, but I like it to be as smooth as possible and requires a minimum of steps pre...

    Here's the current code (must still be completed, I know)... Any thoughts?

    //Add DR Collars
    
    
    function container()
    {
    
    
        /////////////////////
        ///Logic Container///
        /////////////////////
    
    
        function whatStyleDialog()
        {
            // var docRef = app.activeDocument;
    
    
            var sports = ["SLOW_SS", "SLOWW_SS", "SLOWY_SS", "FAST_SL", "FAST_RB", "FAST_FB_SL", "FAST_FB_SS", //
            "FAST_2B_SS", "BASE_FB_SL", "BASE_FB_Y_SL", "BASE_FB_SS","BASE_FB_Y_SS", "BASE_2B_SS", "BASE_2B_Y_SS"];
    
    
            
    
    
            var wS = new Window("dialog", "What Collars Do You Need?");
    
    
            var inputGroup = wS.add("group");
                inputGroup.orientation = "column";
                var sportsGroup = inputGroup.add("group");
                    sportsGroup.add("statictext", undefined, "Choose Sport");
    
    
                    //populate sports dropdown list
                    var sportsList = sportsGroup.add("dropdownlist", undefined, sports);
                    sportsList.selection = 0;
    
    
                var styleGroup = inputGroup.add("group");
    
    
                    styleGroup.add("statictext", undefined, "Enter Style Number:");
    
    
                    //input text box for style number
                    var styleInput = styleGroup.add("edittext", undefined, "000");
    
    
            var buttonGroup = wS.add("group");
                var okButton = buttonGroup.add("button", undefined, "OK");
                var cancelButton = buttonGroup.add("button", undefined, "Cancel");
    
    
    
    
            if(wS.show() == 1)
            {
                var results = "";
                results = "FD_" + sportsList.selection.text + "_";
                results = results + styleInput.text + ".ait";
                return results;
            }
            else
            {
                return null;
            }
        }
    
    
        function getStyle(styles)
        {
            if(styles.length>1)
            {
                var result;
                var gS = new Window("dialog","Which Garment?");
                    var titleText = gS.add("statictext", undefined, "Which Garment Do You Need Collars For?");
                    var buttons = styles;
                    var buttonGroup = gS.add("group");
                    buttonGroup.orientation = "column";
                        for(var s=0;s<styles.length;s++)
                        {
                            addButton(s, styles[s]);
                        }
    
    
                    function addButton(num, style)
                    {
                        buttons[num] = buttonGroup.add("button", undefined, style);
                        buttons[num].onClick = function()
                        {
                            result = style + ".ait";
                            gS.close();
                        }
                    }
                gS.show();
                // alert(result)
                return result;
    
    
            }
            else
            {
                result = styles[0] + ".ait";
                return result;
            }
        }
        function whatGarment()
        {
            var result;
            var jerseyList = [];
    
    
            for(a=0;a<layers.length;a++)
            {
                if(layers[a].name.indexOf("FD")>-1)
                {
                    jerseyList.push(layers[a].name);
                }
            }
    
    
            //This prepress is not on a template
            if(jerseyList.length==0)
            {
                result = whatStyleDialog();
                return result;
            }
    
    
            else
            {
                result = getStyle(jerseyList);
            }
    
    
            return result;
        }
    
    
        function findCAD(path, garment)
        {
            var loc = new Folder(path);
            var theFile = new File(loc + "/" +  garment);
            return theFile;
        }
    
    
        function copyCollars(theCAD,coords)
        {
            var collars = [];
            var collarSource = open(theCAD);
            var sourceLayer = collarSource.layers[0].layers["Prepress"];
            var curLay;
            var curGroup;
    
    
            sourceLayer.visible = true;
    
    
            collarSource.selection = null;
    
    
            for (var a=0; a< sourceLayer.layers.length;a++)
            {
                curLay = sourceLayer.layers[a];
                for(var b=0;b<curLay.groupItems.length;b++)
                {
                    curGroup = curLay.groupItems[b];
                    if(curGroup.name.indexOf("Collar")>-1)
                    {
                        curGroup.selected = true;
                    }   
                }
                
            }
    
    
            app.executeMenuCommand("copy");
            docRef.activate();
            app.executeMenuCommand("paste");
    
    
            for(var a=0;a<docRef.selection.length;a++)
            {
                var curGroup = docRef.selection[a];
                var curName = curGroup.name.substring(0,curGroup.name.indexOf(" "));
                curGroup.left = coords[curName][0];
                curGroup.top = coords[curName][1];
            }
    
    
            
    
    
            // collarSource.close(SaveOptions.DONOTSAVECHANGES);
            
        }
    
    
        function addCollarsToCorrectLayer(garment,coords)
        {
            try
            {
                var theLayer = docRef.layers[garment.substring(0,garment.indexOf(".ait"))].layers["Prepress"];
                theLayer.visible = true;
                // alert("theLayer = " + theLayer);
                // alert(docRef.selection.length);
                for(var a=docRef.selection.length-1;a>-1;a--)
                {
                    var thisCollar = docRef.selection[a];
                    var targetLayer = theLayer.layers[thisCollar.name.substring(0, thisCollar.name.indexOf(" "))];
                    thisCollar.moveToBeginning(targetLayer);
                }
    
    
    
    
            }
            catch(e)
            {
                try
                {
                    if(docRef.selection[0].layer != "[Layer Artwork]")
                    {
                        var theLayer = docRef.layers["Artwork"];
                        theLayer.locked = false;
                        theLayer.visible = true;
                        for(var a=docRef.selection.length-1;a>-1;a--)
                        {
                            docRef.selection[a].moveToBeginning(theLayer);
                        }
                    }
                }
                catch(e)
                {
                    alert("something went wrong")
                }
            }
            if(theLayer.name == "Prepress")
            {
                var drCollarLabel = docRef.layers[0].layers["Mockup"].textFrames.add()
            }
            else
            {
                var drCollarLabel = theLayer.textFrames.add();
            }
            drCollarLabel.contents = "DR Collars";
            drCollarLabel.left = coords["Label"][0];
            drCollarLabel.top = coords["Label"][1];
            drCollarLabel.textRange.characterAttributes.size = 36;
        }
    
    
        function promptToSelectCollars()
        {
            alert("running prompt to select");
            var selCol = new Window("palette");
                var text = selCol.add("statictext",undefined, "Select the USA Collars and click OK");
                var button = selCol.add("button", undefined, "OK");
                button.onClick = function()
                {
                    selCol.close();
                    moveCollarsToUSALayer(false);
                }
            selCol.show();
        }
    
    
        function moveCollarsToUSALayer(template,garmentLayer)
        {
            if(template)
            {
                var usaLayer = garmentLayer.layers.add();
                usaLayer.name = "USA Collars";
                var theLayer = garmentLayer.layers["Prepress"];
    
    
                for(var a=0;a<theLayer.layers.length;a++)
                {
                    var curSize = theLayer.layers[a].name;
                    var curLay = theLayer.layers[a];
                    curLay.groupItems[curSize + " Collar"].moveToBeginning(usaLayer);
                }
    
    
                continueScript();
            }
            else
            {
                // docRef = app.activeDocument;
                var usaLayer = docRef.layers.add();
                usaLayer.name = "USA Collars";
    
    
                for(var a=0;a<docRef.selection.length;a++)
                {
                    var curCollar = docRef.selection[a];
                    curCollar.moveToBeginning(usaLayer);
                }
                continueScript();
            }
            
    
    
    
    
        }
    
    
        function continueScript()
        {
            var theCAD = findCAD(garmentInfo[garmentCode]["path"], garment);
    
    
            copyCollars(theCAD, garmentInfo[garmentCode]["coords"]);
    
    
            addCollarsToCorrectLayer(garment,garmentInfo[garmentCode]["coords"]);
        }
    
    
        /////////////////////
        ///Logic Container///
        /////////////////////
    
    
        var docRef = app.activeDocument;
        var layers = docRef.layers;
        
    
    
        var garmentInfo = 
        {
            "FD_SLOW_SS" : 
            {
                "path": "/Volumes/Customization/Library/cads/prepress/FD_SLOW_SS/ConvertedTemplates/FD_SLOW_SS",
                "coords" : 
                {
                    "XS" : [-946.67,622.35],
                    "S" : [-948.92,362.97],
                    "M" : [-951.17,96.54],
                    "L" : [-953.42,-177.48],
                    "XL" : [-955.22,-458.71],
                    "2XL" : [-957.92,-747.11],
                    "3XL" : [-960.17,-1042.73],
                    "4XL" : [-962.42,-1345.42],
                    "5XL" : [-964.67,-1654.82],
                    "Label" : [-949.1,708.39]
                }
            },      
            "FD_SLOWW_SS" : "/Volumes/Customization/Library/cads/prepress/FD_SLOW_SS/ConvertedTemplates/FD_SLOWW_SS",
    
    
            "FD_SLOWY_SS" : "/Volumes/Customization/Library/cads/prepress/FD_SLOW_SS/ConvertedTemplates/FD_SLOWY_SS",
            "FD_FAST_RB" : "/Volumes/Customization/Library/cads/prepress/FD_FAST_RB/Converted_Templates/",
            "FD_FAST_SL" : "/Volumes/Customization/Library/cads/prepress/FD_FAST_SL/Converted_Templates/",
            "FD_FAST_FB_SL" : "/Volumes/Customization/Library/cads/prepress/FD_FAST_FB_SL/Converted_Templates/",
            "FD_FAST_FB_SS" : "/Volumes/Customization/Library/cads/prepress/FD_FAST_FB_SS/Converted_Templates/",
            "FD_FAST_2B_SS" : {
                "path": "/Volumes/Customization/Library/cads/prepress/FD_FAST_2B_W_SS/Converted_Templates/",
                "coords" : 
                {
                    "XXS" : [-1011.89,455.31],
                    "XS" : [-1015.33,206.79],
                    "S" : [-1018.88,-60.25],
                    "M" : [-1022.12,-323.7],
                    "L" : [-1025.7,-595.67],
                    "XL" : [-1028.83,-879.72],
                    "2XL" : [-1032.38,-1168.08],
                    "3XL" : [-1035.83,-1457.79],
                    "Label" : [-949.1,708.39]
                }
            },
            "FD_BASE_FB_SL" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_FB_SL/Converted_Templates/",
            "FD_BASE_FB_Y_SL" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_FB_Y_SL/Converted_Templates/",
            "FD_BASE_FB_SS" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_FB_SS/Converted_Templates/",
            "FD_BASE_FB_Y_SS" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_FB_Y_SS/Converted_Templates/",
            "FD_BASE_2B_SS" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_2B_SS/Converted_Templates/",
            "FD_BASE_2B_Y_SS" : "/Volumes/Customization/Library/cads/prepress/FD_BASE_2B_Y_SS/Converted_Templates/",
        }
    
    
        var garment = whatGarment(); 
    
    
        var garmentCode = garment.substring(0, garment.indexOf("_0"));
    
    
        var styleNum = garment.substring(garment.indexOf("_0"), garment.length);
    
    
        try
        {
            docRef.layers[garment.substring(0,garment.indexOf(".ait"))].layers["Prepress"].visible = true;
            moveCollarsToUSALayer(true,docRef.layers[garment.substring(0,garment.indexOf(".ait"))]);
    
    
        }
        catch(e)
        {
            //no discernable layer structure
            alert("using catch");
            promptToSelectCollars();
        }
    
    
        
    
    
        
    
    
        
    
    
        // alert("Results:\n" + "Sport: " + garment[0] + "\nCut: " + garment[1] + "\nStyle Number: " + garment[2]);
        // alert("Results:\n" + garment);
    
    
    
    
        
    }
    container();
    

    You do not have something wrong, sort of, pallets do not 'normally' work as do dialog windows, you must use BridgeTalk to bind your palette to Illustrator, do a quick search, a topical subject, there are many samples.

  • Errors with display & to access the pages in IE - Satellite A300

    Hello
    For a few weeks now, I not was able to display images in their entirety on Web sites - they just don't download not entirely or don't load at all.

    I'll also have a lot of problems with the two IE & Mozilla Firefox, when I try to access the sites Web & click for more into Internet sites I constantly get errors & the page does not load until I Ctrl F5 many times.

    You wouldn't believe how many times I have done this for just register on this forum & get to that stage.
    It's like any site that has multiple pages or much info to download is just too much for the two programs?

    An error indicates to the bottom of the lower part of the IE: res://ieframe.dll/dnerror.htm in this case, if this can help.

    I checked the memory etc, all right.
    I have a satellite A300. Hope someone can suggest something.

    I have Zone Alarm firewalls, spies & antivirus software. Have had throughout & its only been in the past weeks I have had this problem?

    Thank you
    Di

    I hope I'm not scare you, but to do it please read the thread below the link to the case where it applies to you:
    http://forums.Spybot.info/showthread.php?t=21787

    These things are usually one of two causes:

    1.
    Something is interfering with your Internet session.
    Malware is the most common example.

    2.
    Something wrong with your internet connection.
    A bad line ADSL, for example.

    But I feel a reason to software here.

  • Help, please! Cannot access the web after connected to the VPN

    Hello

    I'm a newbie on Cisco products.  I configured a Cisco ASA 5505 with VPN firewall.  However, I can't access the web after I connected to the remote IPSec VPN.  I also cannot connect to the bands using the intellectual property.  But I can connect to the internal servers in the office with no problems.

    Here is my setup, can someone help please?  Thank you very much

    ASA Version 8.2 (5)

    !

    host name asa

    xxxxxxxxx.com domain name

    enable the encrypted password xxxxxxxxxxx

    xxxxxxxxxxx encrypted passwd

    names of

    !

    interface Ethernet0/0

    switchport access vlan 2

    !

    interface Ethernet0/1

    !

    interface Ethernet0/2

    !

    interface Ethernet0/3

    !

    interface Ethernet0/4

    !

    interface Ethernet0/5

    !

    interface Ethernet0/6

    !

    interface Ethernet0/7

    !

    interface Vlan1

    nameif inside

    security-level 100

    IP 192.168.1.1 255.255.255.0

    !

    interface Vlan2

    nameif outside

    security-level 0

    IP address dhcp setroute

    !

    passive FTP mode

    area of zone clock - 8 schedule

    clock summer-time recurring PDT 1 Sun Apr 02:00 last Sun Oct 02:00

    DNS lookup field inside

    DNS server-group DefaultDNS

    Server name 107.204.233.222

    name-server 192.168.1.3

    xxxxxxxxx.com domain name

    inside_nat0_outbound list of allowed ip extended access all 192.168.1.96 255.255.255.240

    pager lines 24

    Enable logging

    asdm of logging of information

    Within 1500 MTU

    Outside 1500 MTU

    IP local pool sc-192.168.1.100 - 192.168.1.110 mask 255.255.255.0

    ICMP unreachable rate-limit 1 burst-size 1

    don't allow no asdm history

    ARP timeout 14400

    Global 1 interface (outside)

    NAT (inside) 0-list of access inside_nat0_outbound

    NAT (inside) 1 192.168.1.0 255.255.255.0

    NAT (inside) 1 0.0.0.0 0.0.0.0

    Timeout xlate 03:00

    Timeout conn 01:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02

    Sunrpc timeout 0:10:00 h323 0:05:00 h225 mgcp from 01:00 0:05:00 mgcp-pat 0:05:00

    Sip timeout 0:30:00 sip_media 0:02:00 prompt Protocol sip-0: 03:00 sip - disconnect 0:02:00

    Timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute

    timeout tcp-proxy-reassembly 0:01:00

    Floating conn timeout 0:00:00

    dynamic-access-policy-registration DfltAccessPolicy

    the ssh LOCAL console AAA authentication

    Enable http server

    http 192.168.1.0 255.255.255.0 inside

    No snmp server location

    No snmp Server contact

    Server enable SNMP traps snmp authentication linkup, linkdown cold start

    Crypto ipsec transform-set esp-SHA-ESP-3DES-3des esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac

    Crypto ipsec transform-set ESP-DES-SHA esp - esp-sha-hmac

    Crypto ipsec transform-set ESP-DES-MD5 esp - esp-md5-hmac

    Crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac

    Crypto ipsec transform-set ESP-3DES-MD5-esp-3des esp-md5-hmac

    Crypto ipsec transform-set ESP-AES-256-SHA 256 - aes - esp esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-128-SHA aes - esp esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-128-MD5-esp - aes esp-md5-hmac

    life crypto ipsec security association seconds 28800

    Crypto ipsec kilobytes of life - safety 4608000 association

    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 pfs Group1 set

    Crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 value transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA MD5-ESP-3DES ESP-DES-SHA ESP-DES-MD5

    outside_map card crypto 65535-isakmp dynamic ipsec SYSTEM_DEFAULT_CRYPTO_MAP

    outside_map interface card crypto outside

    Crypto ca trustpoint _SmartCallHome_ServerCA

    Configure CRL

    crypto ISAKMP allow outside

    crypto ISAKMP policy 10

    preshared authentication

    3des encryption

    sha hash

    Group 2

    life 86400

    Telnet timeout 5

    SSH 192.168.1.0 255.255.255.0 inside

    SSH timeout 5

    Console timeout 0

    interface ID client DHCP-client to the outside

    dhcpd outside auto_config

    !

    dhcpd address 192.168.1.5 - 192.168.1.36 inside

    dhcpd dns 107.204.233.222 inside the 192.168.1.3 interface

    dhcpd allow inside

    !

    a basic threat threat detection

    Statistics-list of access threat detection

    no statistical threat detection tcp-interception

    WebVPN

    internal strategy group xxxxxxxx-sc

    attributes of xxxxxxxx-sc group policy

    value of 107.204.233.222 DNS server 192.168.1.3

    Protocol-tunnel-VPN IPSec

    XXXXXXXXXX.com value by default-field

    xxxxx xxxxxxxxxxx encrypted password username

    Strategy Group-VPN-xxxxxxxx-sc

    remote access to tunnel-group xxxxxxxx-sc type

    attributes global-tunnel-group xxxxxxxx-sc

    address sc-pool pool

    Group Policy - by default-xxxxxxxx-sc

    tunnel-group xxxxxxxx-sc ipsec-attributes

    pre-shared key *.

    !

    class-map inspection_default

    match default-inspection-traffic

    !

    !

    type of policy-card inspect dns preset_dns_map

    parameters

    maximum message length automatic of customer

    message-length maximum 512

    Policy-map global_policy

    class inspection_default

    inspect the preset_dns_map dns

    inspect the ftp

    inspect h323 h225

    inspect the h323 ras

    inspect the rsh

    inspect the rtsp

    inspect esmtp

    inspect sqlnet

    inspect the skinny

    inspect sunrpc

    inspect xdmcp

    inspect the sip

    inspect the netbios

    inspect the tftp

    Review the ip options

    !

    global service-policy global_policy

    context of prompt hostname

    call-home service

    anonymous reporting remote call

    call-home

    contact-email-addr [email protected] / * /

    Profile of CiscoTAC-1

    http https://tools.cisco.com/its/service/oddce/services/DDCEService destination address

    email address of destination [email protected] / * /

    destination-mode http transport

    Subscribe to alert-group diagnosis

    Subscribe to alert-group environment

    Subscribe to alert-group monthly periodic inventory

    monthly periodicals to subscribe to alert-group configuration

    daily periodic subscribe to alert-group telemetry

    Cryptochecksum:5c1c99b09fb26fcc36a8bf7206af8e02

    : end

    Hello

    Try adding the following commands

    permit same-security-traffic intra-interface

    NAT (outside) 1 192.168.1.96 255.255.255.240

    Is there are always problems with VPN then I would maybe change VPN pool to anything other than something that comes into conflict with the LAN.

    In this case, these configurations should do the trick

    In order from top to bottom, they would do the following things

    • First remove the pool VPN and VPN configurations
    • Then remove the VPN pool
    • Remake of the VPN Pool with different network
    • Reattach the VPN pool for VPN configurations
    • Configure NAT0 to the new cluster of VPN
    • Remove the old line of the ACL of the configuration of NAT0

    attributes global-tunnel-group xxxxxxxx-sc

    no address-sc-swimming pool

    no ip local pool sc 192.168.1.100 - 192.168.1.110 mask 255.255.255.0

    IP local pool sc-192.168.2.10 - 192.168.2.254 mask 255.255.255.0

    attributes global-tunnel-group xxxxxxxx-sc

    address sc-pool pool

    inside_nat0_outbound to access ip 192.168.1.0 scope list allow 255.255.255.0 192.168.2.0 255.255.255.0

    no access list inside_nat0_outbound extended permits all ip 192.168.1.96 255.255.255.240

    Of course you also have the NAT configuration for VPN pools new Internet traffic

    NAT (outside) 1 192.168.2.0 255.255.255.0

    Please rate if the information has been useful if this resolved the issue as mark responded.

    -Jouni

  • Help with dynamic action and the selection list item

    G ' Day Apex gurus.

    I have problems trying to achieve to trigger the Help window from an element automatically select. A Help window is triggered when it is clicked on the label of an item, but my customer wants to be triguered automatically as soon as the user clicks to view the options in the select list.

    I think I should be able to do with dynamic actions but I can't function.

    I know when someone clicks on the label of the item selection list trigger this JavaScript

    JavaScript:popupFieldHelp('277938589795252851','1545903379570909')

    So I want to trigger the javascript also when the user click on the item selection list and pull down the options and for that I think that the dynamic action is the way to go, but I can't do things.

    That's what I have to do:

    I created a dynamic option as follows:

    Name: test
    Sequence: 30
    Even: click
    Selection type: product (s)
    Article (s): P1_RATING <-a selection list item
    Condtion: - no requirement.

    Real Actions
    Sequence: 10
    Action: Run the JavaScript Code
    Fires when the result of the event is: true
    Fire on loading the page: checked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')

    Thank you anyone who can tell me what I'm doing wrong here or bring a solution to my problem to trigger the Help window from an element automatically select.

    Kind regards
    Carlos

    Hi Carlos,

    I've set up a test case of exactly in the same way and it worked fine for me. I've created a page element called P1_DA_DEMO and added some values of the static selection list, then added a help text. I used the settings are lower, I suggest you try again, but also make sure that you have no other Javascript errors on the page. Use a tool like firebug to check.

    Name: Action Dynamics demo
    Sequence: 10
    Even: click
    Selection type: product (s)
    Product (s): P1_DA_DEMO<- a="" selection="" list="">
    Condtion: - no requirement.

    Real Actions
    Sequence: 10
    Action: Run the JavaScript Code
    Fires when the result of the event is: true
    Fire on loading the page: unchecked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')

    Scope of the event set a Bind s.

    Thank you

    Paul

  • Please help with conditional actions showing the PlayBar

    I tried to set up a tip action that will not allow users to move forward until they have clicked on the 3 themes I want to see again them.  I assigned variables, follow the tutorials and do everything now.  Please help how I my Advanced actions set upwards... everything shows and hides all work so I have to assume that the assignment of variable works as well.  I used numbers initially and changed my value of the variable of "dude" just to make sure I was not missing something.

    Capture.PNGCapture2.PNGcapture3.PNG

    Here's the aciton condtional which is performed after the entry of the slide

    Capture4.PNG

    All logic seems in tact for me however I click on each of my boxes and all conditions must be true, but will not display game bar...

    Note: I also tried to show a next button and just show the things randomly with the same logic and it just will not work... What am I doing wrong?

    Something escapes me in your question: How do trigger you the conditional action? I suspect that he is never executed, but may be wrong of course.

    I created a small example to check: slide contains 3 buttons that trigger an action condtional with two decisions. The first decision is a simulated standard measure (condition 1 = 1 is always correct) assigns the value 1 to the variable corresponding user and displays a caption text, that was initially hidden. This is a screenshot of this first decision Stand for the first Bt_One action to be triggered by the first button:

    The second decision Check is the action of condtional real, very similar to yours. This will be done after the first decision:

    Create a duplicate of this action for the other two buttons, you only have to edit the first decision where the user variable needs to be changed.

    In my example, when you click the last button (regardless of the sequence) all the text captions should have been disclosed (I na not hide others, but you can do the same of course) and the second decision check will result in a positive response, so the playback bar appears immediately.

    Lilybiri

  • Need help with buttons of reminder - highlights

    Hi all

    I'm looking for help with Encoder CS5. I have a project works very well except that I have not made salient for the buttons, at least, I think it's what his name. So when the mouse or the remote control navigates to the up/down button toa it changes color.

    In the properties of my button, the highlight is dimmed.

    How can I request highlights?

    Thank you very much

    Chris Anderson

    Now its just the text.

    You define a prefix for the subpicture.

    http://help.Adobe.com/en_US/Encore/CS/using/WS2C3F3ABD-6457-4ca0-898F-720B7E3D0C10.html

  • Help with button code please?

    I am a novice and have completed my first animated film. I need help with action script.

    The film is currently in a loop and I created and invisible button the size of the frame with the intention that a user can click on the picture of the movie to stop it and the second click continue the film from where it stopped.

    I used AS event handler method to stop the sequence. I tested it and it works. But I can't understand the appropriate code to restart the movie.

    Two questions;

    1. I go to the task the right way? (should I use two buttons, a stop, a tenure)?

    2. If my approach is possible, can someone give me the right to re - start the movie and put me out of my misery please?

    You can use the following after having changed 'yourbutton' and 'yourmovieclip' to use appropriate instance names:

    {yourbutton.onRelease = function ()}

    {if(!this.) Toggle)}

    yourmovieclip. Stop();

    } else {}

    yourmovieclip. Play();

    }

    This.Toggle =! This.Toggle;

    }

  • Need help with buttons!

    Hello someone!

    The thing that I would need help with is the buttons that moves... Say there are 2 buttons on the stage, when someone clicks the button, the button from left to right movement and opens something when it stops there. So long it's fine for me, but now the peal problem.

    The thing is I want the button now on the right rear to place there where appropriate when I click on a button of the second (and it goes right to the place). When I do now the first button remains in place right... Do someone know what to type in Actionscript?

    Please help me... [email protected]

    what you use now which causes your keys for you move?

  • 10-2101 U.S. Tablet HP: Need help with firmware mix to the top

    Little problem with the tablet in place lately and accidentally erased the firmware. My best look up and somehow able to reinstall one from here. But the thing is now the entire Tablet is in Chinese, because it seems I could have installed the wrong one... ghoulish pls help me fix it? Appreciate the help if ever...

    Hi@Robin Wendigo,

    Thank you for the HP's Support Forums. Best platform for all kinds of solutions, tips and settings for your questions/problems.

    For the best experience on HP forum, see our Guide to HP Forums to learn more.

    Problems of language on the tablet settings. Is this fair?

    I want to help you.

    Follow the steps from the link below and check if that helps.

    http://HP.care/2dyWVI3

    I hope this helps. Let me know to learn more

    Happy announcement.

    Resolv_S

    Happy to help you. I work for HP

    Please click on " ""Accept as Solution " " " if you feel my post solved your problem, it will help others find the solution.
    Click on the " Bravo Thumbs Up" " " to say 'Thank you' to help! "

  • help with blue screen of the 0x1000007e

    Hi, can I get help with freezes my computer?

    View blue screen information:

    ==================================================
    Dump file: 121015-27421 - 01.dmp
    Crash time: 10/12/2015-20:41:47
    Bug Check String: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED
    Bug check code: 0x1000007e
    Parameter 1: ffffffff "c0000005
    Parameter 2: fffff880'0463f0d2
    Parameter 3: fffff880'03b378d8
    Parameter 4: fffff880'03 b 37110
    Caused by the driver: rtbth.sys
    Caused by the address: rtbth.sys + 2185c
    Description of the file: Ralink Bluetooth adapter
    Product name: Ralink Bluetooth adapter
    Company: Ralink Technology, Corp..
    File version: 2.9.22.0 built by: WinDDK
    CPU: x 64
    Plant address: rtbth.sys + 130d2
    Stack address 1:
    The stack address 2:
    Address 3 the battery:
    Computer name:
    Full path: C:\Windows\Minidump\121015-27421-01.dmp
    Number of processors: 4
    Main version: 15
    Minor Version: 9200
    Empty the file size: 284.744
    Dump of file time: 10/12/2015-20:42:49
    ==================================================

    ==================================================
    Dump file: 120815-32078 - 01.dmp
    Crash time: 08/12/2015-11:38:26
    Bug Check String: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED
    Bug check code: 0x1000007e
    Parameter 1: ffffffff "c0000005
    Parameter 2: fffff880'058d40d2
    Parameter 3: fffff880'033dd8d8
    Parameter 4: fffff880'033dd110
    Caused by the driver: rtbth.sys
    Caused by the address: rtbth.sys + 2185c
    Description of the file: Ralink Bluetooth adapter
    Product name: Ralink Bluetooth adapter
    Company: Ralink Technology, Corp..
    File version: 2.9.22.0 built by: WinDDK
    CPU: x 64
    Plant address: rtbth.sys + 130d2
    Stack address 1:
    The stack address 2:
    Address 3 the battery:
    Computer name:
    Full path: C:\Windows\Minidump\120815-32078-01.dmp
    Number of processors: 4
    Main version: 15
    Minor Version: 9200
    Size of the dump file: 284.800
    Dump of file time: 12/08/2015-11:39:44
    ==================================================

    ==================================================
    Dump file: 120515-23000 - 01.dmp
    Crash time: 12/05/2015 14:11:48
    Bug Check String: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED
    Bug check code: 0x1000007e
    Parameter 1: ffffffff "c0000005
    Parameter 2: fffff880'058c00d2
    Parameter 3: fffff880'0609a8d8
    Parameter 4: fffff880'0609 has 110
    Caused by the driver: rtbth.sys
    Caused by the address: rtbth.sys + 2185c
    Description of the file: Ralink Bluetooth adapter
    Product name: Ralink Bluetooth adapter
    Company: Ralink Technology, Corp..
    File version: 2.9.22.0 built by: WinDDK
    CPU: x 64
    Plant address: rtbth.sys + 130d2
    Stack address 1:
    The stack address 2:
    Address 3 the battery:
    Computer name:
    Full path: C:\Windows\Minidump\120515-23000-01.dmp
    Number of processors: 4
    Main version: 15
    Minor Version: 9200
    Size of the dump file: 284.800
    Dump of file time: 12/05/2015 14:13:26
    ==================================================

    ==================================================
    Dump file: 120315-46625 - 01.dmp
    Crash time: 12/03/2015-21:46:50
    Bug Check String: PAGE_FAULT_IN_NONPAGED_AREA
    Bug check Code: 0 x 00000050
    Parameter 1: fffffa80'0f7e35b8
    Parameter 2: 00000000'00000000
    Parameter 3: fffff880'010985da
    Parameter 4: 00000000'00000000
    Caused by the driver: mpsdrv.sys
    Caused by the address: mpsdrv.sys + 88215 b 8
    Description of the file: Protection of Microsoft Service pilot
    Product name: Microsoft® Windows® Operating System
    Company: Microsoft Corporation
    File version: 6.2.9200.16753 (win8_gdr.131030 - 1505)
    CPU: x 64
    Plant address: ntoskrnl.exe + 5 has 540
    Stack address 1:
    The stack address 2:
    Address 3 the battery:
    Computer name:
    Full path: C:\Windows\Minidump\120315-46625-01.dmp
    Number of processors: 4
    Main version: 15
    Minor Version: 9200
    Size of the dump file: 284.800
    Dump of file time: 12/03/2015-21:48:50
    ==================================================

    Ntoskrnl.exe and rtbth.sys have been mentioned in the 3 last crashesmpsdrv.sys only in the first

    News of the event viewer:

    I saved a lot of event that happened in 08.12 accidents and 10.12, marked with red circles with white cross

    and some other events around them

    pastebin.com/xwU9pVf4

    (its in Spanish)

    I have not installed manually a new hardware or driver, the last accident occurred when I took the computer to sleep in airplane mode

    This phenomenon was related to adapter Bluetooth Ralink from Ralink Technology, Corp. rtbth.sys.

    Remove the driver current completely and install the latest driver available.  For instructions on how to do read everything to update the drivers of my partner JMH3143 http://answers.microsoft.com/en-us/windows/wiki/windows_other-hardware/updating-a-driver/a5e6345e-af9b-4099-bef0-8d22254aa1c1?tm=1436753520149 here
  • How to get help with conversion ROCK on the export of PDF?

    How can I get help with the quality of the PDF documents converted to word format export.

    Not likely to have, you're doing a "happy dance" but a scanned image is "the ear of the sow" and (Yes, I'll say).

    You can't have a scholarship of silk in one ear of the sow.

    Make you a picture of the text content. You get a result of OCR of all that is recognized. The character by character recognition accuracy is generally quite good. But - No image/photo file actually holds information on format, layout, fonts, etc. - it's just a picture. Acrobat OCR makes some assumptions about all this.

    -You have a bunch of each of the characters being exported to Word. Individual characters, not paragraphs, sentences no, no words, no values "white space", etc.

    So you get an export that is a "best estimate" of the less desirable source. Sometimes, it isn't so bad. Sometimes it's just awful. In all cases, you will need to do some cleanup of the exported content that landed in the Word file.

    The alternative is to transcribe the hardcopy to the Word file.
    In fact it can often be higher as a workflow rather than the scanning-ocr-export-cleanup shuffle

    .

    For really nice export "spot - we ', you must start with a PDF file from an application of creation (not a scanned image) which is a well-formed tag PDF (for example ISO 14289-1, PDF/UA-1).
    The purpose of the tagged PDF document is not only Accessible PDF is also how PDF supports actively the re-use of content (for example, export).

    Be well...

Maybe you are looking for

  • -10H - Portege Z830 can't get more then 4 hours of battery life

    I just bought my Portege Z830 last week. Although, in all reviews, I read that I have seen that autonomy is 7 to 8 hours, even when you run multiple applications my laptop battery does not last more, then 3-4 hours. Its a new laptop and I cannot unde

  • Add more dynamic events registration refnum

    Hello I have a wire that passes Event Registration refnum to my structure of the event. This thread is from VI, that I don't want to touch. He spent recording for the cluster of user events. I would add more dynamic events to the refnum (but not to t

  • Google Calendar adds a new contact

    I have a Gmail exclusively for my calendar.  My wife also.  The idea is to synchronize our calendars through google and see each and other activities.  Now, even if I have my wife as a contact on my phone, google has added his email as a separate con

  • How to remove Documents public files that are duplicates of My Documents except when new Registration Document

    Win7 creates a My Documents folder and a second folder My Documents in Public.  I don't want / need of the second series, but what makes it worse is when I save a scan or another document, it does not automatically go to the Public My Documents No. 

  • Source audio not available on the timeline of the program

    I'm editing sequences blocking pieces, that I have already edited.  However, when I select the titles that I want on my side source, they are not available on my calendar program on the map.  If I run the cut audio tracks come from an arbitrarily on