The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
34 views

how to add emoticons to richtextbox

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace abc { ...
1
vote
2answers
50 views

check input value after post

I have test code $chatText = "Hello world :D"; $chatText = str_replace(":D","<img src='happy.jpg' width='20' height='20' alt='Big Smile' />",$chatText); echo $chatText; basically what it ...
0
votes
1answer
102 views

Removing emoticons from Instagram captions in PHP

Does anyone know to strip the emoticons from instagram captions? I subscribe to their api for feeding certain photo types and display them on my website. I tried used the command below in PHP to ...
0
votes
1answer
71 views

Converting Text To Emoticons JS

I found this script: (look down for notes) (function($){ $.fn.emotions = function(options){ $this = $(this); var opts = $.extend({}, $.fn.emotions.defaults, options); ...
0
votes
1answer
401 views

Custom Keyboard for emoticons in android

I want to use a custom keyboard of emoticons and default keyboard for my chatting application. For writing a message user can switch between these two keyboards. What is the best way to implement ...
0
votes
2answers
77 views

delete extra text and punctuation marks from the string keeping just smileys?

I am running into some problems using the regular expression. Can you please help me out? The following in the problem I am trying to solve - Input: :,... :D..:::))How are you today :P?..:(* ...
2
votes
4answers
60 views

Prevent replacements of emoticons in HTML-tags

I use a simple str_replace-function to replace some emoticons on my website… <?php $replace = array( ':)' => 'smile', ';)' => 'wink', … ); $string = 'Lorem ipsum ...
-5
votes
2answers
115 views

looking up sentence is positive or negative on the basis of emoticons c# [closed]

I am doing project in c# and I am looking for the code which can help me to check either sentence is positive or negative or vague on the basis of emoticons. For Example: I love my country :) - ...
5
votes
1answer
210 views

UITextView with emoticons editing

I am developing xmpp-client app. One of the features is sending smiles and user should have ability to edit its like usuall text. Emoticons editing in Viber App is best example of what i want to ...
147
votes
4answers
5k views

What is this smiley-with-beard expression: “<:]{%>”?

I came across the following program, which compiles without errors or even warnings: int main(){ <:]{%>; // smile! } Live example. What does the program do, and what is that ...
0
votes
3answers
110 views

Metro App Identify All Emoticons from Segoe UI Symbol

Is there a way of listing ALL emoticons from the Segoe UI Symbol font? I can get all the symbols no problem, but how do I identify which of these are emoticons?
2
votes
1answer
218 views

Windows Phone make Segoe UI symbol not appear as emoticon

I want to use the airplane Segoe UI Symbol in my C#/XAML Windows Phone 8 application. I am inserting the symbol into my page like this: <TextBlock>&#x2708;</TextBlock> The symbol ...
0
votes
0answers
66 views

How to Add Emoticons into Forum

Is there a simple code that can add emoticons into our text in forum by just using php or html or any other languages suggestions? I use wamp server.
1
vote
0answers
141 views

How can I use third party (or self created) emoticons in Xcode for custom SMS app

I am using the open source AcaniChat to make a SMS app. But the main point of the app is to have a specific set of emoticons. After customising colours etc. for the frontend. I would like to include a ...
1
vote
2answers
88 views

Refreshing the page after executing jQuery function on content

I have a jQuery function which applies some formatting to the entire HTML page. I have this function execute successfully. jQuery.fn.emoticons= function(iconfolder) { //some operations }; This ...
2
votes
0answers
140 views

android display emoticons in edittext and allow the user to delete them

My problem goes like this, I manage to displaying emoticons correctly in EditText, but if the user try to delete this emoticons in some devices the deleting instead to delete the emoticons after one ...
0
votes
0answers
42 views

Where to put emoticons selection menu (like in skype) [closed]

I need to show emoticon selection menu for several text input elements on a page. Shall I create as many menues as input elements, or shall I create one menu and apply DOM node cut'n'paste approach? ...
0
votes
0answers
44 views

Right way to draw with javascript emoticon selection element that should look like one in skype

I need the element which looks like rectangle image that consists of emoticons, say x emoticons in vertical direction and y emoticons in horizontal dimension. It could be drawn as a table or as a ...
0
votes
0answers
94 views

Implement chat emoticon by SpannableString in android: Slowly speed

I used SpannableString to implement chat emoticon and show it in a listview but it runs very slowly. Can anyone give me an idea?. Here's my code Thank you in advance and sorry for my poor English!
0
votes
1answer
929 views

Android emoticons (SMILEY ICONS)

I am develoing and application and people can chat using it. I want to use smileys (I mean smiley icons, images ). Has android sdk its own smiley icon set? and if yes how can I implement it to the ...
0
votes
1answer
232 views

Storing Spannable to a string

i'm writing a chat application, and to parse emotion icons i use code from here displaying emoticons in android my chat text is stored like "SENDER|TIME|NON_PARSED_CHAT_TEXT" in an ArrayList the ...
0
votes
0answers
52 views

Emoticon getting placed at the beginning of the comment

I am using a function to show emoticons on my personal written blog comment. function emoticons($text) { $emoticons = array( '<img src="http://www.example.com/images/smileys/smile.png" ...
9
votes
1answer
616 views

Show Custom emoticon in Android Keyboard

I have been trying for the last 3 days to show a graphical custom emoticon in the default android message view. I have successfully shown my custom emoticons in place of keys. Now the problem is that ...
0
votes
1answer
453 views

Android Send Text with custom emoticons

I have made a custom keyboard with my custom emoji icons. I have two devices and I have installed the keyboard on both of them. But when I try to send my icons to the other person through normal text, ...
0
votes
1answer
88 views

JavaScript, advanced .replace()

function changeText(getString){ var smiles_from_to = new Array(); smiles_from_to[":)"] = "ab"; smiles_from_to[":-)"] = "ab"; smiles_from_to[":("] = "ac"; smiles_from_to[":-("] = "ac"; ...
0
votes
1answer
260 views

Jquery emoticon script only finds first occurrence of smiley

I am running a pretty basic jQuery emoticon script to change smiley text into images. This works great but only appears to work on the first occurrence of a smily. so if i write 2 x smileys that are ...
0
votes
0answers
118 views

Sending emoticons from iPhone through external Emoji keyboard to PHP but received garbage value(like     )

I have entered some emoticons from external emoji keyboard in my textView, i have sent textview's text to server by php webservice. Now in other page i am retrieving these text value, but i am geting ...
3
votes
1answer
1k views

Java string replaceAll()

I've been wondering if for example: JTextPane chatTextArea = new JTextPane(); s.replaceAll(":\\)", emoticon()); public String emoticon(){ chatTextArea.insertIcon(new ...
0
votes
3answers
75 views

Split a String by another string

I'm wondering about how I can do something like this: String[] emoticon; emoticon=e.split(":)"); Is it possible to be done with split(); or is there another way around?
0
votes
1answer
288 views

Showing custom emoticon in UITextField

Can I show custom emoticon inside UItextFiled as iPhone's keyboard emoticons are getting displayed. I checked the document but didn't found any method.
0
votes
2answers
78 views

Negative lookbehinds in ActionScript

Im trying to write a Regex that will match most common emoticons, but not if they are inside a link. My emoticons are :P =P :-P =-P :) :-) =) =-) :/ =/ :-/ =-/ :o =o :-o =-o :( :-( =( =-( :D :d :-D ...
1
vote
0answers
233 views

Having issue with smiley's integration in android

In my app i need to integrate commenting functionality which includes smiley.And i am successfully showing the smiley's in android edit text box.But i am struck at... after writing the complete ...
2
votes
2answers
287 views

Character code in NSString to unicode character

I have an NSString with a charactercode like this: 0x1F514 . I want to take this NSString and add it to another NSString, but not with the literal value of it, but the icon hidden behind it. In this ...
0
votes
1answer
2k views

How to enable Emoji 2 from iOS6 in iOS5 devices

I've made an Emoji enabling App once, it was incredibly easy: Get the dictionary from /User/Library/Preferences/com.apple.Preferences.plist, and set the BOOL value of the key: ...
5
votes
9answers
177 views

How to add spaces around a substring if spaces aren't already there yet?

Example input string: test:)test:)test:) :) test:p test Wanted output string: test :) test :) test :) :) test :p test As you can see in the example above, I want to parse the string and produce an ...
1
vote
1answer
159 views

can i use skype or facebook emoticons in my android app?

I downloaded their emoticons and it is a silly question maybe but can I use them in my application for sending SMS messages. Or I need some license for that? What emoticons I can use without license? ...
2
votes
1answer
562 views

jQuery - (Emoticons) Handle 'img' click event and insert 'alt' attribute into textbox

I'm creating a web chat page using PHP and jQuery, and I am adding an emoticon feature, which everything is done except for the jQuery portion. My problem is I'm not getting a click event when I click ...
1
vote
1answer
344 views

How to avoid Twitter emoticon character while processing string in Java

I'm working on processing Tweets from Twitter and storing them in a database (MySQL). I have my process running perfectly but sometimes I get an error like this one: 2012-08-31 08:11:23,303 WARN ...
0
votes
1answer
194 views

PHP Parse Pidgin Emoticon Pack

I have this big list of emoticons for the pack that I have downloaded, thankfully they came with the emote codes so I didn't have to make all those (like smile is :) and :-)). Here is an example chunk ...
0
votes
1answer
145 views

Can I insert a smiley animation dependent on value on an HTML page?

Is there a way to insert a smiley animation on an HTML page, which's smile depends on a value? I have some values between -1 and 1 from a Naive Bayes classifier, which correspond to negative and ...
0
votes
0answers
62 views

query ES with emoticons

Good day everyone! At the moment I am started to work with Elasticsearch and have some questions. Is there anyway to query Elasticsearch with emoticons?
0
votes
2answers
695 views

Emoticons for iOS iPhones

I want to creat original emoticons for iphone iOS. What size and pixels do They need to be? I cannot find the answer to this question anywhere. Please help. Thanks =)
0
votes
1answer
274 views

Rplace emoticons from a String,to String using java [closed]

How to Remove the Emoticons from the String My simple code is.. public static void main(String[] args) throws SQLException { String str="My nam is ur -D "; getRefineCode(str); } private ...
1
vote
1answer
494 views

setInterval is not working correctly

What this is all about I am currently working on a script for emoticons on the Campfire Chat Service since they don't have an emoticon feature. Right now it is running the emoticon really slowly ...
0
votes
1answer
33 views

Is it possible to detect when a new element is detected

I'm working on this script that have emoticons work on the Campfire Chat. I want to know if it is possible to detect when there is a change to an element (A DIV). For example if I append something to ...
0
votes
0answers
142 views

Good commercial emoticon sets to buy [closed]

Does anybody knows a good commercial (I am willed to pay for it) set of standard emoticons? When I search I only find free crap which may bring the website owner into trouble laterwards (unlikely but ...
1
vote
3answers
253 views

How to match a emoticon in sentence with regular expressions

I'm using Python to process Weibo (a twitter-like service in China) sentences. There are some emoticons in the sentences, whose corresponding unicode are \ue317 etc. To process the sentence, I need ...
2
votes
0answers
282 views

Iphone emoticons like Line app

Im trying to create chat interface like Line app where you can write emoticons. Ive tried some differents methods : A UIWebView for cell: I think thats how theyre doing it but dont know how are ...
1
vote
3answers
3k views

How to display emoji char in HTML

I saved the face "savouring delicious food emoji" to database, and read it in php json_encode which show "uD83D\uDE0B"。 but usually we use one <img /> label to replace it . however,usually I ...
3
votes
1answer
470 views

Emoticons from iPhone to Python/Django

I'm trying to save comments from an iPhone app that may and nowadays most likely will include emoticons. No matter what I do, I can't save the emoticons to the MySQL database ... Constant Unicode ...

1 2