Active Topics

 


Reply
Thread Tools
cutehunk04's Avatar
Posts: 472 | Thanked: 195 times | Joined on Jun 2010 @ India, Mumbai
#721
i am tryin to post my avatar.but i cant succed instead i get black box...wat to do...whereas i can c in my root memory of rtcom messagign my avatar.png is there but in conversation box i find black box instead of my pic..??? y ???
 
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#722
Originally Posted by cutehunk04 View Post
i am tryin to post my avatar.but i cant succed instead i get black box...wat to do...whereas i can c in my root memory of rtcom messagign my avatar.png is there but in conversation box i find black box instead of my pic..??? y ???

5. cp /home/user/MyDocs/test/avatar.png /usr/share/rtcom-messaging-ui/html/avatar.png

test = your folder on N900
avatar.png = PNG picture of 64x64pix
 
cutehunk04's Avatar
Posts: 472 | Thanked: 195 times | Joined on Jun 2010 @ India, Mumbai
#723
am facing a new probs...is anyone else facing it... the slider ofthe n900 is getting a bit jamed n when i tap on the top left upper corner of menu button i feel tht the screen is mving.but somtimes not always...moreover whenever i tap on the screen the slider also moves... does anyone favin the same probs.
 
Posts: 54 | Thanked: 104 times | Joined on Jan 2010 @ Serbia
#724
Hello,

I created a simple modification to the IM chat window, I call it compact.

It features smaller fonts, removed avatars, and overall a compact and space-conscious design.

See the attached screenshot for a preview. All needed files are in the attached .zip file, just overwrite the existing ones in /usr/share/rtcom-messaging-ui/html (I'd back up the originals, just in case).

Tamas
Attached Images
 
Attached Files
File Type: zip n900compactIM.zip (2.1 KB, 332 views)
 

The Following 8 Users Say Thank You to TMarki For This Useful Post:
iceman600's Avatar
Posts: 324 | Thanked: 65 times | Joined on Jun 2008 @ FL
#725
Originally Posted by TMarki View Post
Hello,

I created a simple modification to the IM chat window, I call it compact.

It features smaller fonts, removed avatars, and overall a compact and space-conscious design.

See the attached screenshot for a preview. All needed files are in the attached .zip file, just overwrite the existing ones in /usr/share/rtcom-messaging-ui/html (I'd back up the originals, just in case).

Tamas
i just tried this ont to test the speed... but no text are appearing on FB chats if the person is on line... if my contact goes offline then the messages appears...

weird or its just me?
 
Posts: 54 | Thanked: 104 times | Joined on Jan 2010 @ Serbia
#726
I didn't notice this behavior, but I'm not using Facebook chat. I'll try it out in the next couple of days and will get back to you here...

Update: tried, and it works... It must be something else causing that behavior.

Last edited by TMarki; 2010-07-16 at 09:39.
 
kamiwey's Avatar
Posts: 121 | Thanked: 100 times | Joined on Jun 2010
#727
Originally Posted by niqbal View Post
@robe11

hmm is this what you had in mind? i DO NOT like it myself but here it is. to add your own name, edit .js file. Put your own name instead of mine

Code:
//niqbal code
    if (!item.self) {
        var name = item.name_str.split(":")[0];
        name = name.split(" ")[0];
        name_tag.textContent = name;
    }
    else{
        name_tag.textContent = "your_name_goes_here";

    }
//niqbal code
hello niqbal, i like this style, im trying to make my own but untill now i can not get it like i want and i would like you or somebody can guide me in some questions.

1,- i would like to have the bubbles like you, but i want the corner go out from a side not up cuz i have the avatar picture beside the bubble.
2.- im trying to get diferents colours for my letters and the other person letters, but untill now i can not get it.
3.- i want to know how to can use a picture or wallpaper as background and how to put also in the bubbles cuz maybe i put some, or if there is any way to can get bubbles translucid or little transparents.

this is my css for if somebody can tell me what i need to change.

Code:
 /**
 * Style rules for the MessageBuffer
 */

/**
 * the body defaults
 */
body {
  margin-left: 8px;
  margin-right: 8px;
}

/**
 * The table column formats
 */

div.Message {

  font-size: 30px;

  padding-bottom: 8px;
  clear:	  both;
  display:        block;
  padding-left: 8px;
}

div.Message:first-child {
  padding-top: 0px;
}

div.Message:last-child {
  padding-bottom: 0px;
}

div.BubbleSelf {
  
  text-shadow:grey 3px 2px 5px;

  opacity: 1;

  position: relative;
  z-index: 2;
 

  -moz-border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  
  margin-left: 0px;
  margin-right: 0px;
  vertical-align: middle;
  padding: 4px 8px;

  display: inline-block;
  width: 616px;
  min-height: 56px;
  /* overflow: hidden; this bugs mouse events. see bug #123077 */
}

div.BubbleOther {
  
  background: #282828;
  text-shadow:black 3px 2px 5px;

  opacity: 1;

  position: relative;
  z-index: 2;

  -moz-border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  
  margin-left: 70px;
  margin-right: 0px;
  vertical-align: middle;
  padding: 4px 8px;

  display: inline-block;
  width: 616px;
  min-height: 56px;
  /* overflow: hidden; this bugs mouse events. see bug #123077 */
}

div.BubbleSpacer {
  padding: 0px;
  margin: 0px;
  vertical-align: middle;
  display: table-cell;
  width: 664px;
  max-width: 664px;
  height: 52px;
}

div.BubbleSelfClicked {

  text-shadow:grey 3px 2px 5px;

  opacity: 1;  

  position: relative;
  z-index: 2;

  -moz-border-radius: 8px;
  border-style: solid;
  border-width: 1px;

  margin-left: 0px;
  margin-right: 0px;
  vertical-align: middle;
  padding: 4px 8px;

  display: inline-block;
  width: 616px;
  min-height: 56px;
 /* overflow: hidden; this bugs mouse events. see bug #123077 */
}


div.BubbleOtherClicked {
  -moz-border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  text-shadow: 0.1em 0.1em #000;

  vertical-align: middle;
  padding: 4px 8px;
  margin-left: 70px;

  display: inline-block;
  width: 616px;
  min-height: 56px;
  /* overflow: hidden; this bugs mouse events. see bug #123077 */
}

/**
 * Others' Avatars
 *
 * This needs a "drop down" shadow, but no idea if that can be done
 *Adele: please note that this drop down shadow might be subjected to change
 *I've talked about it with Vilja who's in charge of address book layout
 *and we might change it so that it's a double border colour to indicate
 *that the avatar is clickable. drop shawdow doesn't seem to work with
 *dark backgrounds unless it's a light colour drop shadow.
 *PLEASE tell me if it's difficult to implement the drop shadow.
 * Looks like drop shadow is dropped from ui specs. And bug 139130 made me
 *remove the space for it anyway.
 */

div.Avatar {
  width: 64px;
  display: inline-block;
  vertical-align: middle;
}

.MessageAvatar {
  width: 64px;
  height:64px;
  outline-style: solid;
  outline-width: 1px;
  -moz-outline-radius: 6px;
}

img.MessagePresence {
  vertical-align: middle;
  width: 16px;
  height: 16px;
}

/**
 * the Name field
 */
span.MessageNameField {
  word-wrap: break-word;
  vertical-align: middle;
}

/**
 * the Text field
 */
span.MessageText {
  text-align: left;
  vertical-align: middle;
  word-wrap: break-word;
}

span.MessageTextSelf {
  text-align: left;
  vertical-align: middle;
  color: #FFFFFF;
  word-wrap: break-word;
}

span.MessageTextOther {
  text-align: left;
  vertical-align: middle;
  color:blue;
  word-wrap: break-word;
}

/**
 * the TimeStamp default rules
 */
div.MessageRight {
  float: right;
  padding-left: 16px;
  white-space: nowrap;
  text-align: right;
  display: inline-block;
}

img.MessageBusinessCardImg {
  vertical-align: middle;
  padding-right: 4px;
}

img.MessageStatusImg {
  vertical-align: middle;
  padding-right: 8px;
}

.MessagingWidgetsSmiley {
  height: 24px;
  width: 24px;
}
well, i hope i explain it good cuz my english is not very good.
thanks in advance and kind regards.
 
Posts: 91 | Thanked: 29 times | Joined on Dec 2009 @ Milan - Italy
#728
Originally Posted by b666m View Post
mhm... first attempt:



i thought it might be a good idea to have the background-colors because you can identify faster who wrote the message.
(don't know if you're thinking the same way ^^)

but you can change the background-colors for not seeing any kind of bubbles...

any suggestions? (:

edit: oh... i forgot to edit the min-height of those messages... that's why one-liners look kind of mis-aligned... but that's quick-to-fix


Hi
I like your configuration
Can I have your files please?
 
Posts: 114 | Thanked: 51 times | Joined on Jul 2010 @ finland
#729
Originally Posted by alexporta View Post
Hi
I like your configuration
Can I have your files please?
looks like the one i would like too.
 
Posts: 92 | Thanked: 9 times | Joined on Apr 2010
#730
someone please help.. i cant see anything in my conversation window.. its just blank.. no matter what i send or what i receive.. no text no bars or avaars.. nothing..
 
Reply

Tags
bada rox, his lunchbox


 
Forum Jump


All times are GMT. The time now is 11:04.