BC rating of FAQ's  webb app

Hi everyone,
I am trying to fix a Business Catalyst web app to rate FAQ's questions : heres the page were its at:124 YES
here is the code i just accessed in the web apps module templates :
{module_ratingrank}{module_ratingfeedback}</p>
<div class="comment-form">
<h5>Comment</h5>
<form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
    <div class="form">
    <div class="item"><label>Was this helpful?</label><br />
    No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
    <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
    </div>
    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
    <script type="text/javascript">
//<![CDATA[
var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
//]]>
</script>
</form>
</div>
the code above doesnt submint or do anything,
and here is the original code for this webb app:
<div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
//<![CDATA[
function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
//]]>
</script></form></div>""
I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

Hi everyone,
I am trying to fix a Business Catalyst web app to rate FAQ's questions : heres the page were its at:124 YES
here is the code i just accessed in the web apps module templates :
{module_ratingrank}{module_ratingfeedback}</p>
<div class="comment-form">
<h5>Comment</h5>
<form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
    <div class="form">
    <div class="item"><label>Was this helpful?</label><br />
    No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
    <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
    </div>
    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
    <script type="text/javascript">
//<![CDATA[
var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
//]]>
</script>
</form>
</div>
the code above doesnt submint or do anything,
and here is the original code for this webb app:
<div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
//<![CDATA[
function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
//]]>
</script></form></div>""
I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

Similar Messages

  • BC template FAQ's  webb app issues

    Hi everyone,
    i am working in this web site template  at 124 YES and the webb app FAQ's ratings button does nothing, how can i fix the FAQ's ratings button to make results of ratings appear on the admin dashboard?
    This is the code its there:
    {module_ratingrank}{module_ratingfeedback}
    {module_ratingfeedback}

    here is the code i just accessed in the web apps module templates :
    {module_ratingrank}{module_ratingfeedback}</p>
    <p>{module_ratingfeedback}</p>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item"><label>Was this helpful?</label><br />
        No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
        <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>
    and here is the original code for this webb app:
    <div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
    //<![CDATA[
    function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
    //]]>
    </script></form></div>""
    I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
    how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

  • Erasing webb-app element in orion-web

    Hi,
    In documentation about a file orion-web.xml, there is a information that one is allowed to put into that file element &lt;web-app&gt; 'to augment the normal config settings in web.xml.' So I did, and everything works fine when works in jdeveloper with standalone OC4J.
    But when deploy to OAS 10G(by EM), in application-deployments directory, Enterprise manager erased element &lt;web-app&gt; from orion-web.xml, and my app couldn't start, because it needs information from &lt;webb-app&gt;&lt;context-param&gt;.
    When I edit orion-web.xml on OAS manually, my app works. Of course till next deployment only.
    Looks like a bug. Am I wrong?

    I've used this before, and it worked fine. The only difference I can see is that you have a url-pattern element in the filter-mapping config.
    In the short term, try removing that and see if it then works.
    -steve-

  • SharePoint 2013 - Office 365 Custom Rating(0-5) Sharepoint Hosted App SetRating Reputation Class using Javascript and CSOM

    I have created the list and enabled the rating feature. I want to display the List items and rate individual items from an App.  I can able to create and bind the rating control through CSOM associated with the Rating Value.  But I unable to rating
    when I click rating star button. I am using the below code for clicking through JavaScript
    function SetRating(webUrl, listId, itemId, ratingElementId) {
    hostWebContext = new SP.AppContextSite(context, hostWebUrl);
    var listPrograms = hostWebContext.get_web().get_lists().getByTitle("MyList");
    context.load(listPrograms);
    var RatingValue = 5;
    EnsureScriptFunc('reputation.js', 'Microsoft.Office.Server.ReputationModel.Reputation',
    function () {
    var rating = Microsoft.Office.Server.ReputationModel.Reputation.setRating(hostWebContext, listId, itemId, RatingValue);
    context.executeQueryAsync(Function.createDelegate(this, this.RatingSuccess), Function.createDelegate(this, this.RatingFailure));
    While executing this script I got error like get 0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'addQuery'
    * Which Context we have to use for this case? AppWeb / HostedWeb
    * Is there any way to update the rating control value at runtime?
    Please help us to find out the solution.
    Thanks.

    Hi Elie,
    Since this forum is discussing about Developing Apps for Office 2013, and your issue is more related about Exchange development. I will move this thread to the more related forum.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=exchangesvrdevelopment
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • FAQ asked about apps from App Store

    This message isn't a question.
    It's just here to give an easy way to retrieve useful infos about applications bought thru the mac App Store.
    Go to :
    http://support.apple.com/kb/HT2001
    Please don't add a message in the thread except if you feel that you may add words useful to retrieve it thru the help tool.
    Yvan KOENIG (VALLAURIS, France) dimanche 27 février 2011 10:05:44

    I feel that some like to see complexity when there is none.
    Are users able to enter the mac App Store from an idevice ?
    As far as I know, the answer is : NO.
    If I am right, there is only one *_app store_* app available on advices.
    On the mac, we have two different tools: *_App Store_* dedicated to applications for mac and iTunes with a thumbnail entering *_itunes App Store_*
    Back to the forum, when we are searching about iWork for mac, we are supposed to search in the forum dedicated to this product.
    In the four ones, I assume that most (if not all) entries for *_app store_* will be related to the apps for mac.
    Yvan KOENIG (VALLAURIS, France) lundi 28 février 2011 10:16:59

  • Re: HP All-in-one Remote app and HP 4620

    Hi
    I already have a HP B110a printer and have just bought an Officejet 7610 as I wanted A3 scanning and printing.
    I was using the old HP Printer Control app with my iPad 1 but I cannot get the app to see the new 7610 printer. It is definitely connected to the network as other computers in the network can find it, and the ipad is definitely connected to the same network and it can still find the B110a printer. I have tried updating to the new HP All-in-one Remote app but now find that I need iOS v6 or later which is not supported by ipad1. This is obviously very frustrating for me as I checked before I bought the printer that it would work with this app ( according to your web site, it does) and that I could run the new app on iPad 1. According to the web site and your FAQ for the app, it requires ios v4.3 or higher (I am running ios v5.1.1) Is it because the Officejet 7610 won't work with the old HP Printer Control app? If that is the case, then what is the solution to ipad1 users? Alternatively is it possible to still get the HP All-in-one Remote app running on iosv4.3 as this website still says it does.

    Hi BookerJ,
    Welcome to the HP Support Forums.  I see that you have some questions about using your iPad1 with the HP Printer Control app. 
    The information on iTunes is the correct information.  The HP All-in-One Printer Remote Mobile App FAQ document hasn’t been updated yet to reflect the most recent version of the app.  The document has been submitted for revision to reflect the new minimum iOS requirements of iOS 6.0 or later, for the updated app.
    One of the questions in the HP AiO app is “Why can’t my mobile device find a printer on my wireless network?”.  Please review the items in that list.  If the app is still unable to find the printer, please follow the steps in Apple’s Turn your iOS device off and on (restart) and reset document.
    I do not have any devices running the Printer Control version of the app to confirm whether it supports the Officejet 7610 printer.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Apps exist but can only find them thru Search

    I have an iPhone 4S with nearly 400 apps on it.  Until recently, those apps were arranged in 11 neat pages of icons and folders.  Then this happened:
    1.  I updated to IOS 6.  All seemed well.
    2.  Tired of opening folders for some apps, I decided to make a few full pages dedicated to apps I use most.  So I made one full page of my favorite Photo apps, another full page Shopping apps, etc.
    3.  In so doing, I reached the 11 page limit, and a whole bunch of apps weren't showing up on the screen, only on Search.
    4.  So I started grouping stuff into folders again so that my apps only filled 7 pages.  But all that did was give me 7 pages of apps and 4 BLANK pages!  The missing apps are still missing and did NOT come in to fill the empty pages that I created.
    5.  While desperately trying to figure out any way to get all my apps back on the screen, I read on a few forums that going into Settings -> General -> Reset and resetting the home screen layout would work.  So I tried that.  All that did was put all of the Apple default icons on my first page, unbundle all of my apps so that there are NO folders anymore, and put all the apps in alphabetical order from A through G onto the 11 pages that are available.  All apps from H to Z are not showing up -- except if I search for them.
    6.  So again I try to group stuff into folders to make space.  I free up several pages of space, but that's all they are -- just several BLANK pages of space!  My remaining apps are NOT filling into that blank space that I've created.  They're still MIA.
    How the heck do I get all my apps back on the screen?!
    This is frustrating.  Any help you can give me would really be appreciated.

    If you can't find them on any of your homescreens or app folders, and you can't find them via the spotlight search screen (swipe your first home screen to the right), then are they hidden by an app age rating in Settings > General > Restrictions > Apps ?
    If not then have you tried a reset to see if you can find them after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot. You could also do Settings > General > Reset > Reset Home Screen Layout which will re-arrange your apps and might make them easier to find

  • When trying to buy apps on my new iPad I am told 'your account is disabled' but I can log on to apple's website. How do I fix this/ delete my account but remake it with the same email address as it's the only one I use?

    Help!!!

    Hi dshohat,
    Welcome to the HP Support Forums.  I see that you are unable to access the apps found on the front panel of your Officejet Pro 8600 Plus printer.
    I have included the Troubleshooting Print App Issues document.  One of the FAQs is “Print Apps launch slowly, lock up, crash, or a connection error message displays on the printer”.  It has a series of trouble shooting steps to take to resolve this. 
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Single App Annual Subscription Question.

    I own a licensed hard copy of Lightroom 4 and wanted to take out an annual subscription to the cloud version of Photoshop CS6 at £17.58 per month. I'm a photographer and only want to use Lightroom and Photoshop.
    I was having a chat with an Adobe online persona called Nathan who informed me that if I took this type of subscription out then I wouldn't recieve any free updates or upgrades to Photoshop CS6; and that in order to do so I need to take out a full £46.88 per month subscription.
    As I said, I only want Photoshop as I already own Lightroom.
    I am not particularly bothered at this juncture if I didn't qualify for a free upgrade to CS7 when it comes, but I assumed that Photoshop CS6 version updates would be free.
    Please can someone tell me if I'm right; and if I'm not, and updates are not free then what is the point of the single app subscription?
    Best Regards
    Andy

    Hi Andy,
    The Creative Cloud FAQ has info about the single app subscriptions here:
    http://www.adobe.com/products/creativecloud/faq.html#single-app
    You heard "I wouldn't receive any free updates or upgrades to Photoshop CS6"
    - You would get any product specific updates that were non-Creative Cloud, same as customers who own Photoshop CS6. Creative Cloud customers get the benefit of getting new feature updates as soon as they are ready versus the next product upgrade.
    Any ongoing bug fixes, security patches, and other update releases that do not require full upgrades will be made available through the Adobe Application Manager just as in the regular versions of Adobe software.
    - Upgrades usually refer to a next version of the software, so if you had a subscription when PS CS7 came out, yes you would get access to that version
    Benefits of single app subscription
    - You could purchase it on a month to month if you wanted
    - License is cross-platform (you could install on both a Mac and a PC)
    - 20GB of online storage with Creative Cloud files
    One other item I didn't see on the FAQ that I would want you to know, the single app subscription is the standard version of Photoshop CS6 - the version that comes with Creative Cloud is Photoshop CS6 Extended.
    Hope that helps,
    -Dave

  • How can I get a list of rated files in folders/subfolders?

    I use a star rating system to select which photos I need to work on. Each subject has their own folder. Within each subject's folder are subfolders, one for each time I have a photo shoot with them. The hierarchy looks something like this.....
    MainFolder
         Subject1
              Shoot1
              Shoot2
         Subject2
              Shoot1
         Subject3
              Shoot1
              Shoot2
              Shoot3
              Shoot4
         Subject4
              Shoot1
    And so on. The image files are within each "Shoot" folder. The thing I'd like to accomplish is to have a way that I can start with the main folder and check through all subfolders where image files are and build a listing of all rated image files that I can parse through to see which images I need to work on.
    Ideally I'd like to have them sorted from highest to lowest rating. I can do this by stepping through each folder and file within, checking the rating of each file, and continuing. What I'd really prefer to speed things up is to know if there is a way to check a folder's contents and filter it by rating. First, extract all the 5-star rated filenames, then 4-star, then 3-star, and so on. I cannot find anything in the documentation for Bridge scripting that allows for sorting/filtering folder contents. I currently have over 40,000 image files so checking through them one at a time even with a script would be a task which is why I'd like to know if there is a scripting method to filter out ratings within folders.
    Any help would be greatly appreciated. I can write the script...at least most of it I think...but things would go so much nicer for me with a filter/sort.

    How right you are Mark, you know I am gradually going senile
    This will do the same but will allow re-runs without re-creating the collections or adding duplicates.
    #target bridge
    var folders =[];
    var topLevel = app.document.presentationPath;
    folders = FindAllFolders(topLevel, folders);
    folders.unshift(topLevel);
    //Create 5 collections to put the files into
    var FiveStars = FourStars = ThreeStars = TwoStars = OneStar = undefined;
    var colls =app.getCollections();
    for(var a in colls){
        if(colls[a].name == "Five Stars") FiveStars= colls[a];
        if(colls[a].name == "Four Stars") FourStars= colls[a];
        if(colls[a].name == "Three Stars") ThreeStars= colls[a];
        if(colls[a].name == "Two Stars") TwoStars= colls[a];
        if(colls[a].name == "One Star") OneStar= colls[a];
    if(FiveStars == undefined) FiveStars = app.createCollection("Five Stars");
    if(FourStars == undefined) FourStars = app.createCollection("Four Stars");
    if(ThreeStars == undefined) ThreeStars = app.createCollection("Three Stars");
    if(TwoStars == undefined) TwoStars = app.createCollection("Two Stars");
    if(OneStar == undefined) OneStar = app.createCollection("One Star");
    for(var a in folders){
    var PictureFiles = Folder(folders[a]).getFiles(/\.(jpg|jpe|jpeg|gif|eps|dng|bmp|tif|tiff|psd|crw|cr2|rle|dib|cin|dpx|ps|pcd|pict|vda|icb|vst|wbm|sct|pbm|flm|psb|exr|pcx|pdp|nef|dcr|dc2|erf|raf|orf|tga|mrw|mos|srf|pic|pct|pxr|pdd|pef|png|x3f|raw)$/i);
    for(var p in PictureFiles){
    var Rating  = new Thumbnail(PictureFiles[p]).rating;
    if(Rating == undefined) Rating = 0;
    switch(Number(Rating)){
        case 0 : break; /* No Rating */
        case 1 : if(!app.isCollectionMember(OneStar,new Thumbnail(PictureFiles[p]))) app.addCollectionMember(OneStar,new Thumbnail(PictureFiles[p])); break;
        case 2 : if(!app.isCollectionMember(TwoStars,new Thumbnail(PictureFiles[p]))) app.addCollectionMember(TwoStars,new Thumbnail(PictureFiles[p])); break;
        case 3 : if(!app.isCollectionMember(ThreeStars,new Thumbnail(PictureFiles[p]))) app.addCollectionMember(ThreeStars,new Thumbnail(PictureFiles[p])); break;
        case 4 : if(!app.isCollectionMember(FourStars,new Thumbnail(PictureFiles[p]))) app.addCollectionMember(FourStars,new Thumbnail(PictureFiles[p])); break;
        case 5 : if(!app.isCollectionMember(FiveStars,new Thumbnail(PictureFiles[p]))) app.addCollectionMember(FiveStars,new Thumbnail(PictureFiles[p])); break;
        default : break;
    function FindAllFolders( srcFolderStr, destArray) {
    var fileFolderArray = Folder( srcFolderStr ).getFiles();
    for ( var i = 0; i < fileFolderArray.length; i++ ) {
      var fileFoldObj = fileFolderArray[i];
      if ( fileFoldObj instanceof File ) {  
      } else {
             destArray.push( Folder(fileFoldObj) );
      FindAllFolders( fileFoldObj.toString(), destArray );
    return destArray;

  • I'm getting the "App Activate" error when I try to download my bundles from the DPS App Builder.

    I have a Single-App subscription to the Adobe Creative Cloud.
    According to this FAQ (link: http://www.adobe.com/products/creativecloud/faq.html#single-app) I should be able to publish unlimited single .folios with DPS with my Single-App subscription to the Creative Cloud. Here is the exact paragraph I'm refering to from that FAQ:
    As a Creative Cloud member, do I have access to Digital Publishing Suite?
    Digital Publishing Suite Single Edition is not available to free Creative Cloud members. Creative Cloud single-app and complete members have an unlimited Digital Publishing Suite Single Edition license. Creative Cloud for teams members also have an unlimited Digital Publishing Suite Single Edition license.
    When I build the app in the DPS App Builder and reach the end of the process, I'm getting the error where it asks me to provide a Single Edition subscription serial to download the developer bundles for my app. 
    I have tried all the methods described on this forum to solve this problem, including deleting and reinstalling the DPS App Builder, deleting the old apps and creating new ones after redownloading the DPS App Builder, deleting the DPS App Builder, signing out of my Folio Builder in InDesign, redownloading the DPS App Builder, signing into my Folio Builder in InDesign again, etc., to no avail.
    Can anyone help? This is a time-sensitive issue and I'm trying to get this app into the Apple submission process immediately. I can answer any questions if you all have troubleshooting advice for me.
    Thanks,
    David

    Thank you for the information and the response. We will be upgrading to the full version of Creative Cloud to publish our single .folio.
    I do want to remark on the issues created by Adobe's inconsistent explanation of how DPS can be used with the Creative Cloud. After reading that FAQ, I also spoke with an "Adobe Agent" through the chat system that pops up on various product pages and asked the agent as specifically as I could if the Single-app version of Creative Cloud would allow me to publish single .folios through DPS. In no uncertain terms the agent said the Single-app version would be fine, and referred me to the order page to begin the order process.
    I spoke with another agent over chat in the morning on Saturday and they also said I should be able to publish single .folios with the Singe-app subscription to Creative Cloud. When I presented my App Activation problem to the agent, the agent said I should just wait 24-48 hours for my subscription to Creative Cloud to process so I could create my app.
    This has been a very vexing process that has cost my team valuable app review time. If I had not encountered the FAQ and two agents who specifically told me that I could use the Single-app version of Creative Cloud to publish my .folio, I would have been happy to go straight to purchasing the full version of Creative Cloud.
    Thanks again for the assistance.

  • Shocked ! Featured apps in adobe market place - 30 downloads quanp slideshow

    Hi,
    I am confused, how does adobe choose the featured app in adobe market place. I am shocked to see today morning that quanp slideshow an app which was downloded only 30 times and not even rated once was in featured app, now it has 90 downlods.
    Same case for another featured app peypa paper downloaded less than other apps. Atleast if any highest rated app is there i would have been happy.
    Also for months staff picks are same. Adobe Wake up! We are already late in montezation. If we keep adobe market place like this. App developers like us will loose confidence. We together have to prove adobe flash platform no1 and make droid ahead of any other phones and adobe market place no 1 store than any istore in world
    Cheers
    Suresh

    We want as many developers to be successful with their applications as possible and make money. To enable this, we are making a number of distribution channels available through Melrose. You can get placement in the Intel AppUp Center as well as the Adobe AIR Marketplace. Over time, additional stores will be available. Please submit your app into Melrose and reach millions of users.
    Regarding choice of featured apps, each store has their own ways to feature applications. All the featured apps are high quality apps that demonstrate the capabilities of the Flash Platform.

  • Twitter App Not Loading Please Fix

    You guys better get fixing the Twitter App that has not been working right since April 12 as people are now rating it 1 star in App World.
    When you launch it at present it just spins. Hope you get it fixed quickly. Thanks.

    update:
    BlackBerry is aware of the issue, working on it, and has even commented that the app will be updated this afternoon to working condition.
    Twitter issue will be resolved this afternoon with an new app update.
    — Michael Clewley (@MichaelClewley) April 13, 2013
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Single App vs Complete App

    I need to know what the difference is between the Single App 19.99 and Complete App 49.99 version of the Creative Cloud?

    Pretty much what it says on the box.
    Full Cloud = All Master Collection Apps (around 17 of them and counting) + online services + 20GB online storage
    Single App subscription = one (and one only) app from the Master Collection + online services + 20GB online storage
    http://www.adobe.com/products/creativecloud/faq.html#single-app
    Which part of the terminology is throwing you?

  • Apps installed but can't find them!

    I have skygo and BBC I player apps on my iPad but overnight I cannot find the icons for the apps when I try to reinstall the apps it says I already have them installed but I can't find them to delete to then reinstall! Help me please where have they gone? Ps I have checked my folders and can't see them in there.... Hope someone can help.......

    If you can't find them on any of your homescreens or app folders, and you can't find them via the spotlight search screen (swipe your first home screen to the right), then are they hidden by an app age rating in Settings > General > Restrictions > Apps ?
    If not then have you tried a reset to see if you can find them after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot. You could also do Settings > General > Reset > Reset Home Screen Layout which will re-arrange your apps and might make them easier to find

Maybe you are looking for

  • Your account does not have access to the forums system.

    Greetings, My name is Jeff, I'm from Netwrix Corporation, which is a Microsoft partner. I have a problem with accessing Microsoft TechNet forum. After signing-in to my account: [email protected], I go to TechNet forum, and get a message that:  "Your

  • The usb port on my keyboard deactivates because it says it is drawing too much power

    each time I try to plug in my ipod into the usb on the keyboard i receive an error message stating that it is drawing to much power and will be canceled

  • Can I see my desk top

    Is it possibly to use apple tv to connect my computer to my tv so I can use my tv as a monitor?

  • A sense of style: @OneToMany or @ElementCollection?

    Hello, everybody! First of all, I would like to say that I already posted this question in another forum: [https://forum.hibernate.org/viewtopic.php?f=1&t=1007832] but as I haven't got any answer from there I'm posting it here too in the hope that I

  • Help in Validation

    Hi Experts, I have a strange issue and I am not sure why it happens. Here is an example: I have a WBS 1000 (for which we have cost center 1000 assigned) in master data assigned to company code X When I post a document in company code Y, if I enter bo