• Broken Image Link

    By Fred Munz 2 decades ago

    I assume this is the ability to resolve the external image within the SameTime client. Right click, open image, resolves OK. What settings need to be reviewed to resolve the broken image link? Tks !!

    • Are you behind a company firewall with a proxy?

      By Carl Tyler 2 decades ago

      Most likely that is the issue. The Sametime client isn't rendering the external image because of the proxy. I don't know a way around this issue with this code stream.



      Carl

      • By Fred Munz 2 decades ago

        Yes indeed :( Any possibility of an optional parameter to provide a URL link even in Rich text clients (vs broken image), Thanks!

      • Broken image link

        By Fred Munz 2 decades ago

        Yes indeed :( Any possibility of providing an optional parameter to display the alternative URL even for rich text clients who may not be able to resolve the image? Thanks!

        • That's a pretty easy change

          By Carl Tyler 2 decades ago

          Just change the following:



          e

           .getIm()<br/>
           .sendText(<br/>
             true,<br/>
             &quot;&lt;span style=\&quot;font-size:8pt;font-family:Tahoma;color:#000000;font-style:normal;\&quot; class=\&quot;left\&quot;&gt;&quot;<br/>
               + &quot;Stock Price for &lt;b&gt;&quot;<br/>
               + messageText<br/>
          

          + "</b><BR><IMG SRC='http://stockcharts.com/c-sc/sc?s="

               + messageText<br/>
               + &quot;&amp;p=D&amp;b=5&amp;g=0&amp;i=t98037453280&amp;r=4220' height='431px'&gt;&lt;/span&gt;&quot;);<br/>
          



          to



          e

           .getIm()<br/>
           .sendText(<br/>
             true,<br/>
             &quot;&lt;span style=\&quot;font-size:8pt;font-family:Tahoma;color:#000000;font-style:normal;\&quot; class=\&quot;left\&quot;&gt;&quot;<br/>
               + &quot;Stock Price for &lt;b&gt;&quot;<br/>
               + messageText<br/>
          

          + "</b><BR><IMG SRC='http://stockcharts.com/c-sc/sc?s="

               + messageText<br/>
               + &quot;&amp;p=D&amp;b=5&amp;g=0&amp;i=t98037453280&amp;r=4220' height='431px'&gt;&quot;<br/>
               + &quot;&lt;BR&gt;&lt;A HREF='http://stockcharts.com/h-sc/ui?s=&quot;<br/>
               + messageText<br/>
               + &quot;'&gt;View More Details...&lt;/A&gt;&lt;/span&gt;&quot;);