Emotions Required

I’ve just finished off implementing Chris Toohey‘s emoticons article into the BlogSphere template. All I need now is some way of displaying the list of valid emoticons to the end users. Any suggestions ?

Oh and incase you want to try out the new emoticon support then I have implemented the following emoticons :

  • Update : I’ve taken on the challenge of showing the emoticons in the live preview and it is now active. I’ve also decided on a way to show the emoticons to the users, you can either type in the emoticons alt text or you can click ( in most browsers ) the emoticon and it will be appended to the current comments. Enjoy

    Tagged with:
    Posted in Uncategorized

    More OpenNTF Mail Users

    Another 30 users are enjoying the benefits of the OpenNTF mail template. I’ve just completed an R4.6 migration to ND6 with approximately 30 users. Before starting to convert the users mail files I made sure that the OpenNTF mail Template was on the server and signed and ready to go.

    So for the reaction to ND6 has been great. The unread folder count is the biggest feature that the users notice first. After that the forward and reply arrows are the next big winning features once they start using their mailfiles..

    I can’t wait to see what version 1.2 of the template brings…

    Tagged with:
    Posted in None

    Deleting Array Element By Number

    I was working on a small development issue today where the client wanted to be able to select a value from a multi-value list and then remove that entry and entries in the same position from a number of other multi-value lists.

    The existing code for this function was written in Formula language and it just didn’t work properly so I set about rewriting it in LotusScript. A much neater solution…

    First a small shared function…

    Function removeElement(varFromList As Variant,varTarget As Integer) As Variant Redim arrReturn(0) As Variant Dim intCount As Integer intCount=0 For element = Lbound(varFromList) To Ubound(varFromList) If element <> varTarget Then Redim Preserve arrReturn(intCount) As Variant arrReturn(intCount)=varFromList(element) intCount=intCount+1 End If Next element removeElement=arrReturn End Function

    Then to call the function it’s just a simple bit of code

    Selection = w.Prompt(4,"Select Part To Remove","Please select the part number _
    that you wish to remove from the list"
    ,"",doc.part) If Selection = "" Then Exit Sub SelectionNo = Arraygetindex(doc.Part,Selection) doc.Part = removeElement(doc.Part,SelectionNo)
    This LotusScript was converted to HTML using the ls2html routine,
    provided by Julian Robichaux at nsftools.com.
    Tagged with:
    Posted in Uncategorized

    A Bit of Fun For The Weekend

    I’m sure a lot of you have already seen this one before but for a Friday afternoon it’s a great way to pass a few hours. If you have never seen this before then be warned. This little flash game is very addictive. You will not notice the time going by. My highest score on this today is 2540. I’m sure somebody will beat it.

    Link : http://www.ugotgames.com/helicopter.htm

    Posted in None
    Archives