<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Wed, 05 Nov 2014 19:35:29 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-05T19:35:29Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Trying to use Liquid to filter a Webapp by another Webapps data</title>
      <link>https://forums.adobe.com/thread/1627848</link>
      <description>&lt;!-- [DocumentBodyStart:35b3f032-f9bd-4af5-9e28-214157a27237] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Here's the scenario.&amp;nbsp; I have a customer who wants me to build a very simple task system for their employees, where the employer can assign HR related tasks to an employee.&amp;nbsp; The employee would login and see only the tasks assigned to them.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a Webapp "Intranet - Employee" and another Webapp "Intranet - Employee Tasks".&amp;nbsp; In the "Intranet - Employee Tasks" Webapp, I have a field with the datasource linked to the Webapp "Intranet - Employee".&amp;nbsp; I have an Secure Zone called "Intranet".&amp;nbsp; I have a page in the Secure Zone titled "Intranet - "Employee".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;On the page "Intranet - Employee", I have the following module using Liquid:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{module_webapps id="23727" filter="all" render="collection"}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In the "Intranet - Employee Tasks" Webapp layout, I have the following:&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="intranet-task-list-item"&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{% for item in items %} &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="name"&amp;gt;{{item.name}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="intro"&amp;gt;{{item.['task intro']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="type"&amp;gt;{{item.['task type']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{%endfor%}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This works fine.&amp;nbsp;&amp;nbsp; It shows all of the tasks, not just the ones assigned to the logged in employee. Now I want to filter by the user that's logged in.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This module call gets the Item Id I want to filter by:&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{module_webappscustomer id="23725" filter="all" useBackupTemplate="true"}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;In the "Intranet - Employee" Webapp backup template, I have one tag: {tag_itemid}.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, how do I filter the second Webapp "Intranet - Employee Tasks" by the Item Id.&amp;nbsp; Here's how I started, but it's not working:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;On the page "Intranet - Employee":&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{module_webapps id="23727" filter="all" render="collection" emplid="{{module_webappscustomer id="23725" filter="all" useBackupTemplate="true"}}"}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In the "Intranet - Employee Tasks" Webapp layout, I have the following:&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="intranet-task-list-item"&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{% for item in items %} {%if {{item.['employee_id']}} == this.params.emplid %}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="name"&amp;gt;{{item.name}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="intro"&amp;gt;{{item.['task intro']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="type"&amp;gt;{{item.['task type']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="employee"&amp;gt;{{item.['employee']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="employee id"&amp;gt;{{item.['employee_id']}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;div class="testing for id"&amp;gt;testingfor: {{params.emplid}}&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;{%endif %} {%endfor%}&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #0000ff;"&gt;&lt;strong&gt;&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is something like this possible?&amp;nbsp; I've very new to Liquid, so maybe I'm missing something big.&amp;nbsp; If I take out the if statement, I can see that the parameter gets passed to the layout.&amp;nbsp;&amp;nbsp; Also, if I pass a text variable, instead of using the module_webappscustomer ..., the if statement works.&amp;nbsp; But, I cannot get them both the work together.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Do I need to assign a variable first?&amp;nbsp; Is there a better way to link the two Webapps?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance for the help!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:35b3f032-f9bd-4af5-9e28-214157a27237] --&gt;&lt;img src='/beacon?t=1415881882905' /&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapps</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">liquid</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">liquid_markup</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webappsliquid</category>
      <pubDate>Wed, 05 Nov 2014 19:35:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1627848</guid>
      <dc:date>2014-11-05T19:35:29Z</dc:date>
      <clearspace:dateToText>6 days 21 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I use module_webappsmap and specify the map width as 100% to take the full screen?</title>
      <link>https://forums.adobe.com/thread/1585949</link>
      <description>&lt;!-- [DocumentBodyStart:3b8fa9fd-0e77-4f93-93ff-96206cdd0696] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can I use {module_webappsmap} and specify the map width as 100% to take the full screen?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;{module_webappsmap,22901,a,,AIzaSyDsnpsWHCh2cCONQ4tO_UUgJf9fB2N81wg,100%,400,-1}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3b8fa9fd-0e77-4f93-93ff-96206cdd0696] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">google map</category>
      <pubDate>Fri, 26 Sep 2014 13:21:17 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1585949</guid>
      <dc:date>2014-09-26T13:21:17Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can i use WebApps to build a Google map with polygon territories instead of points (pins)?</title>
      <link>https://forums.adobe.com/thread/1577469</link>
      <description>&lt;!-- [DocumentBodyStart:663c8093-219f-465b-be72-5f365dcc75c1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I built a map with Google Maps Engine Pro - &lt;a class="jive-link-external-small" href="http://www.jmbcompanies.com/Services/Mitigation/map" rel="nofollow"&gt;http://www.jmbcompanies.com/Services/Mitigation/map&lt;/a&gt;. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It showcases territories using a Google map polygon shape.&amp;nbsp; I wrote custom KML to create it.&amp;nbsp; However, with Google Maps Engine pro you cannot create custom hyperlinks.&amp;nbsp; It will link a URL that you put in the data, but you cannot name it or target the parent window, so therefore it opens a new tab for each click to more details.&amp;nbsp; I really want it to open the WebApp detail page for that item within the same window.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So, is there a way to use the BC integrated Google maps technology and show polygons instead of points on the map? I've used {module_webappsmap,20754,a} to place individual locations on a map, but what about territories or polygon areas?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm sure that I can create a WebApp to generate the KML for each placeholder.&amp;nbsp; But how do I turn that into a map?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;THANKS!!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:663c8093-219f-465b-be72-5f365dcc75c1] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapps</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">google maps</category>
      <pubDate>Wed, 17 Sep 2014 13:07:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1577469</guid>
      <dc:date>2014-09-17T13:07:33Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>What code editor do you use with Business Catalyst?</title>
      <link>https://forums.adobe.com/thread/1565556</link>
      <description>&lt;!-- [DocumentBodyStart:85de6627-e294-4987-990d-cdda8a4b9b63] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am having many issues with Dreamweaver &amp;amp; BC:&lt;/p&gt;&lt;p&gt;1 - It keeps thinking that I have the trial version, even though I have a license to Creative Cloud and Creative Cloud shows that I have it.&lt;/p&gt;&lt;p&gt;2 - When I try to use the integrated Business Catalyst palette, it logs me out of the admin console for my BC site. ANNOYING.&lt;/p&gt;&lt;p&gt;3 - Most importantly, it doesn't put the files to the server successfully, consistently.&amp;nbsp; I have change my file and re-put the file 5-6 times before it works.&amp;nbsp; VERY FRUSTRATING!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After an hour on the phone with Dreamweaver customer support, the issue is still not resolved.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So, now I ask you all, what code editor are you using in conjunction with Business Catalyst while implementing your Business Catalyst websites?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:85de6627-e294-4987-990d-cdda8a4b9b63] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">dreamweaver</category>
      <pubDate>Thu, 04 Sep 2014 14:59:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1565556</guid>
      <dc:date>2014-09-04T14:59:34Z</dc:date>
      <clearspace:dateToText>2 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How does Payment Method COD work?  Can I use it for donors who will mail in their payment?</title>
      <link>https://forums.adobe.com/thread/1534687</link>
      <description>&lt;!-- [DocumentBodyStart:409e23e6-5c88-40ec-8377-f7a51fb47fea] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We are hosting an event and are presenting sponsorship opportunities with webforms.&amp;nbsp; We want to offer the option of online payment or mail in your payment.&amp;nbsp; Can I do this within the same webform?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:409e23e6-5c88-40ec-8377-f7a51fb47fea] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">ecommerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webform</category>
      <pubDate>Tue, 29 Jul 2014 18:02:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1534687</guid>
      <dc:date>2014-07-29T18:02:23Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Detailed webform - Session timing out - Is there a way to warn the user?</title>
      <link>https://forums.adobe.com/thread/1530282</link>
      <description>&lt;!-- [DocumentBodyStart:6cae8f2a-1b15-431d-a63b-9614896dce60] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a complex webform that takes a bit of time to complete, mainly because it requests proof of professional licenses and the users have to stop what they are doing on have to look for their license in a PDF format.&amp;nbsp; In several instances, the user is completing the form, but it's not saving.&amp;nbsp; I believe it's because the session has timed out.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The user is not warned and doesn't get an error message.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a way to ask the user to save when the session is close to timing out?&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Or, is there a way to autosave a webform?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p&gt;Shannon&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6cae8f2a-1b15-431d-a63b-9614896dce60] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webform</category>
      <pubDate>Thu, 24 Jul 2014 15:04:59 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1530282</guid>
      <dc:date>2014-07-24T15:04:59Z</dc:date>
      <clearspace:dateToText>3 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I create visitor-submitted WebApp that can also be edited by a small group of secured users through a user page rather than the admin interface?</title>
      <link>https://forums.adobe.com/thread/1518407</link>
      <description>&lt;!-- [DocumentBodyStart:c0a7a6f0-33bc-414b-961b-2235a85ef12a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a visitor submitted webapp.&amp;nbsp; When the user hits submit, it also calls Javascript that generates data for a few hidden fields.&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also want a small group of users (5) to also be able to edit each item if necessary.&amp;nbsp; When we edit the WebApp item with the admin interface the Javascript won't run.&amp;nbsp; Can I create a website page, in a secure zone, that will allow the small group to edit the items?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c0a7a6f0-33bc-414b-961b-2235a85ef12a] --&gt;</description>
      <pubDate>Wed, 09 Jul 2014 21:18:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1518407</guid>
      <dc:date>2014-07-09T21:18:57Z</dc:date>
      <clearspace:dateToText>4 months 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Has anyone created an animated loading image for a WebApp?</title>
      <link>https://forums.adobe.com/thread/1518406</link>
      <description>&lt;!-- [DocumentBodyStart:0c188fcf-fcdb-44f3-a506-b0a2a51b7ebe] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a complex WebApp that takes a few seconds to load.&amp;nbsp; Does anyone have an example of a loading image for WebApps?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0c188fcf-fcdb-44f3-a506-b0a2a51b7ebe] --&gt;</description>
      <pubDate>Wed, 09 Jul 2014 21:12:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1518406</guid>
      <dc:date>2014-07-09T21:12:01Z</dc:date>
      <clearspace:dateToText>4 months 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>What does "Module Limit Reached" mean?</title>
      <link>https://forums.adobe.com/thread/1482387</link>
      <description>&lt;!-- [DocumentBodyStart:ee0ce2ab-ba00-4878-ab3d-caca7e31c84e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Trying to do a JSON call for a custom WebApp query, and getting a message Module Limit Reached.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ee0ce2ab-ba00-4878-ab3d-caca7e31c84e] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">json</category>
      <pubDate>Sun, 25 May 2014 20:11:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1482387</guid>
      <dc:date>2014-05-25T20:11:00Z</dc:date>
      <clearspace:dateToText>4 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I use an alternate Edit template for a WebApp?</title>
      <link>https://forums.adobe.com/thread/1482061</link>
      <description>&lt;!-- [DocumentBodyStart:d2780d77-4ba4-4bb2-b6c1-905fa6a79561] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can I use an alternate (backup) Edit template for a WebApp?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d2780d77-4ba4-4bb2-b6c1-905fa6a79561] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapps</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">customer_edit_webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapp_layouts</category>
      <pubDate>Sun, 25 May 2014 00:48:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1482061</guid>
      <dc:date>2014-05-25T00:48:48Z</dc:date>
      <clearspace:dateToText>5 months 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How can I add a loading image (animated gif) while my widget loads?</title>
      <link>https://forums.adobe.com/thread/1483846</link>
      <description>&lt;!-- [DocumentBodyStart:a65b7574-edf2-403e-96bf-685b331af172] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The iframe takes a while to load and my client's customers are getting confused and leave the page before it loads.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a65b7574-edf2-403e-96bf-685b331af172] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">echosign</category>
      <pubDate>Wed, 28 May 2014 00:13:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1483846</guid>
      <dc:date>2014-05-28T00:13:49Z</dc:date>
      <clearspace:dateToText>5 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I search for a WebApp Item by it's unique ID number?</title>
      <link>https://forums.adobe.com/thread/1482383</link>
      <description>&lt;!-- [DocumentBodyStart:13c30dc1-2112-4cec-bcc3-5a412363aff1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can I search for a WebApp Item by it's unique ID number in a WebApp search form?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:13c30dc1-2112-4cec-bcc3-5a412363aff1] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapp_results</category>
      <pubDate>Sun, 25 May 2014 19:06:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1482383</guid>
      <dc:date>2014-05-25T19:06:23Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Custom email us webform for each staff member?</title>
      <link>https://forums.adobe.com/thread/1448139</link>
      <description>&lt;!-- [DocumentBodyStart:e9b364d5-8592-4e66-8a5e-2f09e2f8d6ec] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;My client is having trouble with the usual "mailto:..." links to email&amp;nbsp; their staff and want email webforms for each contact.&amp;nbsp; Is there a way to&amp;nbsp; do this without creating a webform for each staff member?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e9b364d5-8592-4e66-8a5e-2f09e2f8d6ec] --&gt;</description>
      <pubDate>Fri, 11 Apr 2014 13:41:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1448139</guid>
      <dc:date>2014-04-11T13:41:41Z</dc:date>
      <clearspace:dateToText>7 months 3 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How do I style Ecommerce Error Message?</title>
      <link>https://forums.adobe.com/thread/1425653</link>
      <description>&lt;!-- [DocumentBodyStart:9a4f16bc-242c-4f4d-9cdf-41851b441c6c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6199774-601371/ErrorMessage-Unstyled.png"&gt;&lt;img alt="ErrorMessage-Unstyled.png" class="jive-image jive-image-thumbnail" height="285" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6199774-601371/450-285/ErrorMessage-Unstyled.png" width="450"/&gt;&lt;/a&gt;How do I style the shown error message?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9a4f16bc-242c-4f4d-9cdf-41851b441c6c] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">error</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">message</category>
      <pubDate>Tue, 11 Mar 2014 16:54:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1425653</guid>
      <dc:date>2014-03-11T16:54:10Z</dc:date>
      <clearspace:dateToText>8 months 3 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I auto submit a WebApp Search form (with javascript) so the results show up automatically?</title>
      <link>https://forums.adobe.com/thread/1417756</link>
      <description>&lt;!-- [DocumentBodyStart:d1e7bad1-0293-4e8c-9164-d11ed0586f0c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can I automatically submit a WebApp Search form (with javascript) so the results show up automatically?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d1e7bad1-0293-4e8c-9164-d11ed0586f0c] --&gt;</description>
      <pubDate>Fri, 28 Feb 2014 17:32:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1417756</guid>
      <dc:date>2014-02-28T17:32:19Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is there a way to programmatically assign the "Submitted By" id number to a WebApp Item?</title>
      <link>https://forums.adobe.com/thread/1416119</link>
      <description>&lt;!-- [DocumentBodyStart:2945fdbe-18a2-48ca-84bb-449b9a3ffd12] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have two web apps that I want to link to one another.&amp;nbsp; Can I programmatically assign the submitted_by value to it.&amp;nbsp; Is this possible?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2945fdbe-18a2-48ca-84bb-449b9a3ffd12] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapps</category>
      <pubDate>Wed, 26 Feb 2014 19:41:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1416119</guid>
      <dc:date>2014-02-26T19:41:31Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Webapp (requires payment) creating multiple/duplicate products</title>
      <link>https://forums.adobe.com/thread/1374593</link>
      <description>&lt;!-- [DocumentBodyStart:a87a6d4a-b927-409e-b9d0-299f5abf8e0b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Each time someone submits a new Webapp that requires payment, a new Ecommerce product is created.&amp;nbsp; Is there a way to have the Webapp use the same product?&amp;nbsp; I also have an online shop, and it's making the product management overwhelming.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a87a6d4a-b927-409e-b9d0-299f5abf8e0b] --&gt;</description>
      <pubDate>Wed, 08 Jan 2014 17:05:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1374593</guid>
      <dc:date>2014-01-08T17:05:01Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>{tag_itemurl_nolink} is rendering "undefined" in WebApp Listing Page</title>
      <link>https://forums.adobe.com/thread/1411394</link>
      <description>&lt;!-- [DocumentBodyStart:71eab897-ed6e-47ea-87ca-8b4b5f7cd981] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;For one of my sites, &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.louisianacrafts.org" rel="nofollow" target="_blank"&gt;http://www.louisianacrafts.org&lt;/a&gt;&lt;span&gt;, the tag {tag_itemurl_nolink} is rendering "undefined" on the home page.&amp;nbsp; It's being driven by a WebApp.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The tag {tag_button,Your Text} doesn't work either.&amp;nbsp; Undefined also.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas?&amp;nbsp; User error?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Shannon&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:71eab897-ed6e-47ea-87ca-8b4b5f7cd981] --&gt;</description>
      <pubDate>Thu, 20 Feb 2014 15:54:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1411394</guid>
      <dc:date>2014-02-20T15:54:23Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is there a difference between digital signature or electronic signature? Can BC do it?</title>
      <link>https://forums.adobe.com/thread/1405805</link>
      <description>&lt;!-- [DocumentBodyStart:7b71dea9-7cfe-4d34-ad07-35fab27c525d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can anyone point me to an example application of a digital or electronic signature?&amp;nbsp; Does using the term digital or electronic signature require additional technology?&amp;nbsp; Can it be done in BC?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7b71dea9-7cfe-4d34-ad07-35fab27c525d] --&gt;</description>
      <pubDate>Thu, 13 Feb 2014 16:10:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1405805</guid>
      <dc:date>2014-02-13T16:10:49Z</dc:date>
      <clearspace:dateToText>8 months 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I view a customer's password?</title>
      <link>https://forums.adobe.com/thread/1405847</link>
      <description>&lt;!-- [DocumentBodyStart:ea471d8b-5311-4b28-ae36-7123a2532c17] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a client with a new membership type website with a secure zone.&amp;nbsp; We've had several folks get the "Secure Zone Access Denied" message.&amp;nbsp; My client is very sure that the customer is using the correct password, but I have my doubts.&amp;nbsp; Is there anyway to see the password anymore? Is there a setting I can change to be able to see them? (I think they might be using their old passwords)&amp;nbsp; They claim to have reset the pasdsord.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My client doesn't want me to talk directly to the members, so supporting them has been a little difficult while transitioning 200+ members to the new site.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ea471d8b-5311-4b28-ae36-7123a2532c17] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">passwords</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">customers</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">secure_zones</category>
      <pubDate>Thu, 13 Feb 2014 17:03:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1405847</guid>
      <dc:date>2014-02-13T17:03:56Z</dc:date>
      <clearspace:dateToText>8 months 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Need Help Configuring Membership Website with External Approval Process</title>
      <link>https://forums.adobe.com/thread/1395203</link>
      <description>&lt;!-- [DocumentBodyStart:faf5649b-35bb-4ee7-b253-3520953bb202] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am working on configuring a membership website for a group of scientist.&amp;nbsp; Here are the interesting requirements.&amp;nbsp; Any brainstorming would be helpful.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1 - A prospective member applies online. Within the application the prospective member has to include a reference for previous work proving his qualifications and naming a reference to confirm the qualifications.&amp;nbsp; The prospective member has to include the reference's name and email address.&amp;nbsp;&amp;nbsp; (Site visitor creats a new user-submitted webapp item, easy enough.) &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2 - The application needs to kick off a workflow to an external site visitor (someone who doesn't have a site login).&amp;nbsp; This reference needs to confirm of reject the prospective member's qualifications.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;3 - If the external site visitor approves the reference, then the membership director needs to be emailed of the approval.&amp;nbsp; This approval should then kickoff another approval process to ask the membership director for his approval.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;4 - If the external site visitor rejects the reference, then the membership directory needs to be emailed the rejection notification.&amp;nbsp; (If the reference rejects then there will be some sort of appeal process or ability to start over or submit a different reference.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;5 - If the reference approves and the membership director approves, then the prospective member is notified and submitted an invoice to pay.&amp;nbsp; His memberhsip is not active until he pays.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;6 - Once the member pays, then he appears in the online directory.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;7 - The member will also be able to login and edit his profile as needed.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;That about sums it up.&amp;nbsp; Any ideas??&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;THANKS!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:faf5649b-35bb-4ee7-b253-3520953bb202] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">approval</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">workflow</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">membership</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">webapps</category>
      <pubDate>Sat, 01 Feb 2014 00:15:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1395203</guid>
      <dc:date>2014-02-01T00:15:08Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Looking for solution for FTP style Extranet to Share Large Files (1GB+) with My Client's Customers</title>
      <link>https://forums.adobe.com/thread/1361009</link>
      <description>&lt;!-- [DocumentBodyStart:bc858081-de77-4617-9fd7-47ef15d7ffc1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;My client needs to share large files (1GB+) with his customers.&amp;nbsp; Every engineer in his firm needs to be able to manage the files (create, update, delete).&amp;nbsp; Each customer needs his own login and password. He estimates about 20 customers at a time.&amp;nbsp; Customer names need to be secure; his customers should not be able to see any sort of list of his current customers.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I was thinking that there might be a third party solution that is easily integrated into his BC site.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Has anyone done this before.&amp;nbsp; Any recommendations?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bc858081-de77-4617-9fd7-47ef15d7ffc1] --&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:12:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1361009</guid>
      <dc:date>2013-12-18T15:12:49Z</dc:date>
      <clearspace:dateToText>10 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is there a way to upload or import new webapp fields?</title>
      <link>https://forums.adobe.com/thread/1279993</link>
      <description>&lt;!-- [DocumentBodyStart:3602e04d-eb9b-47ff-9644-bd85c59e7fad] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is there a way to upload or import new webapp fields?&amp;nbsp; I need to resort over 100 fields and the interface is really slow when you are trying to reorder the fields.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm talking about creating new fields, not just importing the data.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3602e04d-eb9b-47ff-9644-bd85c59e7fad] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">web_apps</category>
      <pubDate>Wed, 21 Aug 2013 15:03:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1279993</guid>
      <dc:date>2013-08-21T15:03:24Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>In the Online Shop Layouts: Individual Product - Large, is there a tag for the Large Image value?</title>
      <link>https://forums.adobe.com/thread/1259987</link>
      <description>&lt;!-- [DocumentBodyStart:cf270dee-e3eb-4c1c-95ca-9899c3c43653] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I need a tag for the URL to the large image in order to use the Facebook Feed dialog (share).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;See example at &lt;/span&gt;&lt;a class="jive-link-external-small" href="https://aesgatorshack.worldsecuresystems.com/gator-shack/ladies/ladies-aes-pep-rally-replica-jersey" rel="nofollow" target="_blank"&gt;https://aesgatorshack.worldsecuresystems.com/gator-shack/ladies/ladies-aes-pep-rally-repli ca-jersey&lt;/a&gt;&lt;span&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;When you click the "Share on Facebook" link, it doesn't use a photo.&amp;nbsp; I can specify a photo to use; however, I need the URL to the image.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's the Facebook code as is:&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;a href="#" class="social_button social_blue" onclick="window.open('&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://www.facebook.com/dialog/feed?link=" rel="nofollow" target="_blank"&gt;https://www.facebook.com/dialog/feed?link=&lt;/a&gt;&lt;span&gt;{tag_itemurl_withhost}&amp;amp;amp;app_id=271818569626492&amp;amp;amp;redirect_uri={tag_itemurl_withhost}&amp;amp; amp;name={tag_name}&amp;amp;amp;display=popup','Sharing My AES Gator Shack Finds','width=640,height=320');"&amp;gt;Share on Facebook&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I can add the picture= parameter, but I need the URL to the image.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cf270dee-e3eb-4c1c-95ca-9899c3c43653] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">facebook</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">dialog</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">feed</category>
      <pubDate>Mon, 22 Jul 2013 17:16:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1259987</guid>
      <dc:date>2013-07-22T17:16:56Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How can I create an easily managed Customer Extranet?</title>
      <link>https://forums.adobe.com/thread/1082492</link>
      <description>&lt;!-- [DocumentBodyStart:b5224e83-dfe2-4adb-953c-44fd0cf1685b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a customer who wants to provide an extranet for his customers that is easily maintained by non-technical field operators.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;He wants one screen that field operators can use to create and upload files.&amp;nbsp; For example, the screen would look similar to this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Create new customer: [________________________]&amp;nbsp; or Select existing customer: [________________________][^]&lt;/p&gt;&lt;p&gt;Upload file: [___________________][^]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;[SUBMIT]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When the submit button is clicked, then following needs to happen:&lt;/p&gt;&lt;p&gt; - new Secure Zone is created for that customer&lt;/p&gt;&lt;p&gt; - a new category is created with that customer's name&lt;/p&gt;&lt;p&gt; - the file is uploaded to the literature module, and assigned to that customer's category&lt;/p&gt;&lt;p&gt; - new page for that customer and is automatically assigned to the new Secure Zone; the page will have the literature module limited to that customer's category&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this even possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any other ideas how I might achieve the same effect?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b5224e83-dfe2-4adb-953c-44fd0cf1685b] --&gt;</description>
      <pubDate>Mon, 15 Oct 2012 15:29:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1082492</guid>
      <dc:date>2012-10-15T15:29:35Z</dc:date>
      <clearspace:dateToText>2 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>What is the best payment solution if client is only accepting eChecks?</title>
      <link>https://forums.adobe.com/thread/1069538</link>
      <description>&lt;!-- [DocumentBodyStart:04b11a1f-7a22-4970-9e08-199e0232072c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For a US customer&lt;/p&gt;&lt;p&gt;Check amounts range from $2,000 - $6,000&lt;/p&gt;&lt;p&gt;Probably 4-8 transactions per month&lt;/p&gt;&lt;p&gt;Doesn't want to accept credit cards at all because of the charges&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like to provide 2 recommendations - one that provides the most economical solutions (cheapest) and another that is the cleaness implementation (seamless).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance for your advice!&lt;/p&gt;&lt;p&gt;Shannon&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:04b11a1f-7a22-4970-9e08-199e0232072c] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">ecommerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">payment</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">gateways</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">echecks</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">checks</category>
      <pubDate>Thu, 20 Sep 2012 23:30:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1069538</guid>
      <dc:date>2012-09-20T23:30:40Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Concatenate two custom fields as Item Name is User Submitted WebApp</title>
      <link>https://forums.adobe.com/thread/1009025</link>
      <description>&lt;!-- [DocumentBodyStart:de82fac0-a964-4685-8a96-cbb2713a2900] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a WebApp, and the items are user submitted. I want to automatically create the Item Name field by concatenating two of my custom fields when the user submits the add item form.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have the javascript, but can't figure out where to put it that doesn't result in an error.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var first_init = $('#CAT_Custom_382665').val().charAt(0).toUpperCase();&lt;/p&gt;&lt;p&gt;var end_name = $('#CAT_Custom_382664').val()+' '+first_init;&lt;/p&gt;&lt;p&gt;$('#ItemName').val(end_name);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for the help!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:de82fac0-a964-4685-8a96-cbb2713a2900] --&gt;</description>
      <pubDate>Mon, 21 May 2012 20:19:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1009025</guid>
      <dc:date>2012-05-21T20:19:51Z</dc:date>
      <clearspace:dateToText>2 years 6 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can I create a page that requires the Admin login?</title>
      <link>https://forums.adobe.com/thread/1005317</link>
      <description>&lt;!-- [DocumentBodyStart:044e0ba7-e289-45b8-85ba-cb083efbf24d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have created a custom help page to guide my customer through website changes - view it a &lt;a class="jive-link-external-small" href="http://www.charlesboustany.com/howto" rel="nofollow"&gt;www.charlesboustany.com/howto&lt;/a&gt;.&amp;nbsp; However, I don't want the whole world to be able to see it.&amp;nbsp; How can I secure it to only admin users?&amp;nbsp; I don't want to create a separate secure zone, but want to use the admin users and logins.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:044e0ba7-e289-45b8-85ba-cb083efbf24d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">secure</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">zones</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">admin_login</category>
      <pubDate>Tue, 15 May 2012 19:03:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1005317</guid>
      <dc:date>2012-05-15T19:03:48Z</dc:date>
      <clearspace:dateToText>2 years 6 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

