PayPal button help needed

I have inserted the PayPal code as an HTML snippet in my website and the buttons look fine. When I click on them on the published site, Safari quits. Is there something I'm doing wrong?

Your problem may be with Safari. A lot of people are experiencing random crashes...
http://www.macfixit.com/article.php?story=20071221101855547
The latest security update - yesterday - is supposed to fix it....
http://www.macfixit.com/article.php?story=20071222105253236

Similar Messages

  • Simple button help needed!

    I want to make a simple round button that glows when you
    mouse over it and depresses when you click it.
    Apparently to do this I need to use Filters to make the glow
    and bevels. But Filtersonly work on movie clips, buttons and text.
    So I make a circle and convert it into a button symbol
    (Btn1). Then I make another button symbol (Btn2) and use the first
    button symbol (Btn 1) on the Up Over and Down frames of Btn 2.
    Assorted Filters are applied to Btn 1 on the Up Over and Down
    frames to get the effects I want.
    I test the button (Btn2) using Enable Simple Buttons. It
    works perfectly - glows on mouse over and depresses on click. Then
    I try Test Movie -- and the button doesn't work!!!
    Not does it work when exported as a SWF file!!!
    I watched a tutorial video that came with my Flash Pro 8
    Hands-On-Training (HOT) book and he used pretty much the same
    technique -- except he only tested his button with Enable Simple
    Buttons. I'll bet my house his didn't work with Test Movie either!
    The stupid thing, is I was just able to achieve exactly what
    I wanted very quickly using LiveMotion 2!
    What is wrong here? Why is it so impossible to create a glow
    button in Flash? Why has it been easy in Live Motion for years?
    All help appreciated!
    Thanks
    craig

    I thought the nesting button situation might be the problem
    BUT there is no other way to apply Filters to Up, Down, etc. Also,
    a freaking tutorial book described that as a valid method, but
    obviously it ain't.
    I tried using movieclips as well but basically had the same
    problem.
    I mentioned LiveMotion 2 because that ancient program can do
    easily what Flash Pro 8 seems incapable of.
    What is the logic behind not allowing Filters to be applied
    to simple graphics? It's absurd!
    There's got to be a way...

  • Multiple Buttons help needed

    Hey everyone,
    I am just beginning to learn the basics of creating web sites in flash.
    I have been following a tutorial and have it done pretty well, but they only cover one main button, and I am at the point where I need several more, but I am doing something wrong.
    The tutorial is at this page: http://www.flash-game-design.com/flash-tutorials/advancedWebsite-flash-tutorial-3.html
    You can skip to the end and download the .fla if you want.
    What I want to do specifically is to add probably 4 other main buttons that can also have drop down menus. Please be as specific as possible because the extent of my code knowledge isn't very far.
    Thanks in advance
    The code for the main page is as follows:
    menu = ["About", "Bio", "Contact"];
    this.createEmptyMovieClip("content", 1000);
    this.attachMovie("sectionBackground","mask",1001);
    mask._y = content._y=208;
    mask._x = target=68;
    content.setMask(mask);
    content._x = -1000;
    imageScrollSpeed = 5;
    xStart = 125;
    yStart = 51;
    bWidth = 79;
    bHeight = 17;
    interval = 50;
    countDown = menu.length;
    menuOpen = false;
    theTime = 0;
    buttonScrollSpeed = 2;
    for (var i = 0; i<menu.length; i++) {
    var section = content.attachMovie("section_"+menu[i], "section_"+menu[i], i+100);
    section._x = section._width*i;
    var b = this.attachMovie("subButton", "subButton"+i, countDown);
    countDown--;
    b.stop();
    b._x = xStart;
    b._y = ySwtart;
    b.interval = interval*i;
    b.target = yStart+(bHeight*i);
    b.txt = menu[i];
    b.pos = target+(i*-section._width);
    b.onPress = function() {
      target = this.pos;
      closeMenu();
      this.gotoAndStop(1);
    b.onRollOver = function() {
      this.gotoAndStop(2);
    b.onRollOut = function() {
      this.gotoAndStop(1);
    b._visible = false;
    function closeMenu() {
    for (var i = 0; i<menu.length; i++) {
      var b = this["subButton"+i];
      b._visible = false;
      b._x = xStart;
      b._y = yStart;
    menuOpen = false;
    mainButton.onPress = function() {
    if (!menuOpen) {
      theTime = getTimer();
      menuOpen = true;
      for (var i = 0; i<menu.length; i++) {
       _root.main["subButton"+i]._visible = true;
    } else {
      closeMenu();
    mainButtoncopy.onPress = function() {
    if (!menuOpen) {
      theTime = getTimer();
      menuOpen = true;
      for (var i = 0; i<menu.length; i++) {
       _root.main["subButton"+i]._visible = true;
    } else {
      closeMenu();
    function scrollButtons() {
    if (menuOpen) {
      for (var i = 0; i<menu.length; i++) {
       var b = this["subButton"+i];
       if ((theTime+b.interval)<getTimer()) {
        b._y += (b.target-b._y)/buttonScrollSpeed;
    this.onEnterFrame = function() {
    content._x += (target-content._x)/imageScrollSpeed;
    scrollButtons();

    I still really need help on this

  • AWT start/stop bundle buttons Help needed.

    Hello,
    I need help getting start/stop buttons on my AWT Class to take the action of methods from an other class. I will give anybody who can figure this out ALL OF MY Duke Dollars. (I shortend it up to the important stuff so that there isn't too much to read):
    MY PROBLEM: I need to have my Gui user interface to start up first. Then when somebody clicks the Gui class "start" button, it will call the start method of my Activator class and similiarly for the "stop" button. When I run the program, it starts up already in "start" mode. It should start up without getting the service (stop mode) and then get it once "start" is pressed" Hopefully somebody can help me figure this out.
    First, I have the following AWT class
    public class Gui extends Frame{
          Frame f;
          MyImage imagePanel;
          Button button_start;
          Button button_stop;
          Label statusBar;
          Panel btns;
        public Gui() {
            addWindowListener(new WinClosing());
            setLayout(new BorderLayout());
            imagePanel = new MyImage();
            btns = new Panel();
            button_start  = new Button("START");
            button_stop  = new Button("STOP");
            btns.add(button_start);
            btns.add(button_stop);
            add("North", btns);
            add("Center",imagePanel);       
            button_start.addActionListener(new ActionListener(){     
                public void actionPerformed( ActionEvent e ){
                    imagePanel.getImage();
            button_stop.addActionListener(new ActionListener(){     
                public void actionPerformed( ActionEvent e ){
                imagePanel.closeImage();}
            });          }Then I have the Activator class:
    public class Activator implements BundleActivator {
         public ServiceReference reference;
         public void start(BundleContext bc) {
             reference = bc.getServiceReference(GpsService.SERVICE_NAME);
             if (reference == null) {
             System.out.println("User could not get a service.");
              } else {
             AnyService anything = (AnyService) bc.getService(reference);
                    UserClass user = new UserClass();
                    user.startup(anything);
    public void stop(BundleContext bc) {
        if (reference != null) {
        bc.ungetService(reference);
        reference = null;
        System.out.println("User has released its Service.");
        } }}Then this previous class calls the startup method for this class:
    public class Driver {
            public void startup(AnyService any){
            double any  = any.getValue();
            System.out.println(any);
            Gui g = new Gui(any);
            g.setSize(714, 480);
            g.setVisible(true); 
          }}Thanks in advance!

    Hmm, it's quite hard to imagine what's going on without the code for MyImage. However, I guess you need to add an ActionListener to your two buttons. Are you sure you need two buttons, though? Presumably you can't stop until you've started and vice versa?
    private Activator activator;
    private Button startButton;
    private Button stopButton
    public Gui()
      startButton = new Button("Start");
      stopButton = new Button("Stop");
      stopButton.setEnabled(false);
      startButton.addActionListener(new ActionListener()
        public void actionPerformed(ActionEvent e)
          start();
      stopButton.addActionListener(new ActionListener()
        public void actionPerformed(ActionEvent e)
          stop();
    private synchronized void start()
      // Construct the Activator when we need it
      if(activator == null)
        activator = new Activator();
      activator.start(...); // Don't know where you get your BundleContext from!
      startButton.setEnabled(false);
      stopButton.setEnabled(true);
    private synchronized void stop()
      activator.stop(...); // Don't know where you get your BundleContext from!
      startButton.setEnabled(true);
      stopButton.setEnabled(false);
    }I'm assuming here that once the Activator is "started" is stays started until it is told to stop, ie, it doesn't stop itself after a finite amount of time.
    Hope this helps.

  • FLV custom UI buttons help needed

    Hello everyone,
    I have been searching Google for a few hours trying to find a
    good tutorial for a beginner(myself) on how to add Custom UI
    components and control and FLV file in AS 3.0. (I am running across
    plenty of AS 2.0 tutorials) The reason being I want to play an FLV
    in my SWF with only a Play/Pause button and a Mute button and do
    not want to be limited to the positions of the flvPlayback
    component skins.. I would use the flvPlayback component with the
    custom skins but the controls get in the way of my reflection (I am
    using the Pixelfumes AS 3.0 reflection class) and autohide is not
    an option for me right now.
    So what I have done so far is created my FLV
    Created my .FLA
    Within the .FLA I dragged the flvPlayback component to the
    stage and gave it an instance name of video
    I chose "none" for the skin
    I then converted this into a MC with an instance name of
    video_mc.
    I created a new layer and added a PlayPause button from the
    components panel
    I created a new layer and added a Mute button from the
    components panel
    I created a new actionscript layer and added the following
    (this is for the reflection)
    (See attached code)
    Now I am stuck. I don't know how to get the buttons to
    control the flv in AS 3 to play, pause and mute. Can someone help
    me out and point me to a AS 3 tutorial or perhaps give me the code
    I need to input?
    Thank you very much,
    Mark

    Hello everyone,
    I have been searching Google for a few hours trying to find a
    good tutorial for a beginner(myself) on how to add Custom UI
    components and control and FLV file in AS 3.0. (I am running across
    plenty of AS 2.0 tutorials) The reason being I want to play an FLV
    in my SWF with only a Play/Pause button and a Mute button and do
    not want to be limited to the positions of the flvPlayback
    component skins.. I would use the flvPlayback component with the
    custom skins but the controls get in the way of my reflection (I am
    using the Pixelfumes AS 3.0 reflection class) and autohide is not
    an option for me right now.
    So what I have done so far is created my FLV
    Created my .FLA
    Within the .FLA I dragged the flvPlayback component to the
    stage and gave it an instance name of video
    I chose "none" for the skin
    I then converted this into a MC with an instance name of
    video_mc.
    I created a new layer and added a PlayPause button from the
    components panel
    I created a new layer and added a Mute button from the
    components panel
    I created a new actionscript layer and added the following
    (this is for the reflection)
    (See attached code)
    Now I am stuck. I don't know how to get the buttons to
    control the flv in AS 3 to play, pause and mute. Can someone help
    me out and point me to a AS 3 tutorial or perhaps give me the code
    I need to input?
    Thank you very much,
    Mark

  • Flash project audio button help needed

    Hi,
    I am just learning Actionscript 3 and trying to create buttons that turn a previous sound off before they turn a new one on. Also I want a button on the front that turns all sound off if it is pressed. I have attached my files in a zip folder.
    The problem is all of my buttons which are inside movieclips just control the one sound. I have a couple more to do. I understand I will need an if statement but somehow I have to control all sounds and I don't quite get it.
    I would really love someone to point me in the right direction. I cannot find a tutorial anywhere and am going crazy.
    I look forward to someones reply,
    Jan

    Jay Robinson2 wrote:
    I've just upgraded to Logic 7.2 as I bought an intel Mac. However, for some reason the audio plays through the macs built in speaker. I've got into preferences>audio>drivers and changed the driver to 'built in line input' but it's still playing through the speaker itself. I never had this problem while i was running previous versions on my old mac
    When i boot up logic it does say something that i've never seen before which could be the cause...' Project Manager database on disk has got wrong version. Rescanning required'.
    Any ideas?
    G5 2.8 Quad Mac OS X (10.5.5)
    Hi,
    Try updating to 7.2.3
    As far as the Manager... try doing a new expanded scan, overnight. This will update the database.
    As far as the built in driver... you are selecting an INPUT.... and you expect it to change the OUTPUT??? Again, you are selecting an INPUT, while expecting the OUTPUT to change.
    The Built in drivers have only 1 output available, And in your case, that is working as expected. When you want to RECORD via either input, that is when you change the driver. You should have two choices : Mic, and Line.
    Cheers

  • Technical help needed  for button click

    Hi All,
    Im new to abap, just  now started working in my first project. I need some help and start from you.
    In my webdynpro component FPM_OIF_COMPONENT  : CNR_VIEW, Participate button  is there,
    so by default u201CCreate Responseu201C button is grayed out. By clicking the participate button, I need to enable the create response button. For this requirement, I need to create a custom class with two static methods : setvalue and getvalue methods. In that methods I need to set the variable = X, if participate button is pressed. And when loading WDDOMODIFY VIEW method, I need to check the value of the variable, if the value is X, then create response button will be enabled.
    For this logic, Can you please frame some sample code.
    Or please guide me throug some materials.
    Please help me in this regard.
    Regards,
    Rani.
    Moderator message: moved from ABAP forums.
    Edited by: Thomas Zloch on Jun 29, 2011 11:14 PM

    Hi Rani,
    I understand you are new to ABAP basically the webdynpro questions are posted in webdynpro-ABAP, Forums going forward you should adapt the same practice to get a better response.
    As you said u201CCreate Responseu201C button  is already grayed out it must be already linked to attribute of type wdy_boolean
    check the "enable property" of the button.
    Coming to your question :
    In the "OnAction" event of Participate button write a method for example  get value
    "Make the attribute" linked to create response button as abap_true hence whenever participate button is pressed it
    will make your create response button enabled.
    Regards
    Bhanu Malik

  • I have the lengthy code for a PayPal button. I tried to past it in an iWeb welcom page and all I get is the code. No button. Can you help me?

    I have the lengthy code for a PayPal button. I tried to past it in an iWeb welcome page and all I get is the code. No button. Can you help me?

    OT

  • Insert PayPal button: need PayPal authorization?...

    As I continue working on this website builder of mine, I'm
    now planning on adding an "insert PayPal
    Buy now button" function.
    It's working already. But I'm wondering if I need PayPal's
    authorization to do that.
    I notice for example that the Dreawmeaver extension by
    webAssist to insert a PayPal button inserts a
    hidden field identifying webassist as the button generator,
    for PayPal to track.
    I know there are some webassist people sometimes on this
    forum, do you know if I need to be
    "authorized" by PayPal to have this in my website builder?...
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    An Ingenious WebSite Builder:
    http://sitelander.com

    Ken Binney wrote:
    > Part of the PayPal Code must contain an identifuer for
    the particular PP
    > account which will receive the funds.
    > (Usually the account holders email address listed on the
    account.
    >
    >
    sorry I guess my question was not clear: I'm going to sell a
    website builder that enables people to
    insert a PayPal button in their site. I already know how to
    do it. My question is, do I need an
    authorization from PayPal, in order to do that.
    >
    > "(_seb_)" <[email protected]> wrote in message
    > news:f933dv$dep$[email protected]..
    >> As I continue working on this website builder of
    mine, I'm now planning on
    >> adding an "insert PayPal Buy now button" function.
    >> It's working already. But I'm wondering if I need
    PayPal's authorization
    >> to do that.
    >> I notice for example that the Dreawmeaver extension
    by webAssist to insert
    >> a PayPal button inserts a hidden field identifying
    webassist as the button
    >> generator, for PayPal to track.
    >> I know there are some webassist people sometimes on
    this forum, do you
    >> know if I need to be "authorized" by PayPal to have
    this in my website
    >> builder?...
    >>
    >> --
    >> seb ( [email protected])
    >>
    http://webtrans1.com | high-end web
    design
    >>
    >> An Ingenious WebSite Builder:
    http://sitelander.com
    >
    >
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    An Ingenious WebSite Builder:
    http://sitelander.com

  • I recently had to restore my Iphone 4s and ever since I cannot double click the home button whilst the phone is locked and change my music. The controls come up and I can adjust the volume but I cannot change the songs. Help needed please!!

    I recently had to restore my Iphone 4s and ever since I cannot double click the home button whilst the phone is locked and change my music. The controls come up and I can adjust the volume but I cannot change the songs. Help needed please!!

    Have you guys been able to activate your iphone yet? I bought an iphone 4s from eBay and it worked fine, but the previous user had left some data on it, so last night I used the "erased all content and settings" to restore it to factory setting so I can start fresh and restore my backup. But now I'm stuck at the activation screen (I get the same "the activation server is temporarily unavailable")  and can't get it to activate, even if I use my old deactivated AT&T sim card (I'm on straighttalk now).
    I might try activating it with an active AT&T sim card from my fiancee's phone when she gets home, so I'll let you know how that works outs.
    If it's true that the server is down; anyone know when it will be back up again? Thanks in advance.
    iPhone 4s iOS 5.1.1 (9B206)
    Carrier AT&T 12.0
    Modem Firmware 2.0.12

  • Help with paypal button

    Hello, how can I add the code for my paypal buttons onto my adobe muse website?
    Thanks
    Kathleen

    Use the "insert HTML" command, then paste the code into the dialog box. The button will appear on the page and you can drag it into position.

  • Do I need to use additional  mobile PayPal code to use a PayPal button on Muse Mobile Site

    Hi guys n gals
    I have designed a mockup Mobile (Phone) site using Adobe Muse (latest version) and uploaded to business catalyst see here HOME (Only on a Phone).
    Under Concert Travel Tickets, I have included some PayPal buttons using the same PayPal code as is on the existing live site (Joomla) here http://halpennytravel.com/index.php?option=com_concertandevents&view=concertandevents&Item id=63
    I get an error on the mobile phone site.
    However, when I access the PayPay button on my phone using the actual link (from the live Joomla site)  using Google or Safari - it works and I am asked for payment.
    Could it be that because the phone site is temporarily hosted on halpenny.businesscatalyst.com - that is causing the problem.
    Or is there any difference in a PayPal button and code for a Desktop Website or a Mobile Version website in Adobe Muse?
    Many Thanks

    Hi
    I am afraid, its not possible to have the page name without ".html" extension as Muse by default attach the same extension to every page you create.

  • Dynamic Paypal button for PDF fill-in form

    Hi there,
    I need help with adding a Paypal button to a PDF fill-in form. The Paypal button should feed through the Invoice Number field (a text field) and the invoice total amount (also a text field) to Paypal and add this to the Paypal cart (not ‘buy now’, but ‘add to cart’ so that more transactions can be added after that)
    I found this thread in the Adobe LiveCycle forum that does the same thing: http://forums.adobe.com/thread/339584;jsessionid=54D973B79E04C5B30F8B4BA56D95CE39.node0?ts tart=0
    I’ve tried to add this Javascript action to the button in Acrobat but it doesn’t work.
    Does anyone know what the correct Javascript should be to make this work in a PDF form?
    Help is very much appreciated
    Thanks

    Since nobody else has answered, I will say that you might try the Acrobat Scripting Forum http://forums.adobe.com/community/acrobat/acrobat_scripting

  • Paypal button in iWeb site

    any idea how to introduce a PayPal payment button into an iWeb site. Paypal give a section of HTML but i don't know how to apply it to the site i am creating for commercial use.

    Here's how I got a paypal button on my site at:
    http://www.rowan-cottage.co.uk/Site/ShopBlog/ShopBlog.html
    Go to Paypal and create your button. You'll get to a page with all the HTML needed. Copy this HTML.
    Open a text box on your page the size of the button eg, 62 px by 31 px.
    Type in the box some recognisable, unique text, eg, PaypalHTML, and change the font size of it so that's it fits in the tiny text box. You can horizontally centre the text or position it left or right, but don't vertically align it otherwise the text box changes into a png. You want it to remain a text box.
    Publish.
    Open the page in your text/HTML editor.
    Find and replace the text 'PaypalHTML' with the actual Paypal HTML.
    That's it. That way there's no alignment problems and it goes where you want it to.
    You use the same principle with banners served by other parties, scripts etc. See my links page for more examples:
    http://www.rowan-cottage.co.uk/Site/Links.html
    I hope that helps.
    Michael
    http://www.rowan-cottage.co.uk

  • Paypal button for jquery mobile app in DW CS5.5

    Using the jquery mobile app framework in DW CS5.5 and need help in using Paypal mobile.
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <input type="hidden" name="cmd" value="_xclick" />
      <input type="hidden" name="bn" value="webassist.dreamweaver.4_5_0" />
      <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="Odor Cat" />
      <input type="hidden" name="amount" value="19.50" />
      <input type="hidden" name="currency_code" value="USD" />
      <input type="hidden" name="shipping" value="5.50" />
      <input type="hidden" name="return" value="http://www.mysite.com/checkout_success.php" />
      <input type="hidden" name="cancel_return" value="http://www.mysite.com/checkout_failure.php" />
      <input type="hidden" name="undefined_quantity" value="1" />
      <input type="hidden" name="receiver_email" value="@hotmail.com" />
      <input type="hidden" name="mrb" value="R-3WH47588B4505740X" />
      <input type="hidden" name="pal" value="ANNSXSLJLYR2A" />
      <input type="hidden" name="no_shipping" value="0" />
      <input type="hidden" name="no_note" value="0" />
      <input type="submit" name="submit1" id="submit1" value="Pay with PayPal">
               </form>
    This form button will take the user to paypal for payment, but is not for mobile app.
    thanks for your help,
    -Jim Balthrop

    How do I get someone to respond to my question here?
    Let me try again.
    With DW CS5.5 when I try to insert a PayPal button into a table (which I always did with DW8) the table in Design View gets scrambled, making it unusable.  Please would one of you out there who is much more knowledgeable about DW than me try it and see if there is a solution?  If you create a new HTML page in Design view, create a table in it, place the insertion point inside one of the table cells, go to the code view and locate the insertion point there, then paste the PayPal button code at that point. Here's the code:
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="XSXQ9CUMUVLQC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    Now go back to Design view and see how it looks.  If it acts the way it does for me, the table is no longer visible, but if you go to Live View everything looks fine with the table and the button inside it.  Of course, I can't design in Live View.
    PLEASE can someone out there help me.
    Many thanks.

Maybe you are looking for