How to setup the startup messages in SMS Wall 

When you start the SMS Wall, it displays a few startup messages. To modify these messages, you need to edit the C:\Program Files\Ozeki\Ozeki SMS\SmsWALL\index.html file with a text editor, such as notepad.

The Ozeki SMS Wall startup text is stored in javascript variables. These variables can be found in the middle section of the HTML file. To display your own text  modify the following lines of the code (Figure 1.). The 'i' variables contain the startup messages. It is important not to use apostrophes (') within the messages. Apostrophes are used to mark the beginning and the end of each message. 


   var i0 ='Welcome to Ozeki SMS WALL';
   var i1 ='We hope you will enjoy the entertainment tonight.';
   var i2 ='To display a message on this wall send an SMS to the following phone number:  07834 370013';
   var i3 ='You can include HTML tags in your SMS message';
   var i4 ='You can send a smiley :), by sending : ) in an SMS message';
   var i5 ='For more information, please visit: http://www.ozeki.hu';
   var i6 ='You may send an SMS message now.';

Figure 1.


The startup phone numbers can also be modified. Your new phone numbers should be inserted instead of the +36203105366 in the 'ticker.addItem row' (Figure 2.). The first attribute is the phone number and the second is the displayed startup message. The startup messages are stored in the 'i' variables.


   ticker.addItem('+36203105366',i0);
      ticker.addItem('+36203105366',i1);
      ticker.addItem('+36203105366',i2);
      ticker.addItem('+36203105366',i3);
      ticker.addItem('+36203105366',i4);
      ticker.addItem('+36203105366',i5);
      ticker.addItem('+36203105366',i6);
      ticker.build();

Figure 2.

Alternatively you can skip the usage of variables. You can enter the messages directly into the addItem functions. Take a look at Figure 3. for an example. 


Figure 3.

More information