Menu

Main Menu
Talk Get Daily Search

Member's Online

    User Name
    Password

    Customize N900 Conversations

    Reply
    Page 86 of 110 | Prev | 76   84     85   86   87     88   96 | Next | Last
    5spdvl | # 851 | 2011-03-03, 15:04 | Report

    Originally Posted by b666m View Post
    the css file
    (just look a few pages back - there is the discussion about this topic ^^)



    yep.
    just edit the .js-file.

    Code:
    if (item.name_str != "") {
            name_tag.textContent = item.name_str;
        }
    to
    Code:
    if (item.name_str != "") {
            name_tag.textContent = item.name_str;
        }
    
    if (item.name_str != "" && item.self) {
            name_tag.textContent = "b666m";
        }
    (replace b666m for your desired nick ^^)
    haven't tested it but it should work
    This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?

    Perhaps:

    if (item.name_str != "") {
    name_tag.textContent = item.name_str;
    }

    if (item.name_str != "" && item.Other) {
    name_tag.textContent = "";

    Or maybe sender?

    Edit | Forward | Quote | Quick Reply | Thanks

     
    iscio | # 852 | 2011-03-03, 15:46 | Report

    so is it possibile to change "You" in "My name"???

    Edit | Forward | Quote | Quick Reply | Thanks

     
    niqbal | # 853 | 2011-03-03, 16:52 | Report

    Originally Posted by 5spdvl View Post
    This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?

    Perhaps:

    if (item.name_str != "") {
    name_tag.textContent = item.name_str;
    }

    if (item.name_str != "" && item.Other) {
    name_tag.textContent = "";

    Or maybe sender?
    if you want to remove sender's name, just put an empty string

    Code:
    if (item.name_str != "") {
       var name = item.name_str;
       name = "";
       name_tag.textContent = name;
    }
    if you want to remove both names, thats simple. at the end of this message function, add

    Code:
    name_tag.textContent = "";

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to niqbal For This Useful Post:
    5spdvl

     
    niqbal | # 854 | 2011-03-03, 20:11 | Report

    Re-uploading Iphone influenced SMS window

    basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
    • only first name of sender is shown
    • width of bubble is dependent on the message
    • even gap between messages

    i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx

    Edit | Forward | Quote | Quick Reply | Thanks
    Attached Images
     
    Attached Files
    File Type: zip conv-ui-iphone.zip (9.6 KB, 259 views)

    Last edited by niqbal; 2011-03-04 at 08:01.
    The Following 5 Users Say Thank You to niqbal For This Useful Post:
    cutehunk04, F2thaK, maemo55, thej80, Tiboric

     
    godofwar424 | # 855 | 2011-03-03, 22:12 | Report

    I have updated my previous theme with some bug fixes and also some other options!

    Check the updates here


    Please check it out and let me know what you think

    I have updated the wiki for this theme.

    I am aware of the bug where it doesn't scroll to the bottom after sending a message, but I am not sure how to solve this issue. If someone tells me how to I will implement it into my themes

    Edit | Forward | Quote | Quick Reply | Thanks

     
    5spdvl | # 856 | 2011-03-04, 00:03 | Report

    So:

    if (item.name_str != "") {
    var name = item.name_str;
    name = "";
    name_tag.textContent = name;
    name_tag.textContent = "";
    }

    ...as the entire function to remove both names?

    Edit: works nicely, thanks mate.

    Edit | Forward | Quote | Quick Reply | Thanks

    Last edited by 5spdvl; 2011-03-04 at 00:19.

     
    thej80 | # 857 | 2011-03-04, 06:22 | Report

    Originally Posted by niqbal View Post
    Re-uploading Iphone influenced SMS window

    basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
    • your own name is omitted
    • only first name of sender is shown
    • width of bubble is dependent on the message
    • alternate gap is given between messages

    i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx
    hi, for me this theme shows the last name of the sender, maybe because i have addressbook set to show last name first?

    edit. yes it is because of the addressbook setting to show last name first.

    what file do i have to edit to get the backround black? i know this is an iphone style conversation mod, but i still prefer a darker backround to fit for the rest of ui.

    thanks for the mods

    Edit | Forward | Quote | Quick Reply | Thanks

    Last edited by thej80; 2011-03-04 at 07:09.

     
    niqbal | # 858 | 2011-03-04, 06:31 | Report

    Originally Posted by thej80 View Post
    hi, for me this theme shows the last name of the sender, maybe because i have addressbook set to show last name first?

    what file do i have to edit to get the backround black? i know this is an iphone style conversation mod, but i still prefer a darker backround to fit for the rest of ui.

    thanks for the mods
    edit .html file.

    Code:
    <html>
    <head>
    <body bgcolor="#F0F0F0"
    change that value to "black", thats it

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to niqbal For This Useful Post:
    thej80

     
    iscio | # 859 | 2011-03-04, 08:01 | Report

    Originally Posted by godofwar424 View Post
    I have updated my previous theme with some bug fixes and also some other options!

    Check the updates here


    Please check it out and let me know what you think

    I have updated the wiki for this theme.

    I am aware of the bug where it doesn't scroll to the bottom after sending a message, but I am not sure how to solve this issue. If someone tells me how to I will implement it into my themes


    wow, good work...is it possible to you adjust also the theme that I use? post #831

    Edit | Forward | Quote | Quick Reply | Thanks

     
    ejasmudar | # 860 | 2011-03-04, 08:30 | Report

    I have started a thread for the scripts that i have been working on:http://talk.maemo.org/showthread.php?p=960308

    Right now it can install themes, restore/backup themes, add portrait mode support (not guaranteed for custom themes) and change own name in SMS window.

    I am also planning to add features for changing the colours, etc

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Page 86 of 110 | Prev | 76   84     85   86   87     88   96 | Next | Last
vBulletin® Version 3.8.8
Normal Logout