A Flash Developer Resource Site

Results 1 to 14 of 14

Thread: How to send MMS/SMS message?

  1. #1
    Junior Member
    Join Date
    Oct 2004
    Posts
    15

    How to send MMS/SMS message?

    According to the function variables _capMMS and _capSMS
    I know that my phone is capable sending MMS/SMS through Flash Lite (return 1)
    though i have checked Help and FL documentation
    there is nothing about this issue
    how to send MMS/SMS message through Nokia7610 using FL?

  2. #2
    Registered User
    Join Date
    Apr 2001
    Location
    Akron OH, USA
    Posts
    4,841
    I believe you use getURL() and there is a special protocol for SMS/MMS. getURL() launches an external app to send message.

  3. #3
    Junior Member
    Join Date
    Oct 2004
    Posts
    15
    But i don't have any information about the special protocol capable to send MMS/SMS message
    how to send MMS/SMS message using FL?
    where to get the infomation or documentation about this issue?

  4. #4
    Registered User
    Join Date
    Apr 2001
    Location
    Akron OH, USA
    Posts
    4,841
    use sms: or mms: protocol with getURL()

    getURL("sms:#")

    apparently you can also add a message getURL("sms:#?body=urlencoded%20message")

    use FSCommand2() to url encode your message.

    msg = "test message";
    encmsg = FSCommand2( "Escape", msg) // encode the space
    trace(encmsg);// print test%20message

    This launches the device's message app. The user will then ok and send the message. Flash cannot direclty send the message.

    This is just like flash interacting with email app on device.

  5. #5
    Junior Member
    Join Date
    Oct 2004
    Posts
    15
    well, it is a bad news to me because FL can't send message directly
    is there any substitution?

    is it possible in the next version?

  6. #6
    Registered User
    Join Date
    Apr 2001
    Location
    Akron OH, USA
    Posts
    4,841
    My guess is that FlashLite does not have permission from the OS to send sms/mms.

    Another route would be to write an application that can take data from the FSCommand2 launch function within your SWF and pass that directly to the os for sms/mms send.

    I do not know how you would accomplish this. You will probably have to contact MM directly.

  7. #7
    Denied ACCESSORIES
    Join Date
    Dec 2000
    Location
    Rio de Janeiro
    Posts
    208
    Originally posted by hp3
    My guess is that FlashLite does not have permission from the OS to send sms/mms.

    Another route would be to write an application that can take data from the FSCommand2 launch function within your SWF and pass that directly to the os for sms/mms send.

    I do not know how you would accomplish this. You will probably have to contact MM directly.
    so far the only way is to get a SSScript like php, asp, cfml, jsp whatever your flavor, and have it parse and send your message.
    In all reality the text messaging apps work in a similar fashion they are a just a shell.
    ..,,;:'""':;,,..ASTRO

  8. #8
    Denied ACCESSORIES
    Join Date
    Dec 2000
    Location
    Rio de Janeiro
    Posts
    208
    I forgot to mention but you all probably already know. Remoting (which is still not direct) allows you to get the message out as if it where a direct send ..its very fast(running methods as if they where within flash).
    ..,,;:'""':;,,..ASTRO

  9. #9
    Denied ACCESSORIES
    Join Date
    Dec 2000
    Location
    Rio de Janeiro
    Posts
    208
    but you wouldn't be able to use flash lite since there is not support yet for lite.

    .......
    ..,,;:'""':;,,..ASTRO

  10. #10
    Registered User
    Join Date
    Apr 2001
    Location
    Akron OH, USA
    Posts
    4,841
    what has to happen on the server side to send the SMS message to the phone?

    do you have to route the message through a SMS gateway?

  11. #11
    Denied ACCESSORIES
    Join Date
    Dec 2000
    Location
    Rio de Janeiro
    Posts
    208
    Originally posted by hp3
    what has to happen on the server side to send the SMS message to the phone?

    do you have to route the message through a SMS gateway?
    basically you pass the contents of what you need sent to a SS script and it sends it for you.

    In most languages you can do this in less than 10 lines of code.

    its almost identical to sending an email except you are using the users phone number and the company they use after the @ sign.
    http://www.pagemart.com/customerservice/how2send/


    apart from that it is really straight foward.

    have fun
    ..,,;:'""':;,,..ASTRO

  12. #12
    Senior Member
    Join Date
    Mar 2001
    Posts
    536
    Astro,

    your link does not work.
    Do you have any other sources?

    http://www.pagemart.com/customerservice/how2send/

  13. #13
    Banned
    Join Date
    Feb 2007
    Posts
    1

    Send cheap SMS

    Hi,
    go to http://www.free--BANNING.com

    You can send sms fast and reliable (text and unicode)

    Check this out!!!!!!

  14. #14
    FK'n Elitist Super Mod EVPohovich's Avatar
    Join Date
    Dec 2000
    Location
    About to BAN you!
    Posts
    3,023
    Do Not SPAM the Flash Kit Forums, period.

    User Account BANNED!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center