help with custom calculation / boxes

Hello.

I'm trying to link the boxes for a total of overall points as follows:

Question1 [] yes [] no

Question2 [] yes [] no

1 point if either 'Yes' is selected. (Max 1 point only)

Question3 [] yes [] no

Question4 [] yes [] no

2 points in total for each '' Yes. '' (Maximum 4 points)

I set each box to a value of exports of 1.

I have a score box "box2".

// first section questions
// set vars
var points = this.getField("YesOne").value + this.getField("YesTwo").value;
// if then
if ((points > 0)) {this.getField("box2").value = 1} 
else {this.getField("box2").value = 0};

I got stuck on the first part, because it doesn't work as I said above, any help would be appreciated.

I am trying to post the actual PDF, but I can't find a way to put it in this ad...

Thank you!

Here is an example with all 3 approaches and the display of the value of each field:

Boxes amount

Tags: Acrobat

Similar Questions

  • Need help with custom dialog box

    I created a custom help dialog box. The problem is that 5 buttons do not properly fit in my manager of horizontal field on some blackberry devices. How can I make own? I tried to use my own custom buttons that allow me to specify their width and height, but I'm unable to get the width of the dialog box, so I can't determine how wide should be buttons.

    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    
    public class HelpDialog extends Dialog
    {
        static int ButtonPressed;
        HorizontalFieldManager hfmChoices = new HorizontalFieldManager();
        ButtonField cmdFirst = new ButtonField("|<")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 0;
                close();
                return true;
            }
        };
        ButtonField cmdPrev = new ButtonField("<")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 1;
                close();
                return true;
            }
        };
        ButtonField cmdNext = new ButtonField(">")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 2;
                close();
                return true;
            }
        };
        ButtonField cmdLast = new ButtonField(">|")
        {
            protected boolean navigationClick(int status, int time)
            {
                ButtonPressed = 3;
                close();
                return true;
            }
        };
        ButtonField cmdClose = new ButtonField("Close")
        {
            protected boolean navigationClick(int status, int time)
            {
                close();
                return true;
            }
        };
    
        public HelpDialog(String message, int page, int maxPages)
        {
            super("Help (Page: " + page + " of " + maxPages + ")\n\n" + message + "\n", null, null, -1, null, 0);
            ButtonPressed = -1;
            if (page <= 1)
            {
                cmdFirst.setEnabled(false);
                cmdPrev.setEnabled(false);
            }
            if (page >= maxPages)
            {
                cmdNext.setEnabled(false);
                cmdLast.setEnabled(false);
            }
            hfmChoices.add(cmdFirst);
            hfmChoices.add(cmdPrev);
            hfmChoices.add(cmdNext);
            hfmChoices.add(cmdLast);
            hfmChoices.add(cmdClose);
            add(hfmChoices);
        }
    }
    

    Thank you

    Most people have no need a close button, they expect the ESC to do it for them.

    That said, I disagree with this statement:

    "I think that the only good way to use managers other than the AbsoluteFieldManager, is to use them at all."

    Designing a user experience that works well on multiple devices is difficult, and I don't think that has a size fits all approach work.  In addition, I don't have the time to create formats for specific screens for each device type, and although this will not happen now, I didn't have to rework screen designs every time that a new device came out.  I think that it is possible to create a common user interface experience given the size of the screen, and whether it is touch.  If you want to read my thoughts on this, have a look at the tutorial of the user interface you will find here:

    http://supportforums.BlackBerry.com/T5/Java-development/tutorials-for-new-developers-part-1/m-p/1621...

  • Need help with custom calculation Script

    Hey everybody.  I'm using Acrobat X Pro and stumbling a bit on the syntax of the following equation.  I need to add the value of "Cell1" & "Cell2" then add the value of "Cell3.  However, the value of "Cell3" is entered by the user and specifies a percentage of the sum of "Cell1 &"Cell2".  For example: If the user enters "3" in "Cell3" I need the value returned at 3% of the sum of "Cell1" + "Cell2".  If the user enters "9" in "Cell3" I need the value returned for "Cell3" 9% of the sum of "Cell1 and Cell2" and the end result should be the sum of "Cell1 Cell2 + Cell3.  In more detail:

    If "Cell1" = "Cell2" $ 500 = $500 and "Cell3" = '3' then I need the returned value to be $1030,00.

    I hope this makes sense. Here's what I have so far, but alas, it does not work.  Any help would be GREATLY appreciated.

    Get the first value in the field, as a number

    var v1 = + getField("Cell1").value;

    Get the second field value, as a number

    var v2 = + getField("Cell2").value;

    Get the value of a field, a number transformation

    var v3 = + getField("Cell3"/100).value;

    Calculate and set the value of this field for the result

    Event.Value = v3 + (v1 + v2);

    Thank you

    Solan

    I have posted a reply, but realized that it wasn't what you wanted. There is some confusion about what you want for Cell3. A hand, you say that the user enter a vaule in the area, but them you say you want its calculated value based on what the user has entered and two other field values. It seems to me Cell3 should be the domain that the user enters the percentage, and the calculated field (Cell4) script could be:

    Get the first value in the field, as a number

    var v1 = + getField("Cell1").value;

    Get the second field value, as a number

    var v2 = + getField("Cell2").value;// get treatment field value, as a number

    Get the percentage

    var v3 = + getField("Cell3").value;

    Calculate and set the value of this field for the result

    Event.Value = (1 + v3 / 100) * (v1 + v2);

  • Help with automatic calculation field


    I'm doing a form to include an automatic calculation for feet cubes (Lxwxh/1728).

    Even if this is possible in the simplified field notation I need to automatically round up for and decimal point. I tried to use the custom calculation script, but I have no experience with java.

    Event.Value = Math.ceil (this.getField("LENGTHRow1").value * this .getField ("WIDTHRow1") .value * this 1728/d("HEIGHTRow1")) .getFiel;

    It's like I had with Googling but I believe that there is some sort of error with the calculation. I would be very happy if someone can show me what should be the script.

    You are missing the part 'value' after the second getField command.

  • Help with text input boxes

    I am relatively new to Captivate 7.  I am doing a project which has a couple of slides with text input boxes (TEBs).  They are not marked nor part of the graduate quiz.  They are more like knowledge-check questions as we go through the course.  How to make sure that they are filled before moving on to the next slide?  Is it possible to go about this?  The other thing is exactly how a submit button for this work?  I did an overview of my project and the submit button doesn't seem to be something.  Help, please.

    Thank you

    Ms. frustrated

    Check out the Lilybiri blog. This is a response with a demo.

    http://blog.lilybiri.com/where-is-null

    Anthony

  • If anyone can help with a calculation in Acrobat forms?

    I have a form created in Acrobat and impossible to get a calc to function. Field ' # guests_2 ' Gets an amount and should be multiplied by $75 for a total field of '2' HELP Please! Thank you

    There are two ways to do this. Tab in calculation of the properties of the field for the field '2' do either:

    1 field option simplified rating:

    Enter the following information: #\ guests_2 * 75

    It would be better if you changed the name of the field to something like "num_guests_2", so the entry could be changed to:

    num_guests_2 * 75

    2. custom calculation script:

    Enter the following text:

    Set this field value

    GetField("#_guests_2").value = Event.Value * 75.

    Assuming that the ' guests_2 # ' the field is numeric. You don't have to change the name of the field for that, but I think it would still be a good idea.

  • Problem with custom dialog box

    I have a custom dialog box. The code goes here

    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.BackgroundFactory;
    
    public class CustomDialog extends Dialog{
    
        public CustomDialog(int command,String msg,int color,int alpha){
             super(command, msg, command,Bitmap.getPredefinedBitmap(Bitmap.EXCLAMATION), VerticalFieldManager.FOCUSABLE);
             setBackground (BackgroundFactory.createSolidTransparentBackground (color, alpha));
        }
    
    }
    

    I'm the caller to another class as follows

    CustomDialog d = new CustomDialog(Utils.D_YES_NO,"Do you want to exit",Color.BLUE,140);
    d.show();
    

    Its display very well and as I intended it to be. But the problem is that I'm not able to get the index of the choice to perform certain actions, such as

        int i=d.getSelectedValue();
    
                        if(i==Dialog.D_YES){
                            Dialog.alert("hi");
                        }
    
                        }
    

    Its do not call the dialog box, can anyone suggest me how to get the index of the choice that I chose to say YES or NO and to perform tasks accordingly

    Plese try suite

    CustomDialog d = new CustomDialog(Dialog.D_YES_NO,"Do you want to exit",Color.BLUE,140);
                    d.show();
                    d.setDialogClosedListener(new DialogClosedListener() {
    
                        public void dialogClosed(Dialog dialog, int choice) {
                            /*
                             *   // Field descriptor #211 I
                                  public static final int YES = 4;
    
                                  // Field descriptor #211 I
                                  public static final int NO = -1;
                             */
                            int i=choice;
                            System.out.print("Selected Value :"+choice);
                            if(Dialog.YES==choice){
                                System.out.println("Selected Value : YES");
                            }else if(Dialog.NO==choice){
                                System.out.println("Selected Value: NO");
                            }
    
                        }
                    });
    

    If it is useful, please make as response and do not hesitate on LIKE button thanks

  • Need help with this calculation

    Hi members,

    Im trying to do some logical columns for calculations. It is a very simple calculation, but I can't seem to make it work in the repository.
    The data upon which I make eyes of calculation as follows.

    Issue Nr. | Question | Meet Nr. | Response | Answers (number of responses)
    1. | Job satisfaction | 1. | Very good | 8
    1. | Job satisfaction | 2 | Good | 2
    1. | Job satisfaction | 3 | Bad | 5
    1. | Job satisfaction | 4 | Very bad. 0

    It is an example of the data. Now, I want to make a logical column to calculate the 'happiness factor '. The formula looks like:

    (Very good + good) / (very good + good + good + bad) * 100 = happiness

    So it would be 10 / 15 * 100 = 66.66.

    Very simple, but I have no idea on how to accomplish this formula in the repository. What I was aiming for in my head, it was something like:

    Select the answers where [answer] Nr. (3,4) / select responses where [answer]. Nr in (1,2) * 100 = :)


    Does anyone know how to do this in the repositroy? It would be highly appreciated.

    Erik.

    Hello

    This happens when we don't know all the facts and we create our scenarios and responses only what we know...

    Now you can do if you do not use 'no opinion' or 'Empty response' in our 'answers' but again to tuition assistance box...

    'All answers worth calculation' =
    case when answer in ('list of what answers I want to aggregate', ((Very) Happy... (Very) Unhappy))
           then 'my new All answers'
           else 'answers I need to ignore'
    end
    

    and our dimmnesion should look like:

    'Type of survey' -> 'Question' -> 'All answers worth calculation' -> Happiness -> Answer
    

    in this case the levels should be no to the 'Question' but to our new "answers a calculation value..."

    So, for an issue with 21 responses it is only 6 entries ((very) happy, (very) unfortunate, Blank, do not know)
    A separate account solves your problem...

    In addition, in your last post I don't understand how you can sum UP non-numerical data (Happy/headaches)
    No aggregate data not digital (Happy/headaches)
    you aggregate your fact group by happiness(Happy/Upset)

    sum ('Table'.) ("' #Answers" by BOX WHEN in Answer (' very good ',' good ') THEN ELSE 'Evils' END 'Happy' *) *.

    I think you've got the ideea of how play with several groups on the same Assembly and how to manipulate BI...
    All you have to do is to play with your data to add or exclude what you need
    If the data is not there you want you allways can create a view in the database or in physical layer so it can help you more.
    On another thing... There is a way to filter data at the logical level at the source of the logical table, the content tab, where clause. Don't say you use here, just give it a shot

    Best regards and fun of it
    Nicolae

  • need a little help with time calculation

    Hello

    I tried to implement oauth2 and youtube api. I can connect and can recover the access_token and other oauth required as expires_in json values.

    What I'm trying to do is drive if my access token is valid or not before making another call to their api - youtube gives a value - expires_in that normally contains 3600, which I suppose is seconds. I'm trying to add this time now using clock_gettime(), but I don't get correct values for my calculation - nowTime + expiresInt.

    Anyone can point out the problem with my code please? It could be a bad way to do it, but I thought that I spent a few hours on this subject before asking for help.

    Thank you.

    token = c.value("access_token").toString().toStdString();
        refreshtoken = c.value("refresh_token").toString().toStdString();
        saveValueFor("access_token", QString::fromStdString(token));
        string expires = c.value("expires_in").toString().toStdString();
        saveValueFor("refresh_token", QString::fromStdString(refreshtoken));
        struct timespec* start;
        clock_gettime(CLOCK_REALTIME, start);
        int nowTime = start->tv_sec;
        std::stringstream str(expires);
        int expiresInt;
        str >> expiresInt;
        nowTime += expiresInt;
        stringstream nowTimeString;//create a stringstream
        nowTimeString << nowTime;//add number to the stream
    

    Now you install milliseconds and seconds.

  • Need help with Custom Field Layout - getting wirer height value

    In the BB Simulator, I get a strange value placed in in my field layout() method custom. The width is 320, which is correct, but the height is 1073741823 and it takes 240 or less. In this test, my custom field is the only field in the Manager, so I expect to 240.

    I tried two different simulators - BB curve and the 8800. I use JDE 4.5.0 in Eclipse 3.4.1. This is the code for my method of layout:

    Protected Sub layout (int width, int height) {}
    s long = getStyle().
    If ((s & USE_ALL_WIDTH)! = USE_ALL_WIDTH) {}
    width = Math.min (width, getPreferredWidth());
    }
    If ((s & USE_ALL_HEIGHT)! = USE_ALL_HEIGHT) {}
    height = Math.min (height, getPreferredHeight());
    }
    setExtent (width, height);
    model.setExtent (width, height);
    Model.Scroll (0, 0);
    }

    I expect the value of the screen height, or less, if the domain is configured correctly.

    I'm upgrading my custom field in a VerticalField Manager with the following attributes:

    Super (VerticalFieldManager.USE_ALL_WIDTH
    | VerticalFieldManager.USE_ALL_HEIGHT
    | VerticalFieldManager.FIELD_HCENTER | VerticalFieldManager.FIELD_VCENTER);

    Is this a bug in the Simulator, or I understand the API correctly? Is there a way to 'reset' the Simulator - I tried to get out of Eclipse and restart Windows, but I always get the same value.

    Thank you!

    Mark

    A VerticalFieldManager comes, I think, with default VERTICAL_SCROLL.  If you do not want to scroll through this particular Manager, add VerticalFieldManager.NO_VERTICAL_SCROLL to your forests of style and it will be laid out with only the height and the actual width.

    Also, since you setExtent() by yourself, USE_ALL_HEIGHT and USE_ALL_WIDTH are redundant, I think.

    Hope that helps,

    Arkady.

  • Help with customer 501 pix for the configuration of a site...

    Hello everyone, I am trying to set up a customer vpn site and after a few days

    I'm at the end of the roll.

    I'd appreciate ANY help or trick here.

    I tried to set up the config via CLI and PDM, all to nothing does not.

    Although the VPN client log shows the invalid password, I am convinced that the groupname password is correct.

    I use the Cisco VPN Client 5.0.07.0290 v.

    -----------------------------------------------------------------

    Here is HS worm of the PIX:

    Cisco PIX Firewall Version 6.3 (5)
    Cisco PIX Device Manager Version 3.0 (4)

    -----------------------------------------------------------------

    Here's my sh run w / passwords removed:

    pixfirewall # sh run
    : Saved
    :
    6.3 (5) PIX version
    interface ethernet0 10baset
    interface ethernet1 100full
    ethernet0 nameif outside security0
    nameif ethernet1 inside the security100
    activate the encrypted password to something
    that something encrypted passwd
    pixfirewall hostname
    domain ciscopix.com
    fixup protocol dns-length maximum 512
    fixup protocol ftp 21
    fixup protocol h323 h225 1720
    fixup protocol h323 ras 1718-1719
    fixup protocol http 80
    fixup protocol they 389
    fixup protocol rsh 514
    fixup protocol rtsp 554
    fixup protocol sip 5060
    fixup protocol sip udp 5060
    fixup protocol 2000 skinny
    fixup protocol smtp 25
    fixup protocol sqlnet 1521
    fixup protocol tftp 69
    names of
    access-list ping_acl allow icmp a whole
    permit 192.168.1.0 ip access list inside_outbound_nat0_acl 255.255.255.0 192.168
    . 50.48 255.255.255.248
    outside_cryptomap_dyn_20 ip access list allow any 192.168.50.48 255.255.255.248

    pager lines 24
    Outside 1500 MTU
    Within 1500 MTU
    IP address outside pppoe setroute
    IP address inside 192.168.1.1 255.255.255.0
    alarm action IP verification of information
    alarm action attack IP audit
    IP local pool vpnpool 192.168.50.50 - 192.168.50.55
    history of PDM activate
    ARP timeout 14400
    Global interface 10 (external)
    NAT (inside) 0-list of access inside_outbound_nat0_acl
    NAT (inside) 10 0.0.0.0 0.0.0.0 0 0
    Access-group ping_acl in interface outside
    Timeout xlate 03:00
    Timeout conn 01:00 half-closed 0:10:00 udp 0: CPP 02:00 0:10:00 01:00 h225
    H323 timeout 0:05:00 mgcp 0: sip from 05:00 0:30:00 sip_media 0:02:00
    Sip timeout - disconnect 0:02:00 prompt Protocol sip-0: 03:00
    Timeout, uauth 0:05:00 absolute
    GANYMEDE + Protocol Ganymede + AAA-server
    AAA-server GANYMEDE + 3 max-failed-attempts
    AAA-server GANYMEDE + deadtime 10
    RADIUS Protocol RADIUS AAA server
    AAA-server RADIUS 3 max-failed-attempts
    AAA-RADIUS deadtime 10 Server
    AAA-server local LOCAL Protocol
    Enable http server
    http 192.168.1.0 255.255.255.0 inside
    No snmp server location
    No snmp Server contact
    SNMP-Server Community public
    No trap to activate snmp Server
    enable floodguard
    Permitted connection ipsec sysopt
    Crypto ipsec transform-set ESP-3DES-MD5-esp-3des esp-md5-hmac
    Dynamic crypto map outside_dyn_map 20 match address outside_cryptomap_dyn_20
    Crypto-map dynamic outside_dyn_map 20 the transform-set ESP-3DES-MD5 value
    map outside_map 65535-isakmp ipsec crypto dynamic outside_dyn_map
    outside_map interface card crypto outside
    ISAKMP allows outside
    part of pre authentication ISAKMP policy 20
    ISAKMP policy 20 3des encryption
    ISAKMP policy 20 md5 hash
    20 2 ISAKMP policy group
    ISAKMP duration strategy of life 20 86400
    vpngroup address vpnpool pool vpnaccessgroup
    vpngroup dns 192.168.1.1 Server vpnaccessgroup 192.168.1.11
    vpngroup wins 192.168.1.1 vpnaccessgroup-Server
    vpngroup vpnaccessgroup by default-field local.com
    vpngroup idle 1800 vpnaccessgroup-time
    something vpnaccessgroup vpngroup password
    Telnet 192.168.1.0 255.255.255.0 inside
    Telnet timeout 60
    SSH 192.168.1.0 255.255.255.0 inside
    SSH timeout 5
    Console timeout 0
    VPDN group pppoe_group request dialout pppoe
    VPDN group pppoe_group localname someone
    VPDN group ppp authentication pap pppoe_group
    VPDN username someone something
    dhcpd address 192.168.1.100 - 192.168.1.110 inside
    dhcpd dns 206.248.154.22 206.248.154.170
    dhcpd lease 3600
    dhcpd ping_timeout 750
    dhcpd outside auto_config
    dhcpd allow inside
    Terminal width 80
    Cryptochecksum:307fab2d0e3c5a82cebf9c76b9d7952a
    : end

    -----------------------------------------------------------------------------------------------

    Here is the log of pix in trying to connect with the client vpn cisco w / real IPs removed:

    crypto_isakmp_process_block:src: [cisco vpn client IP here], dest: [cisco PIX IP here] spt:64897 TPD:
    500
    Exchange OAK_AG
    ISAKMP (0): treatment ITS payload. Message ID = 0

    ISAKMP (0): audit ISAKMP transform 1 against 20 priority policy
    ISAKMP: encryption AES - CBC
    ISAKMP: hash SHA
    ISAKMP: default group 2
    ISAKMP: long-acting prior auth (init)
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 256
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 2 against priority policy 20
    ISAKMP: encryption AES - CBC
    ISAKMP: MD5 hash
    ISAKMP: default group 2
    ISAKMP: long-acting prior auth (init)
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 256
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 3 against priority policy 20
    ISAKMP: encryption AES - CBC
    ISAKMP: hash SHA
    ISAKMP: default group 2
    ISAKMP: preshared auth
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 256
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 4 against 20 priority policy
    ISAKMP: encryption AES - CBC
    ISAKMP: MD5 hash
    ISAKMP: default group 2
    ISAKMP: preshared auth
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 256
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 5 against priority policy 20
    ISAKMP: encryption AES - CBC
    ISAKMP: hash SHA
    ISAKMP: default group 2
    ISAKMP: long-acting prior auth (init)
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 128
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform against the policy of priority 20 6
    ISAKMP: encryption AES - CBC
    ISAKMP: MD5 hash
    ISAKMP: default group 2
    ISAKMP: long-acting prior auth (init)
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 128
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform against the policy of priority 20 7
    ISAKMP: encryption AES - CBC
    ISAKMP: hash SHA
    ISAKMP: default group 2
    ISAKMP: preshared auth
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 128
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 8 against priority policy 20
    ISAKMP: encryption AES - CBC
    ISAKMP: MD5 hash
    ISAKMP: default group 2
    ISAKMP: preshared auth
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP: keylength 128
    ISAKMP (0): atts are not acceptable. Next payload is 3
    ISAKMP (0): audit ISAKMP transform 9 against priority policy 20
    ISAKMP: 3DES-CBC encryption
    ISAKMP: hash SHA
    ISAKMP: default group 2
    ISAKMP: long-acting prior auth (init)
    ISAKMP: type of life in seconds
    ISAKMP: lifespan (IPV) 0x0 0 x 20 0xc4 0x9b
    ISAKMP (0): atts are not acceptable.
    crypto_isakmp_process_block:src:src: [cisco vpn client IP here], dest: [cisco pix IP here] spt:64897 TPD:
    500
    ISAKMP: error msg not encrypted
    crypto_isakmp_process_block:src: [cisco vpn client IP here], dest: [cisco pix IP here] spt:64897 TPD:
    500
    ISAKMP: error msg not encrypted
    pixfirewall #.

    ---------------------------------------------------------------------------------------------------------------

    Here is the log of the vpn client:

    363 16:07:58.953 01/07/10 Sev = Info/4 CM / 0 x 63100002
    Start the login process

    364 16:07:58.953 01/07/10 Sev = Info/4 CM / 0 x 63100004
    Establish a secure connection

    365 16:07:58.953 01/07/10 Sev = Info/4 CM / 0 x 63100024
    Attempt to connect with the server '[cisco pix IP here]. "

    366 16:07:58.953 01/07/10 Sev = Info/4 IKE / 0 x 63000001
    From IKE Phase 1 negotiation

    367 16:07:58.969 01/07/10 Sev = Info/4 IKE / 0 x 63000013
    SEND to > ISAKMP OAK AG (SA, KE, NO, ID, VID (Xauth), VID (dpd), VID (Frag), VID(Nat-T), VID (Unity)) [cisco pix IP here]

    368 16:07:59.078 01/07/10 Sev = Info/4 IPSEC / 0 x 63700008
    IPSec driver started successfully

    369 07/01/10 Sev 16:07:59.078 = Info/4 IPSEC / 0 x 63700014
    Remove all keys

    370 16:08:00.110 01/07/10 Sev = Info/4 IKE / 0 x 63000014
    RECEIVING< isakmp="" oak="" ag="" (sa,="" vid(xauth),="" vid(dpd),="" vid(unity),="" vid(?),="" ke,="" id,="" non,="" hash)="" from="" [cisco="" pix="" ip="">

    371 16:08:00.110 01/07/10 Sev = WARNING/3 IKE/0xE3000057
    The HASH payload received cannot be verified

    372 16:08:00.110 01/07/10 Sev = WARNING/2 IKE/0xE300007E
    Failed the hash check... may be configured with password invalid group.

    373 16:08:00.110 01/07/10 Sev = WARNING/2 IKE/0xE300009B
    Impossible to authenticate peers (Navigator: 915)

    374 16:08:00.110 01/07/10 Sev = Info/4 IKE / 0 x 63000013
    SEND to > ISAKMP OAK INFO (NOTIFY: INVALID_HASH_INFO) [cisco pix IP here]

    375 16:08:00.110 01/07/10 Sev = Info/4 IKE / 0 x 63000013
    SEND to > ISAKMP OAK INFO (NOTIFY: AUTH_FAILED) [cisco pix IP here]

    376 16:08:00.110 01/07/10 Sev = WARNING/2 IKE/0xE30000A7
    SW unexpected error during the processing of negotiator aggressive Mode:(Navigator:2263)

    377 16:08:00.110 01/07/10 Sev = Info/4 IKE / 0 x 63000017
    Marking of IKE SA delete (I_Cookie = A152D516B07D9659 R_Cookie = 5F4B55C38C0A40F4) reason = DEL_REASON_IKE_NEG_FAILED

    378 16:08:01.078 01/07/10 Sev = Info/4 IKE/0x6300004B
    IKE negotiation to throw HIS (I_Cookie = A152D516B07D9659 R_Cookie = 5F4B55C38C0A40F4) reason = DEL_REASON_IKE_NEG_FAILED

    379 16:08:01.078 01/07/10 Sev = Info/4 CM / 0 x 63100014
    Could not establish the Phase 1 SA with the server "[cisco pix IP here]" due to the "DEL_REASON_IKE_NEG_FAILED".

    380 16:08:01.078 01/07/10 Sev = Info/4 IKE / 0 x 63000001
    Signal received IKE to complete the VPN connection

    381 16:08:01.078 01/07/10 Sev = Info/4 IPSEC / 0 x 63700014
    Remove all keys

    382 16:08:01.078 01/07/10 Sev = Info/4 IPSEC / 0 x 63700014
    Remove all keys

    383 16:08:01.078 01/07/10 Sev = Info/4 IPSEC / 0 x 63700014
    Remove all keys

    384 16:08:01.078 01/07/10 Sev = Info/4 IPSEC/0x6370000A
    IPSec driver successfully stopped

    Mmmm... What version of vpn client do you use?

    If you use the last being, it looks like you might have it downgrade to a version older than the version of your PIX is old enough.

  • Help with Custom Signature Bulding

    Can someone help me with this. I want to build a customized for the particular http string signature trigger.

    http://150.50.15.110/MyApp?Data=01234567890&user=Joe

    The goal is whenever the data attribute value is a 11 digit or more, it must trigger. Otherwise it should not. You must also use RequestRegex only. It is a laboratory of labops, but I've never had it work even with their solution. Every time I try to match a? (i.e-?) It does not work in the custom signature. When to use one. + It works.

    I used the custom string to operate

    [gG] [eE] [tT] [\x20]/[mM][yY][aA][pP].+DATA=. {11}, \&USER

    Every time I replace the. + be with? or------? [+ or -?] or [-?] + or (-?) or (-?) + it does not work. I'm missing something. I spent over 40 hours and finally gave up.

    I use s97 4.1 (4) and a 4215. My computer is running in a Bug.

    Fires in the following regular expression:

    [gG] [eE] [tT] [\x20]/[mM][yY][aA][pP][pP][\?] DATA =. {11}, \&USER

    Your regex is missing from the second "P".

    -Jason

  • Firefox helps with the search box

    so since I started using Firefox I was using IE 9 and I got a bing toolbar and I was wondering if I can get some of the fetchers or the simlear.
    I want the firefox search bar to do these things
    -After you have clicked on enter and if he autocrats or I'm looking for something otherwise it will make the changes without redo me it
    -i can search for different things on different tabs without affecting the tabs provided
    so is it possible to make the search box work like the bing toolbar

    Hello

    I have the answer for this thread with my suggestions, please check and let me know if that helps.

    Note: If you need more help on this thread please continue to answer on the same thread, which will avoid confusion.

    Thank you for your understanding.

  • Need help with custom script to rename the layers

    Hello world.

    I need help to write a custom script (because I suck at it) that will allow me to go through all the layers and sous-calques for a specific name ('X') and give it a new specific name ('Y').

    I have had success using the script below, but it does not work on any text layers names where the text layer was previously particularly well-known in 'X' and now changed needs.

    Any help is greatly appreciated.

    * Note: this script was originally used to find any layer with 'Copy' in its name and remove with anything after (to correct the problem of duplication of layers by adding this text).

    This is why the function is named removeCopy. It works for renaming layers also - just not a layer of text unfortunately.

    #target illustrator

    function removeCopy() {}
    If (app.documents.length == 0) return;
    var app.activeDocument = docRef;
    recurseLayers (docRef.layers);
    }
    removeCopy();
    function recurseLayers (objArray) {}
    for (var i = 0; i < objArray.length; i ++) {}
    ObjArr [i] .name = ObjArr [i].name.replace (/ \s*current name\s*\d*/, 'new name');
    If (objArray [i] .layers) recurseLayers (. layers.length > 0 ObjArr [i]);
    }
    }

    I finally found something after searching forums for a week. My confusion was related to the way Illustrator treats real layers against text/path/object "layers." Instead of layers, I had to use the pageItems in the script. The code below works. Thanks to Gustavo for his answer in another thread and Carlos I thank you for this looking too good! You're great to be ready to help models do more advanced things with Illustrator.

    var doc = app.activeDocument;
    var items = doc.pageItems;
    for (var g = 0; g)
        elements [g] .name = elements [g].name.replace ('Century Schoolbook text line', ' MonogramText: Century Schoolbook ");
    };
    App.Redraw ();
  • Help with the check box.

    Hello

    I have a question with the checkbox. I use Apex 4.0.
    I have 5 check boxes and using the Lovs I gave values for each check box.

    When I select the boxes to tick and submit, the values are inserted into a single column.
    Example of
    Consider the CB as checkbox

    CB1 1
    CB2 2
    CB3 3
    CB4 4
    CB5 5

    When I select CB1 CB4, CB5 databases it stores like 1:4:5 but, I need to be stored in format 10045. As if I select CB2, 3 5, then it should be kept as 02305

    The return value of the checkbox should be included as well as the other values not selected as 0s such as related in the above format.

    Can someone help me with this.


    Thank you
    Rik

    It should work now.

    Like I said before, you should use the new element (P2_X) in the process of page(process of CB_EXAMPLE line) as the concatenated numbers.
    So I changed the field reference column DB on the P2_NUMBER_2 and added to P2_X.
    Also, I changed P2_X to only textfield display(you can change to hidden, without security of checksum), since view only items will be unavailable in the process of the page.

Maybe you are looking for