views:

362

answers:

1

Hi everyone ! Is it possible to put an internal hypertext link (or anchor) inside a MMS. I wan't to offer a user of a MMS service to choose between serveral links and make his way insde the MMS. Any idea how it is possible ?

Thanx.

+2  A: 

how are you composing your MMS? are you using some kind of API or gateway message compiler? or creating the message from scratch (multipart MIME)?

I believe the default mimetype in MMS is WAP/WML (possibly application/vnd.wap.mms-message ?) in which case you can construct your page as series of cards. i.e. something like this:

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml"&gt;

<wml>

<card id="part1" title="Intro">
<p>
<go href="#part3">click to go to card 3</go>
</p>
</card>

<card id="part2" title="And More">
<p>
blah blah blah
</p>
</card>

<card id="part3" title="Target Page">
<p>
blah blah blah
</p>
</card>

</wml>

w3schools have a good tutorial on wml

Colin Pickard