<?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>Sun, 02 Nov 2014 13:33:50 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-02T13:33:50Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Javascript written in Dreamweaver behaves different when inserted in Muse</title>
      <link>https://forums.adobe.com/thread/1624770</link>
      <description>&lt;!-- [DocumentBodyStart:cf257108-2a54-4533-bd77-f1bcb2cab699] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a simple javascript list that is written in Dreamweaver and works as expected but when I copy &amp;amp; paste that exact javascript into the -Object-insert html section in Muse the outcome is different.&lt;/p&gt;&lt;p&gt;Is there a place I can go to research on what I need to do different for that code to behave properly in Muse? I am not understanding what I need to change or do different.&lt;/p&gt;&lt;p&gt;Below is the code I got to work in Dreamweaver:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;!doctype html&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;html&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;head&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;meta charset="utf-8"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;title&amp;gt;list&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/p&gt;&lt;p&gt;function fixTheList(){&lt;/p&gt;&lt;p&gt;var msg = "";&lt;/p&gt;&lt;p&gt;var msg = "";&lt;/p&gt;&lt;p&gt;if (document.getElementById("appleQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Apples &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("appleQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("orangesQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Oranges &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("orangesQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("tangerineQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Tangerines &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("tangerineQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("kiwiQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Kiwis &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("kiwiQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("pearsQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Pears &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("pearsQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("grapesQty").value &amp;gt; 0) {&lt;/p&gt;&lt;p&gt;msg += "Grapes &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg +=document.getElementById("grapesQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("canteloupeQty").value&amp;gt;0) {&lt;/p&gt;&lt;p&gt;msg += "Canteloupes &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg+=document.getElementById("canteloupeQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;if (document.getElementById("strawberryQty").value&amp;gt;0) {&lt;/p&gt;&lt;p&gt;msg += "Strawberry &amp;nbsp; ";&lt;/p&gt;&lt;p&gt;msg+=document.getElementById("strawberryQty").value;&lt;/p&gt;&lt;p&gt;msg += "&amp;lt;br&amp;gt;";&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;document.getElementById("outputDiv").innerHTML = msg;&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;body&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div id="outputDiv"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;table&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Item&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Quantity&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Apples&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="appleQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Oranges&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="orangesQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Tangerines&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="tangerineQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Kiwi&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="kiwiQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Pears&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="pearsQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Grapes&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="grapesQty"&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Cantaloupe&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;input type="text" size="3" id="canteloupeQty"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;Strawberry&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type="text" size="3" id="strawberryQty"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/table&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;input type="button" value="Stack" onclick="fixTheList();"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cf257108-2a54-4533-bd77-f1bcb2cab699] --&gt;&lt;img src='/beacon?t=1415896421763' /&gt;</description>
      <pubDate>Sun, 02 Nov 2014 13:33:50 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1624770</guid>
      <dc:date>2014-11-02T13:33:50Z</dc:date>
      <clearspace:dateToText>1 week 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>creating a check list that only exports or collapses the lines that are checked</title>
      <link>https://forums.adobe.com/thread/1518191</link>
      <description>&lt;!-- [DocumentBodyStart:ca67f64e-a197-4426-af53-6973bc4d78d2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is it possible to build a form that is a "grocery" list of 100 items or so with check boxes and only the items in the list that get checked collapse or get exported so you can print just the items that are checked and not the rest of the list?&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ca67f64e-a197-4426-af53-6973bc4d78d2] --&gt;</description>
      <pubDate>Wed, 09 Jul 2014 16:30:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1518191</guid>
      <dc:date>2014-07-09T16:30:58Z</dc:date>
      <clearspace:dateToText>4 months 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Gallery images not centered</title>
      <link>https://forums.adobe.com/thread/1513754</link>
      <description>&lt;!-- [DocumentBodyStart:1147f983-ff66-4c63-9526-93ce48699262] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have made a slideshow widget inside a slideshow widget and in the Muse application I have centered everything but when I publish, the images shift.&lt;/p&gt;&lt;p&gt;I can not figure out at all what is causing this. I have done this before in another site and it works perfect.&lt;/p&gt;&lt;p&gt;Any ideas what is causing this?&lt;/p&gt;&lt;p&gt;Here is the site:&amp;nbsp; &lt;a class="jive-link-external-small" href="http://www.craigillustrations.com/index.html" rel="nofollow"&gt;www.craigillustrations.com&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1147f983-ff66-4c63-9526-93ce48699262] --&gt;</description>
      <pubDate>Thu, 03 Jul 2014 19:25:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1513754</guid>
      <dc:date>2014-07-03T19:25:28Z</dc:date>
      <clearspace:dateToText>4 months 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>After Effects CC crashes on startup. 12.2</title>
      <link>https://forums.adobe.com/thread/1396694</link>
      <description>&lt;!-- [DocumentBodyStart:89d8c266-15ec-4e48-974b-68890ff8ddf6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Everytime I open up After Effects CC it repeatedly crashes and I have uninstalled and installed this program twice already. I repeatedly get this error message...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After Effects warning: Could not rename the file '/Users/Haydo/Library/Preferences/Adobe/After Effects/12.2/Workspaces.1733.1407352684838561.xml' to 'Workspaces.xml'&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;after this it says it cannot open the program due to an unknown error. How can I resolve this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:89d8c266-15ec-4e48-974b-68890ff8ddf6] --&gt;</description>
      <pubDate>Mon, 03 Feb 2014 15:53:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1396694</guid>
      <dc:date>2014-02-03T15:53:57Z</dc:date>
      <clearspace:dateToText>9 months 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>iPad &amp; parallax - Is this a bug?</title>
      <link>https://forums.adobe.com/thread/1287344</link>
      <description>&lt;!-- [DocumentBodyStart:8c0eaeac-7ead-4758-b086-e6f55d99a9f3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is this a bug or am I doing something wrong in Muse?&lt;/p&gt;&lt;p&gt;On my iPad when I am on this page of my site I get this white bar with text on the top and a blank white bar down the right side (highlighted with green arrows). It is not like this on my desktop. It is the only page that has parallax scrolling on it and is the only page that shows up like this.&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5644669-384932/screen+shot.jpg"&gt;&lt;img alt="screen shot.jpg" class="jive-image jive-image-thumbnail" height="337" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5644669-384932/450-337/screen+shot.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8c0eaeac-7ead-4758-b086-e6f55d99a9f3] --&gt;</description>
      <pubDate>Sun, 01 Sep 2013 16:32:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1287344</guid>
      <dc:date>2013-09-01T16:32:58Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to publish site to cpanel</title>
      <link>https://forums.adobe.com/thread/1264287</link>
      <description>&lt;!-- [DocumentBodyStart:583f0792-485e-4b35-a271-9c5da221c579] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to replace an existing Joomla site that is hosted by cpanel with my muse site. I uploaded using the ftp upload and it all went through except the old site is still up and mine did not show. Al the files did show up on my cyberduck bookmark&amp;nbsp; but I got a blank "site not found" page once it finished loading all the muse files.&lt;/p&gt;&lt;p&gt;I have no clue what to do next. cpanel is confusing to me and I am not that knowledgable at alll the web hosting things.&lt;/p&gt;&lt;p&gt;I want the old site to go away and mine to show up.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:583f0792-485e-4b35-a271-9c5da221c579] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cpanel</category>
      <pubDate>Sun, 28 Jul 2013 13:11:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1264287</guid>
      <dc:date>2013-07-28T13:11:03Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Placing Edge Animate in Muse trouble</title>
      <link>https://forums.adobe.com/thread/1211011</link>
      <description>&lt;!-- [DocumentBodyStart:25ab6b42-2189-4efc-a359-0904857c98e4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I made a short html video in Edge Animate just like the Tom Green tutorial and it works perfectly when testing it from Edge but when I place the .oam file in Muse I just get a gray box. What am I doing wrong?&lt;/p&gt;&lt;p&gt;Thank you.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:25ab6b42-2189-4efc-a359-0904857c98e4] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">video</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">edge_animate</category>
      <pubDate>Mon, 13 May 2013 17:05:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1211011</guid>
      <dc:date>2013-05-13T17:05:10Z</dc:date>
      <clearspace:dateToText>1 year 6 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Rollover states are inconsistent</title>
      <link>https://forums.adobe.com/thread/1058383</link>
      <description>&lt;!-- [DocumentBodyStart:3c3ebfa7-1031-41e6-af8f-eb9d28d86168] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a few placed .png files I use as a hyperlink to other pages and I added a glow effect on the rollover state. Some perform as intended and some end up showing a glow around the image box instead of the image. They use to all work like they should but now some don't. I didn't change them so why are some behaving wrong now?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3c3ebfa7-1031-41e6-af8f-eb9d28d86168] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">help</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">muse</category>
      <pubDate>Fri, 31 Aug 2012 00:46:55 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1058383</guid>
      <dc:date>2012-08-31T00:46:55Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>This is a tough one. Complicated form concept.</title>
      <link>https://forums.adobe.com/thread/1094439</link>
      <description>&lt;!-- [DocumentBodyStart:ff003352-10b0-4472-b9c2-ffaf0e5d665f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am designing very involved &amp;amp; intricate forms for my boss and now he wants the information that he fills out on one form to be able to transfer to another form without needing to do all the selecting &amp;amp; filling out again so it saves him time. These are two different forms.&lt;/p&gt;&lt;p&gt;Can you somehow "export" the data that you fill out on one form and import it in another?&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ff003352-10b0-4472-b9c2-ffaf0e5d665f] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">forms</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">pdf_forms</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">acrobat-form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">acrobat-pro</category>
      <pubDate>Tue, 06 Nov 2012 12:12:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1094439</guid>
      <dc:date>2012-11-06T12:12:09Z</dc:date>
      <clearspace:dateToText>2 years 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>PDF Forms from InDesign, Acrobat for iPad</title>
      <link>https://forums.adobe.com/thread/1061306</link>
      <description>&lt;!-- [DocumentBodyStart:61ad186b-adde-4f33-a609-fbc51454a3d5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have downloaded (&amp;amp; thrown away) a number of PDF apps, adobe reader is one and pretty good yet it still does not handle filling in the form fields created in InDesign &amp;amp;/or Acrobat Pro very well. My document works great on the computer and even 95% works on the Adobe Reader app on my iPad but when I go to email the filled out form from the iPad app, most of the fields end up blank or blacked out. Am I using the wrong PDF app or is there something else I need to do in InDesign or Acrobat before sending to my iPad to fill out the form? PDF Expert looks promising but I want some advice before I spend $10 for something that may not work.&lt;/p&gt;&lt;p&gt;Any help would be great,&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:61ad186b-adde-4f33-a609-fbc51454a3d5] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">acrobat</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign_pdf</category>
      <pubDate>Thu, 06 Sep 2012 00:28:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1061306</guid>
      <dc:date>2012-09-06T00:28:23Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adobe Muse will now shut down</title>
      <link>https://forums.adobe.com/thread/1059442</link>
      <description>&lt;!-- [DocumentBodyStart:d5a7afc1-c590-4124-b115-ae150e59e07d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm getting this a lot today. &lt;/p&gt;&lt;p&gt;"ERROR: Adobe Muse will now shut down"&lt;/p&gt;&lt;p&gt;"Assert: Unknown trigger policy click"&lt;/p&gt;&lt;p&gt;It happens when I am trying to set the different states of a tabbed widget and my mouse/pen doesn't seem to let go of the certain state when I click on it.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d5a7afc1-c590-4124-b115-ae150e59e07d] --&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">widget</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">adobe_muse</category>
      <pubDate>Sun, 02 Sep 2012 15:37:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1059442</guid>
      <dc:date>2012-09-02T15:37:14Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Setting up an email hyperlink using @me.com</title>
      <link>https://forums.adobe.com/thread/1055088</link>
      <description>&lt;!-- [DocumentBodyStart:71c3dae4-5024-4bfe-8b0e-951fd5534fe0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;How do you get past the "MobileMe is closed" splash page when setting up an email hyperlink in Muse using a @me.com email address? It keeps going to that screen no matter how I type in the link in Muse.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:71c3dae4-5024-4bfe-8b0e-951fd5534fe0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">email_hyperlink</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">@me.com</category>
      <pubDate>Fri, 24 Aug 2012 22:04:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1055088</guid>
      <dc:date>2012-08-24T22:04:05Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>New RAM - now InDesign will not open</title>
      <link>https://forums.adobe.com/thread/482658</link>
      <description>&lt;!-- [DocumentBodyStart:48ef9764-af84-4e69-b510-acf7be5470e7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I just added in new RAM on my G5. Went from 1GB to 8-1GB sticks and now InDesign will not launch. It starts but sticks and I can't even force quit where it's at. I have to force shut down my computer. All other CS4 applications &amp;amp; all other items work fine so maybe it's not the RAM???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried to uninstall InDesign and reinstall it but the installation even said at the end that there are errors. I thought it was a bad preset but I threw them all away (I think) before I reinstalled it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have OS 10.5.8 with CS4 Design Premium. I need help as working in InDesign is my job and I have deadlines.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:48ef9764-af84-4e69-b510-acf7be5470e7] --&gt;</description>
      <pubDate>Wed, 26 Aug 2009 00:58:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/482658</guid>
      <dc:date>2009-08-26T00:58:01Z</dc:date>
      <clearspace:dateToText>5 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

