frash wrote: » Has anyone got the app to pull in their contacts on a Samsung Galaxy S? I've tried copying numbers to Google contacts as suggested before. Thanks
Sam Vimes wrote: » If you go here: http://cabbagetexter.com/testcheckmessages.htm and stick in your login details do you get back a number between 0 and 333?
ronano wrote: » no -1 is what i got
Mezcita wrote: » Big fan of this programme but would appreciate it if anyone has any advice. I'm using Cabbage version 15 on my ZTE Blade. The programme works fine with texts being sent to Irish numbers. However texts to numbers in the UK and abroad are not getting through. I've adjusted the way that the numbers are stored in my contacts list (from +44 etc to 0044 etc) but that has made no difference. All texts are being sent according my 02 bill. Any ideas?
eoferrall wrote: » I text my brother in england among others with no issues. silly question, but you sure its the right number?
Mezcita wrote: » Yeah deffo the right number as texts sent the normal way go through fine. May be something to do with the phone I'm using, a Orange San Francisco.
Craigels wrote: » is there a way for texts to come through directly to cabbage and reply that way or do i have to keep coming out of messages and into cabbage to reply also can i add contacts to it ?
Craigels wrote: » no i havent moved them how do i do that ?
reydshak wrote: » im a big fan of cabbage software for texting ..was using on htc g1 but bought htc wildfire a week agao ,cant fiund it on market and neither cant install manually..please help
johnny_adidas wrote: » Did this ever work for you? I asked my OH had she installed cabbage on her wildfire and she said it wouldnt work. Im assuming its the same resolution issue as with the Mobile Account Checker program (emailed that developer and never got a reply unfortunately). Never asked the OH since and only used the phone during the initial setup for her
TakeTheVeil wrote: » Is eMobile supported? Or any future plans to get it on there?
Sam Vimes wrote: » Hi, it hasn't exactly been abandoned, it's just taking time for me to take it over. Is this app using the send.php script on my server the same way ryderster's app does?
CambridgeGuy wrote: » HTC Sense's keyboard: in the other Cabbage app, the keyboard would get in the way of the text field after you'd entered two lines of text. It would not scroll.
Bomber6 wrote: » Sounds brilliant CambridgeGuy. Naturally you have to put your time into getting the app fully functional first, but if possible would you be able to look at the some of the things missing from CabbageTexter. Most importantly, the ability to use the app to send messages when using Handcent, SMSDroid etc. (i.e from the menu that pops up and allows you to set defaults) Also, if you need testers, you can put my name down. HTC Desire with the stock 2.2 rom Best of luck!
CambridgeGuy wrote: » I must admit I've not used Handcent or SMSDroid. Would it work like this? : You write your message in those apps, then hit send. And then, it'd let you pick to send either a normal text, or send via cabbage. That could probably be done with an intent filter. I'll have to look into it. First, though, I need to get this damn contact list to show up. Then it'll at least be a viable replacement for ryderstar's app.
madmoe wrote: » WOW.....that would be CLASS!!
startActivityForResult(new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS, null), REQUEST_CODE_ECM_EXIT_DIALOG);
CambridgeGuy wrote: » Despite what a few StackOverflow questions have said to the contrary, invoking my Cabbage app using an intent filter should be possible. I was looking through the source code for the stock SMS app here: http://android.git.kernel.org/?p=platform/packages/apps/Mms.git;a=blob;f=src/com/android/mms/ui/ComposeMessageActivity.java;h=e1112a2e0707baeeb67e91d66b961fa17ed14151;hb=HEAD When the send button is pressed, the following code is run: startActivityForResult(new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS, null), REQUEST_CODE_ECM_EXIT_DIALOG); Crucially, this means it's starting an Activity for sending the message, not by specifying the Activity, but by specifying an Intent. It *should* be possible to get my app to intercept this. I guess it would actually make the GUI and my sought-after contact picker redundant if I could implement the app this way.