Discussion Forums  >  Uncategorized

Replies: 2    Views: 292

whosthebagdaddy
I hate code!
Profile
Posts: 1
Reg: Mar 30, 2011
uk
10
03/30/11 11:37 AM (14 years ago)

How do i add several small images also can you add paypal?

Hi I am new to buzztouch. I am trying to add a series of images with info about them on a page or a few. How do i do it? All i can find is add single image which takes up the whole screen. Also if possible can paypal be added to each of the images as they are specialist handmade tools we are selling. Thanks Martin.
 
David @ buzztouch
buzztouch Evangelist
Profile
Posts: 6866
Reg: Jan 01, 2010
Monterey, CA
78,840
like
03/30/11 01:01 PM (14 years ago)
Hi in UK. The best solution will depend on what platform your're using. It's likely that you are using buzztouch v1.4. Our Early Adopter list is using buzztouch v1.5. The differences in the two are significant. 1.4 is relatively simple interface with relatively few options. Creative types with design goals like yours generally use HTML or other Custom URL screens to accomplish this type of thing. If you have HTML skills, you could create a simple, light weight screen in HTML that displayed your thumbnails or images. Then, each image could link to a payPal URL. This would not be tough for with a little HTML skill but super-tough if you've never worked with HTML. Yes, the SIngle Image screen is exactly that, one image so this won't do what you're asking about.
 
Yash Kumar
buzztouch Evangelist
Profile
Posts: 66
Reg: Jan 29, 2012
Jharkhand
660
like
04/25/12 01:19 AM (13 years ago)
Yup Got The Solution . . . I have added successfully Paypal (In-App Payment) in my buzztouch application . If you want help then contact me in skype - agarwal.yeshu Gmail - [email protected] here is the screen shot https://www.paypal-community.com/t5/image/serverpage/image-id/4133i4DFA47F25ADED08E/image-size/original?v=mpbl-1&px=-1 I have Modified BT_screen_menuListSimple By Adding This Line ............................................................. if(titleText.equalsIgnoreCase("donate")){ if (mChildHandler != null) { Message msg = mChildHandler.obtainMessage(); msg.obj ="Hello";// mMainHandler.getLooper().getThread().getName() + " says Hello"; mChildHandler.sendMessage(msg); Log.i("from:OFFHOOK", "Send a message to the child thread - " + (String)msg.obj); } Intent paypalIntent = new Intent(BT_screen_menuListSimple.this, Donate.class); startActivityForResult(paypalIntent, 1);; } if(titleText.equalsIgnoreCase("buy now")){ if (mChildHandler != null) { Message msg = mChildHandler.obtainMessage(); msg.obj ="Hello";// mMainHandler.getLooper().getThread().getName() + " says Hello"; mChildHandler.sendMessage(msg); Log.i("from:OFFHOOK", "Send a message to the child thread - " + (String)msg.obj); } Intent paymentIntent = new Intent(BT_screen_menuListSimple.this, Payment.class); startActivityForResult(paymentIntent, 2); } } }; ...................................................... After that i make a new java file namely "Payment" and "Donate" then i followed the steps which had given in Paypal Documentation
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.