Help in Customizing Safari 9.1.1. ?

I recently migrated my data Safari and Firefox to an old Macbook with a new Macbook Pro, OS 10.11.5. Since I am more familiar with Firefox on my old computer, I put Firefox as my default browser. My Firefox setup and preferences are fine, but every time I open Safari 9.1.1 (with which I am familiar), I will meet with minor but annoying glitches.

Is there a single Apple Support article that I can go that will help me configure Safari the way I want and also to correct these problems?  I looked on the Apple Support but cannot locate an article with the basic instructions.  Thanks for any help out there!

(1) at the opening, Safari always wonder if I want to make my default instead of Firefox browser, even if I said 'No' several times.

(2) even if I set Google.com as my homepage in the Sys/general Prefs, instead of Google, Safari still opens to a page showing my favourites from the toolbar, I want and as icons, which I don't want.

(3) safari opens with a sidebar on the left: 'Favourites' at the top with a star, then a folder called Menu bookmarks, then a few records more configuration of Safari, I've updated well before I migrated and beneath them a bunch of various favorites that appear to be the remains of "Unsorted Bookmarks."  Not sure if these are old favorites or toolbar items.

(4) I want the toolbar to resemble the Firefox toolbar, running at the top of the screen. Is it possible to do?

UPDATE: Re #4: I just discovered how to make the toolbar appear in Safari 9.1.1, so please skip this question.  (My last version had the hide-and-show the functionality of the toolbar.)  So now, my only problem is how to get the opening page as I want (# 1, 2 and 3).  I do not know there is an article somewhere to make it easy - thanks again for your suggestions.

Tags: Mac OS & System Software

Similar Questions

  • need help from customer relationship E60978963

    It started in February 2015 with the VAIO, I bought in 2013. So fast discharged battery and power plug appeared to shake. I had to move out of the country in April 2015, and I needed to have a laptop with me, so I thought that 2 months would have been sufficient. Until March 20, 2015, I received voicemail about the offer of redemption, so I quickly accepted and responded with my address. According to the email, the audit was approved on 26 March and should be delivered with 4 to 6 weeks. I bought another laptop and bring a new one with me on this trip.

    It has been more than 7 weeks, so I continued the call for Sony to keep track. Every time Sony Support, aka the doorman, says "wait" until the customer relationship will come back to me (unless one or two days) and they said they do not have a client relationship contact number. I called again after two days because nothing happened yet. This time, now Sony helped me I need to fill out a form or an article, he would send me to my email. I received no email from Sony, once AGAIN. Why change history?  Please advise and I would like to know who I can talk to for this problem. Again, the event ID is E60978963.

    Finally, the problem seems to be resolved, but not yet completely. Thank you. However, I would need to discuss this further with Sony.

  • 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 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

  • 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 contact customer service

    Hi people

    I need to contact the customer service that I need to make a formal complaint, so far, I spoke to a member of the staff of customer service by live chat and they could not help, so they gave the following e-mail address:

    [email protected] that I sent a few times now and they don't reply. I also sent an e-mail: C Anish [[email protected]] and they have not replied yet. Has anyone else had a real problem and could not get through to the right people? What can I do in this situation? It seems that I can talk to a number of different people in Adobe that are very useful when I want to buy, but when it comes to a problem I just hit a wall!


    Can someone give me a help in this?


    Thank you

    Hi Louise,.

    I apologize for the inconvenience, I sent you an email asking for your details.

    Please come back to my email and I will contact you to resolve your query.

    Kind regards

    Akshay

  • Need help contacting customer service

    Is there a number I can call for customer support?

    Acrobat Connect Pro help | Acrobat Connect Pro Support

  • Help with custom forms report

    Hello

    I recently created a new custom in British Colombia web form which seems to work very well.

    My problem is that when I go to custom reports, in the filter criteria I don't see my new form under the "custom shape CRM filter". All my other forms however appear here.

    Am I missing just a little?

    Thanks for the help!

    Yor form does not have all the custom fields, this is why he is not in that

    drop-down menu. You can use the filter cases cases where the case

    object is the name of the online form.

    See you soon,.

    Mario

    www.twoblokeswithapostie.com

  • Please help asap custom the grid fill is displayed

    I created a custom grid spacing value 2, gray fill. No matter HOW I export it, it shows just like a gray fill. Please help me I have it out as soon as possible it makes me crazy!

    Ccasati wrote:

    > I've created a custom grid spacing value 2, gray fill. No matter HOW I
    > export, it shows just like a gray fill. Please help I have this out
    > as soon as possible it makes me crazy!

    Custom fillings are Postscript code. They will not print to the non-Postscript
    printers. If you do not have a Postscript printer, you can export to a
    PostScript file or EPS file and use Acrobat Pro/Distiller to create a PDF file.

    If you speak of the grid to view > grid, then it's a nonprinting grid
    similar to the guides. Its purpose is to help the layout.

    If you want to create a custom grid that allows to print on all printers and
    correctly export to many formats, use a Fill in mosaic.

    Judy Arndt

  • Help: using customered for Web Services data type settings

    file answer.cfc
    < cfproperty >
    < cfcomponent name = "person" type = "name" >
    < name cfcomponent = "answerText" type = "string" >
    < / cfproperty >

    file name.cfc
    < cfproperty >
    < name cfcomponent = "FirstName" type = "string" >
    < name cfcomponent = "Name" type = "string" >
    < / cfproperty

    webServices of the myWebServices.cfc file
    < cfproperty >
    < cffunction = returnType = "echoAnswer" name "string" access = "remote" output = "false" >
    < name = "input" cfargument type = 'response' >
    < cfset returns = "" >
    < cfif arguments.input.person.FirstName eq 'Xinkun' >
    < cfset returns = "Xinkun replied:" > ""
    < cfset returns = arguments.input.answerText & returns >
    < cfelse >
    < cfset returns = "Xinkun failed" >
    < / cfif >
    < cfreturn returns >
    < / cffunction >
    < / cfproperty >

    file servicesClientTest.cfm client Web services
    < cftry >
    <!-< component cfobject = 'response' name = "respons" >-->
    < cfset respons = structNew () >

    <!-< component cfobject = 'name', name = "tempN" >-->
    < cfset tempN = StructNew () >
    < cfset tempN.Firstname = "Xinkun" >
    < cfset tempN.Lastname = "Yuan" >

    < cfset respons.person = tempN >
    < cfset respons.answerText = "test answer" >

    "" < cfinvoke webservice = " http://localhost/CF_Webservices/myWebServices.cfc?wsdl" method = "echoAnswer" returnvariable = "outputV" >
    < name cfinvokeargument = "input" value = "#respons #" >
    < / cfinvoke >
    < cfoutput >
    #outputV #.
    < / cfoutput >
    < cfcatch >
    < cfoutput >
    #cfcatch. Message #.
    < / cfoutput >
    < / cfcatch >
    < / cftry >

    There will be an error: "could not perform web service"echoAnswer"call" when I test the servicesClientTest.cfm.
    Help me please!

    Are you using Application.cfc?

    @Dan
    The return type does not matter for this error. The error occurs when the WSDL is generated. Return types are checked when executing when the method is called and return types as you can have customized no compiling errors will occur.

    I've recreated the files exactly as you said and it works just file when I remove my application.cfc.

    See this article http://corfield.org/blog/index.cfm/do/blog.entry/entry/Applicationcfc__onRequest_and_CFCs.

  • Need help.  Slow Safari after updating the recent Mac operating system. How can we speed it up?

    Updated Mac operating system made last night and now our analyses of Safari.  What can we do to speed up browsing?

    First of all, read the 100 or so other threads asking more or less the same thing.

    Do you have? Its work to type again and again and...

    the Cap is not slow. You need to know what he's slowing down. Assume the softwrae part 3

  • Help with custom radio buttons.

    Before you go all Rube Goldburg thought that I post for a quick reality check.

    Basically, I have a test with several different configurations of coupon and I try to give users an advanced interface to select one they use. Using radio buttons seems the way to go and I inserted my custom images but I have only be able to select by clicking on the buttons. I want the user to be able to click on the image. Unless I'm missing something, I have this feeling that I have to create the four complete custom Boolean buttons with States of 4-6 and then write the code to do that alone is never on at the same time?

    Joint-

    You can change the appearance and the size of the used option button and overlay them on your chart, and then set the transparent parameter. So it looks like they're clicking on custom image but they are clicking on the invisible button on the top of the image.

    But it might be easier to use a ring of photo,

    Photo ring can be changed at runtime to add selections. Where the radio button enum cannot.

  • Help the customer to secure mobility; Untrusted Cert questions

    Hello

    I have an ASA5505 running on version 9.0 (2) and I'm trying to configure AnyConnect VPN access.

    When I use Secure Mobility Client and try to connect to the VPN, I get an alert saying:

    Security Warning: no reliable VPN server certificate!  AnyConnect cannot check the VPN server: XXX.XXX. XX. XX

    Certifiate does not match the name of the server

    Certificate comes from an untrusted source.

    Certificate is not identified for this purpose.

    I use the DynDNS service to register my IP address in the public domain, and which seems to be operational. I put the my ASA host name and domain to match the DNS entry? For example, host name xyz 123. net domain for the DNS entry xyz.123.net.

    I also use certificates self-signed with 2048 module. What is the problem? I know that it is the cause of the error "no reliable source", but I'm not sure about the other two.

    Your self-signed certificate will have incorporated any hostname and domain were in place at the time it was created. If your clients access the VPN gateway by using its DNS name, the certificate must match the DNS name to avoid the error "does not match".

    The error 'not reliable' can be fixed by importing the certificate into the store root of trust the customer CA.

    I'm not positive on the last of them. Sounds like something wrong with the actual certificate - maybe some options when it was created.

Maybe you are looking for

  • HP Pavilion - 550-259na: Intel WLAN Driver SP74163

    Tried to install this driver from the tab updates from HP Support Assistant.  Installation failed repeatedly. (Error - failed installation.)   How to perform a successful installation?

  • c / for task engine window appears while booting

    A c prompt (c /) windows for the task (taskeng.exe) engine appears whenever I start. Recently, I had deleted a conscience (client.exe) and the problem started after that.

  • Migration implementation of weblogic 10.3 to 12.1.2 get error

    I am upgarding application of weblogic 10.3 to 12.1.2. It is a Web based service application. So when you run webservice errororg.apache.xmlbeans.XmlException: org.apache.xmlbeans.XmlException: error: unexpected element: TAG_END. Is it because of web

  • the #{attachTo = ""} rule...

    What is the added value or the advantage of adding the #{attachTo = ""} rule in section dangle?

  • 8 Java embedded used?

    Hello.We participate in the challenge of the ITO with Raspberry Pi. We are using 8 for ARM embedded Java in the PI and the drafting of our code in Java 8. I was wondering if the Java 8 is supported in this challenge.Thank youTapas