<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Questions about images in Interfaces</title><link>https://community.appian.com/discussions/f/user-interface/13457/questions-about-images-in-interfaces</link><description>Hi all, I have just passed the Appian Designer test. However, much of it was theory. I am not practically trying to build applications and need some help. I have some questions on images: 
 
 1. How do I simply add an Appian Icon to my interface? 
 2</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Questions about images in Interfaces</title><link>https://community.appian.com/thread/61406?ContentTypeID=1</link><pubDate>Wed, 10 Oct 2018 07:55:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a3c24dca-c2b9-4576-8184-ed6de731bb06</guid><dc:creator>Aswini </dc:creator><description>&lt;p&gt;Hi&amp;nbsp;Eric,&lt;/p&gt;
&lt;p&gt;1) You can add Appian icons to your interface by using&amp;nbsp; a!richTextIcon( ), a!iconIndicator( ), a!iconNewsEvent( )&lt;/p&gt;
&lt;p&gt;And, you can check the&amp;nbsp;&lt;a&gt;Available Icons from this link&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/18.2/Styled_Icon_Component.html#available-icons"&gt;https://docs.appian.com/suite/help/18.2/Styled_Icon_Component.html#available-icons&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Refer this code snippet&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
 a!richTextDisplayField(
    label: &amp;quot;Icon&amp;quot;,
    value: a!richTextIcon(
      icon: &amp;quot;thumbs-o-up&amp;quot;,
      size: &amp;quot;LARGE&amp;quot;
    )
  ),
  a!imageField(
    label: &amp;quot;Icon Indicator&amp;quot;,
    images: a!documentImage(
      document: a!iconIndicator(
        icon: &amp;quot;STATUS_OK&amp;quot;
      )
    )
  ),
  a!imageField(
    label: &amp;quot;Document image&amp;quot;,
    images: a!documentImage(
      document: a!iconNewsEvent(
        icon: &amp;quot;BOOK&amp;quot;
      )
    )
  )
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;2) You can add images by using a!imageField( )&lt;/p&gt;
&lt;p&gt;We have web images, user images, and document images. You need to upload a document and place that in one constant.&lt;/p&gt;
&lt;p&gt;sample code snippet&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; a!imageField(
    label: &amp;quot;Images&amp;quot;,
    images: {
      a!webImage(
        source: &amp;quot;&amp;quot;
      ),
      a!userImage(
        user: &amp;quot;&amp;quot;
      ),
      a!documentImage(
        document: cons!CONST_IMG
      )
    }
  )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;3)&amp;nbsp;&amp;nbsp;On Billboards, You can add text through overlay Contents by using a!richTextDisplayField( )&lt;/p&gt;
&lt;p&gt;Refer to this sample code snippet&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; a!billboardLayout(
    backgroundMedia: a!documentImage(
      document: a!EXAMPLE_BILLBOARD_IMAGE()
    ),
    overlaypositionbar: &amp;quot;TOP&amp;quot;,
    overlayStyle: &amp;quot;DARK&amp;quot;,
    overlayContents: {
      a!richTextDisplayField(
        label: &amp;quot;&amp;quot;,
        labelPosition: &amp;quot;ABOVE&amp;quot;,
        value: {
          a!richTextItem(
            text: {
              &amp;quot;Appian&amp;quot;
            },
            size: &amp;quot;LARGE&amp;quot;,
            style: {
              &amp;quot;STRONG&amp;quot;,
              &amp;quot;EMPHASIS&amp;quot;
            }
          )
        }
      )
    }
  )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Hope this helpful&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Aswini&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questions about images in Interfaces</title><link>https://community.appian.com/thread/60983?ContentTypeID=1</link><pubDate>Tue, 02 Oct 2018 14:32:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e35c139e-fec3-4411-9299-948c0ca418c1</guid><dc:creator>charlesm492</dc:creator><description>&lt;p&gt;In order to add an icon, you can do something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!richTextImage(
	image: a!documentImage(
		document: a!iconIndicator(
			icon: &amp;quot;OK&amp;quot;
		)
	)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questions about images in Interfaces</title><link>https://community.appian.com/thread/60982?ContentTypeID=1</link><pubDate>Tue, 02 Oct 2018 14:30:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1cab2198-72b4-4502-b157-bd5f14065507</guid><dc:creator>andrewr865</dc:creator><description>Hi Eric,&lt;br /&gt;
&lt;br /&gt;
You can upload images and then use a!documentImage or a!imageField to use them in an interface. a!imageField can also display images from the web. For best practices I would recommend checking out the UX Design Guide under the &amp;#39;Designers&amp;#39; tab on docs.appian.com.&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questions about images in Interfaces</title><link>https://community.appian.com/thread/60977?ContentTypeID=1</link><pubDate>Tue, 02 Oct 2018 14:02:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:068de62e-213a-40b7-8aee-973eb60bca89</guid><dc:creator>hrishikeshd997</dc:creator><description>Also please refer the UX design guide  which is a collection of best practices and recommendations for creating attractive and usable interfaces. It has details around  accessibility considerations for usage of documents and icons. &lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/ux_icon_overview.html"&gt;docs.appian.com/.../ux_icon_overview.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Questions about images in Interfaces</title><link>https://community.appian.com/thread/60974?ContentTypeID=1</link><pubDate>Tue, 02 Oct 2018 13:48:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:46ebcaf3-dfb9-4842-8abf-d6a84e6a08d9</guid><dc:creator>Mike Lasutschinkow</dc:creator><description>&lt;p&gt;The steps to using a document image are as follows&lt;/p&gt;
&lt;p&gt;1. Upload an image to your appian application, will be type Document&lt;/p&gt;
&lt;p&gt;2. Create a constant of type Document and point it at your image&lt;/p&gt;
&lt;p&gt;3. On your Appian interface, use a!imageField, example code snippet follows:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;=a!imageField(
  label: &amp;quot;Label&amp;quot;,
  images: {
    a!documentImage(
      document: cons!MY_IMAGE
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As for Billboards, you can use a rich text component inside the OverlayContents of the billboard to show text&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>