- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2014 06:06 AM
HI All,
I want to display image for OIP users like we have for VIP users in SNOW.
I checked the script "Highlight VIP Caller" and the url of the image given is "images\icon\vip.gif".(pls tell me from where i will find vip.gif)
I have uploaded the new image oip.gif in Images in SNOW. but donot know what should be the url for background image.
Please help how to set the background image.
Solved! Go to Solution.
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2014 04:47 AM
Preety,
I have tested your requirement at my end here in Demo instance and found that your are using the wrong url, for your custom image you need to just past the name of your image in the url tab as
"url(img/TST.jpgx)" where you need to replace TST.jpgx with your own image.
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2014 06:10 AM
Anytime you upload an image into SN's (via the images module), you it should give you a URL that you can use to access the image. If you don't remember what it was, go to the images module, open the image record, and it should be there toward the bottom of the form.
If this answer is helpful/answered, please mark it is such to help those who are asking the same question in the future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2014 06:33 AM
Hi Jacob,
I am getting the below reference for image :
Use the following code for displaying in content blocks: <img src="3off.pngx" width="41" height="41"/>
Please tell me , this is the URL you are talking about ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2014 06:44 AM
Hi Preety,
As per your requirement, you can use the following syntax to show your own uploaded image through script:
<img src="Very Satisfied.png" width="65" height="40" style="margin-left:42px;"/>
where need to replace Very Satisfied.png with image you have uploaded in the system.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2014 06:51 AM
Hi Rajeev,
If I use <img src="Very Satisfied.png" width="65" height="40" style="margin-left:42px;"/> in place of URL its showing syntax error .
callerLabel.setStyle({backgroundImage: "url(images/icons/vip.gif)", backgroundRepeat: "no-repeat", backgroundPosition: "95% 55%"
Thanks