Edit Permissions ribbon buttons

Environnment: 3 mostly identical farms each has 2 app servers and 2 WFEs. I am web app and site collection admin on all farms and site collections.
Problem: In farm 3, when I go to the permissions settings, all buttons except the Modify ones (edit user permissions and remove user permissions) work. Modify buttons are greyed out (with "This control is currently disabled"). This is true
on every site, list and item in every site collection on farm 3 for all site collection admins and Full Control users. I can also add/remove users from SP groups. But can't edit group permissions.
I am however, able to edit permissions and remove users using powershell. I've looked at all the settings I can think of. I replaced the entire Template, Resources, BIN and User Code folders in the 14 hive with copies from the other farms
that are working. That didn't help. I tried replacing the service account with a fresh one, adding and removing entries in the hosts file, turning loopback on and off, clearing the config cache running the config wizard, updating the telerik files. The
logs and event viewer show no issues. I've not yet tried repalcing the config DB since the farm is in use and that downtime would need an announcement.
Anyone ever see this before?

Issue resolved. This was caused by a KwizCom eval solution that was globally deployed. I retracted all globally deployed solutions and the issue went away. I re-deployed them one at a time and it stopped working after kwizcom got redeployed.
We also found that a function call that was messing with the permissions ribbon refresh function: _layouts/kwizcom_copymovespcontent/pagecomponent.js?v=11.0.10.1
I retracted and removed the kwizcom solution WSPs and the issue is now gone. Hope this helps someone later on.

Similar Messages

  • Sharepoint Designer Workflow - Edit this task button not showing in outlook for some users.

    Hello all,
    I have created a "collect data from user" workflow in Sharepoint Designer, with around 9 "else" instances as to who to collect data from. My problem is that some users do not have the "Edit this task" button at the top of the email (Nor do they have the
    "create rule.." button). They DO have the enabled hyperlink in the body of the email, which brings them to a screen where they can view the details of the task, then edit it by clicking on "Edit".
    My users who have the button at the top of the email are having a much more simplified experience, and I would like all users to have it. All permissions are equivalent across the board as best I can tell. Is this an Outlook settings issue perhaps?
    Any input is much appreciated!
    Thanks!

    Hi Fender,
    Please can you confirm which version of Outlook your users have (and if they are all on the same version)? All my none 2007 users lack the Edit Item button, and have to use the links in the body of the email, which I believe is simply due to the fact that
    2003 et al lacks the same SharePoint integration options as 2007.
    Cheers
    Stew

  • Not able to Enable the Custom Ribbon button On Pages in Sharepoint 2013

    Hi Team,
    Not able to Enable the Custom Ribbon button On Pages in SharePoint 2013. we have used the button edit properties section of the Pages.
    Same is working for Lists but not for Pages.
    Thanks,
    Shrikant

    Thanks for your reply.
    Right now my server is not working to get the code. will share you in some time.
    I am just thinking if page get checked out and my control is also present in the Edit properties section then do I need to specify something explicitly to enable the button. The same is working for Lists.

  • How do I change multiple list items at once in a SharePoint list with ribbon button

    Hi
    I have a sharepoint list and a ribbon button that open a dialog box with buttons to set color on a row
    The problem is that i can only selecet one item at once to set the color. 
    How can i do so it could set all or a couple items att once to the color i want 
    I want to do this with javascript
    here is the code i use to get the item id and the color code is in a seperate js file
    'use strict';
    var clientContext, hostweburl, parentContext, parentWeb, selectedItem, itemId, listId;
    clientContext = new SP.ClientContext.get_current();
    hostweburl = decodeURIComponent(getQueryStringParameter("SPHostUrl"));
    listId = decodeURIComponent(getQueryStringParameter("SPListId"));
    itemId = decodeURIComponent(getQueryStringParameter("SPListItemId"));
    parentContext = new SP.AppContextSite(clientContext, hostweburl);
    parentWeb = parentContext.get_web();
    selectedItem = parentWeb.get_lists().getById(listId).getItemById(itemId);
    $(document).ready(function () {
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(OnSuccess, OnFail);
    function OnSuccess() {
    $("#Blue").click(function () {
    selectedItem.set_item('Color', 'Blue');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Green").click(function () {
    selectedItem.set_item('Color', 'Green');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Red").click(function () {
    selectedItem.set_item('Color', 'Red');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Transparent").click(function () {
    selectedItem.set_item('Color', 'No Color');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });

    Check if below can help you
    http://sp2010batchedit.codeplex.com/
    http://sharepoint.stackexchange.com/questions/35935/use-view-ribbon-custom-action-on-multiple-list-items
    http://webcache.googleusercontent.com/search?q=cache:XqMO-PRLHQIJ:dannyjessee.com/blog/index.php/2014/06/enabling-custom-ribbon-buttons-dynamically-based-on-multiple-selected-item-values-using-refreshcommandui-and-jsom/+&cd=1&hl=en&ct=clnk&gl=in
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="DannyJessee.TestCustomAction"
    Location="CommandUI.Ribbon"
    RegistrationId="100"
    RegistrationType="List">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Actions.Controls._children">
    <Button Id="DannyJessee.MarkItemsFinishedButton"
    Command="cmdMarkItemsFinished"
    Image16by16="/_layouts/images/kpinormallarge-0.gif"
    Image32by32="/_layouts/images/kpinormallarge-0.gif"
    LabelText="Mark as Finished"
    TemplateAlias="o2" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="cmdMarkItemsFinished"
    CommandAction="javascript:MarkItemsFinished();"
    EnabledScript="javascript:EnableFinishedButton();">
    </CommandUIHandler>
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    <CustomAction Id="DannyJessee.TestScript"
    Location="ScriptLink"
    ScriptSrc="/_layouts/15/CustomRibbonButton/CustomAction.js" />
    </Elements>
    If this helped you resolve your issue, please mark it Answered

  • Override "Email a Page link" in ribbon button functionality in SharePoint 2013

    Hi,
    I want to override "Email a Page link" ribbon button functionality on the ribbon control.
      <CustomAction Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Location="CommandUI.Ribbon"                
                    Title="Custom Email this page">
        <CommandUIExtension>
          <CommandUIDefinitions>
            <CommandUIDefinition Location="Ribbon.WikiPageTab.Share.EmailPageLink">
              <Group
              Id="Ribbon.WikiPageTab.Share"
              Sequence="30"
              Command="ShareGroup"
              Description=""
              Title="$Resources:core,cui_GrpShare;"
              Image32by32Popup="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32PopupTop="-137" Image32by32PopupLeft="-103"
              Template="Ribbon.Templates.Flexible2"
              >
                <Controls Id="Ribbon.WikiPageTab.Share.Controls">
                  <Button
                    Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Sequence="10"
                    Command="CustomEmailPageUrl"
                    Image16by16="/_layouts/15/$Resources:core,Language;/images/formatmap16x16.png?rev=23" Image16by16Top="-115" Image16by16Left="-19"
                    Image32by32="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32Top="-137" Image32by32Left="-511"
                    LabelText="$Resources:core,cui_ButEmailLink;"
                    ToolTipTitle="$Resources:core,cui_ButEmailLink;"
                    ToolTipDescription="$Resources:core,cui_STT_ButEmailLinkPage;"
                    TemplateAlias="o1"
                   />
                </Controls>
                  </Group>
            </CommandUIDefinition>
          </CommandUIDefinitions>
          <CommandUIHandlers>
            <CommandUIHandler Command="CustomEmailPageUrl" CommandAction="javascript:alert('Hello, world');" />
          </CommandUIHandlers>
        </CommandUIExtension>
      </CustomAction>
    Any help would be appreciated.
    Rajasekar A.C

    Hi,
    According to your post, my understanding is that you wanted to override the “E-mail a Link” button on the Ribbon.
    I had created a simple demo to override the “E-mail a Link” button on the Ribbon, you can have a look at it.
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="Ribbon.Library.Actions.OverrideEmailLinkButton" Location="CommandUI.Ribbon" RegistrationId="101" RegistrationType="List" Title="Display the UniqueId for the list item.">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.Library.Share.EmailLibraryLink">
    <Button Id="Ribbon.Library.Share.EmailLibraryLink.ReplacementButton" Command="ReplacementButtonCommand" Image16by16="http://s10.postimage.org/lhar0oijp/U16.png" Image32by32="http://s17.postimage.org/trf3y2ui3/U32.png" LabelText="Replaced Button" TemplateAlias="o2" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="ReplacementButtonCommand" CommandAction="javascript:alert('This button has been replaced.');" />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>
    More reference:http://msdn.microsoft.com/en-us/library/office/ff407619(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • How can I get a List ID information using JScript on ribbon button click - SharePoint2010

    Dear All,
    I want to display the custom list ID column information on ribbon button click using a JScript.
    For This I have added a JScript in Layout folder in VS 2010 empty project solution and I have put
    the following Jscript code. While running and clicking the ribbon button, it seems like JScript is not
    invoking and not producing any result. It is like control is not going to Jscript file. How can I find out
    the issue???? can anyone please help me on anything wrong with my script or is
    it some-other problem which causes the blank result???
    It is a farm sharepoint2010 solution, debugging is not working in Visual Studio & IE!!!!
    Somebody please help, hard to find the error.....
    Please note the JScript Code: RibAlert.js
    <script>
    '//var siteUrl = '/sites/MySiteCollection';
    var siteUrl = 'http://a5-12457/AllItems.aspx';
    function retrieveListItems()
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('Custom List');
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View><Query><Where><Geq><FieldRef Name=\'ID\'/>' +
    '<Value Type=\'Number\'>1</Value></Geq></Where></Query><RowLimit>10</RowLimit></View>');
    this.collListItem = oList.getItems(camlQuery);
    clientContext.load(collListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded(sender, args)
    var listItemInfo = '';
    var listItemEnumerator = collListItem.getEnumerator();
    while (listItemEnumerator.moveNext())
    var oListItem = listItemEnumerator.get_current();
    listItemInfo += '\nID: ' + oListItem.get_id() +
    '\nTitle: ' + oListItem.get_item('Title') +
    '\nBody: ' + oListItem.get_item('Body');
    alert(listItemInfo.toString());
    function onQueryFailed(sender, args)
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    Please note the Elements.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="CustomRibbonButton"
    Location="CommandUI.Ribbon"
    RegistrationId="100"
    RegistrationType="List">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Manage.Controls._children">
    <Button
    Id="Ribbon.ListItem.Manage.Controls.TestButton"
    Command="ShowAlert"
    Image16by16="http://a5-12457/IconLib/ICONBTN.jpg"
    Image32by32="http://a5-12457/IconLib/ICONBTN.jpg"
    LabelText="Comapre alert"
    TemplateAlias="o2"
    Sequence="501" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <!-- <CommandUIHandler Command="AboutButtonCommand" CommandAction="javascript:alert();" EnabledScript="javascript:enable();"/> -->
    <CommandUIHandler Command="ShowAlert" CommandAction="javascript:alert();" EnabledScript="return true;"/>
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    <!-- <CustomAction Id="Ribbon.Library.Actions.Scripts" Location ="ScriptLink" ScriptSrc="/_layouts/DocumentTabTwo/RibButton.js" /> -->
    <CustomAction Id="Ribbon.Library.Actions.Scripts" Location ="ScriptLink" ScriptSrc="/_layouts/RibAlert.js" />
    </Elements>

    Dear All,
    I want to display the custom list ID column information on ribbon button click using a JScript.
    For This I have added a JScript in Layout folder in VS 2010 empty project solution and I have put
    the following Jscript code. While running and clicking the ribbon button, it seems like JScript is not
    invoking and not producing any result. It is like control is not going to Jscript file. How can I find out
    the issue???? can anyone please help me on anything wrong with my script or is
    it some-other problem which causes the blank result???
    It is a farm sharepoint2010 solution, debugging is not working in Visual Studio & IE!!!!
    Somebody please help, hard to find the error.....
    Please note the JScript Code: RibAlert.js
    <script>
    '//var siteUrl = '/sites/MySiteCollection';
    var siteUrl = 'http://a5-12457/AllItems.aspx';
    function retrieveListItems()
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('Custom List');
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View><Query><Where><Geq><FieldRef Name=\'ID\'/>' +
    '<Value Type=\'Number\'>1</Value></Geq></Where></Query><RowLimit>10</RowLimit></View>');
    this.collListItem = oList.getItems(camlQuery);
    clientContext.load(collListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded(sender, args)
    var listItemInfo = '';
    var listItemEnumerator = collListItem.getEnumerator();
    while (listItemEnumerator.moveNext())
    var oListItem = listItemEnumerator.get_current();
    listItemInfo += '\nID: ' + oListItem.get_id() +
    '\nTitle: ' + oListItem.get_item('Title') +
    '\nBody: ' + oListItem.get_item('Body');
    alert(listItemInfo.toString());
    function onQueryFailed(sender, args)
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    Please note the Elements.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="CustomRibbonButton"
    Location="CommandUI.Ribbon"
    RegistrationId="100"
    RegistrationType="List">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Manage.Controls._children">
    <Button
    Id="Ribbon.ListItem.Manage.Controls.TestButton"
    Command="ShowAlert"
    Image16by16="http://a5-12457/IconLib/ICONBTN.jpg"
    Image32by32="http://a5-12457/IconLib/ICONBTN.jpg"
    LabelText="Comapre alert"
    TemplateAlias="o2"
    Sequence="501" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <!-- <CommandUIHandler Command="AboutButtonCommand" CommandAction="javascript:alert();" EnabledScript="javascript:enable();"/> -->
    <CommandUIHandler Command="ShowAlert" CommandAction="javascript:alert();" EnabledScript="return true;"/>
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    <!-- <CustomAction Id="Ribbon.Library.Actions.Scripts" Location ="ScriptLink" ScriptSrc="/_layouts/DocumentTabTwo/RibButton.js" /> -->
    <CustomAction Id="Ribbon.Library.Actions.Scripts" Location ="ScriptLink" ScriptSrc="/_layouts/RibAlert.js" />
    </Elements>

  • I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    I have problems with seeing my bookmarks, file, view, edit...buttons. I tried other shortcuts. I noticed that all of my bookmarks are located in the Internet Explorer browsers, how can I restore setting back to Mozilla Firefox?

    Is the menu bar missing (the one containing File, View, Edit etc)? If it is, the following link shows how to restore it - https://support.mozilla.com/kb/Menu+bar+is+missing

  • There was an error in callback while hooking Ribbon button in project server

    Hi All,
    We are getting sporadic issue related to Callback error in project server after implementation of to hook save ribbon button.
    Error Description:-
    eThere was an error in the callback.384|/wEWLALXmdD0DAKpn5bCCwLNrvW5AwK9+p7tAgLo7L7kCgKNqJ6SDALd66mOAgK28832DwKP8832DwKz87HKBgK386WtDQK186WtDQKJ84mABALh4KLMBgLY4KLMBgLk4N7wDwLg4MqXBALi4MqXBALe4Oa6DQKThqG1AwKqhqG1AwKWht2JCgKShsnuAQKQhsnuAQKshuXDCAK9ptOEBQKEptOEBQK4pq+4DAK8prvfBwK+prvfBwKCppfyDgLA+vSFDQL5+vSFDQLF+oi5BALB+pzeDwLD+pzeDwL/+rDzBgLHtYnXAgL+tYnXAgLCtfXrCwLGteEMAsS14QwC+LXNoQkCyOSp1g+AouWT1aul62L1BetYTwN/Gc1roQ==s<RESULT
    />
     Please have a look at code implementation for hooking save button;-
    OnPreRender implemented java script code to hook the ribbon “Save” button. Attached code for your reference.
    Code:-
    protected override void OnPreRender(EventArgs e)
                    base.OnPreRender(e);
                    var saveFunc = Page.ClientScript.GetPostBackClientHyperlink(_lnbSaveProject, "");
                    //register script for hooking up into the page structure.
                    var uniqueScriptName = "PDP Class " + ClientID;
                    var script = string.Format(@"
                                            var WPDP_{0} =  new
    object();
                                            var oElem = null;
                                            WPDP_{0}.Save = 
    function pfp_Save(ctx)
    if({1})
    var arg = '';
    {2}
    ctx.Completed();
                                            WPDP_{0}.Validate = 
    function pfp_Validate()
    return true;
                                            function SaveCallback_{0}(result,
    ctx) {{ 
    if (result != '') {{ 
    SaveErrorCallback_{0}(result, ctx); 
    else {{ 
    ctx.Completed(); 
                                            function SaveErrorCallback_{0}(result,
    ctx) {{ 
    ctx.FailedShowInlineErrors(result); 
                                            WPDP_{0}.IsDirty =
    false;", ClientID, doesFileExist.ToString().ToLower(), saveFunc);
                    Page.ClientScript.RegisterClientScriptBlock(GetType(), uniqueScriptName, script, true);
    Note:-
    1) There is no  Error occurs in event viewer , SharePoint trace log
    2) We have done exception handling for all the methods and tracking it at data base level but no exception found
    3) HTTPS implemented.
    Let me know in case of any query.
    Regards
    Vipin Upadhyay
    Vipin Upadhyay

    Hi All,
    We are getting sporadic issue related to Callback error in project server after implementation of to hook save ribbon button.
    Error Description:-
    eThere was an error in the callback.384|/wEWLALXmdD0DAKpn5bCCwLNrvW5AwK9+p7tAgLo7L7kCgKNqJ6SDALd66mOAgK28832DwKP8832DwKz87HKBgK386WtDQK186WtDQKJ84mABALh4KLMBgLY4KLMBgLk4N7wDwLg4MqXBALi4MqXBALe4Oa6DQKThqG1AwKqhqG1AwKWht2JCgKShsnuAQKQhsnuAQKshuXDCAK9ptOEBQKEptOEBQK4pq+4DAK8prvfBwK+prvfBwKCppfyDgLA+vSFDQL5+vSFDQLF+oi5BALB+pzeDwLD+pzeDwL/+rDzBgLHtYnXAgL+tYnXAgLCtfXrCwLGteEMAsS14QwC+LXNoQkCyOSp1g+AouWT1aul62L1BetYTwN/Gc1roQ==s<RESULT
    />
     Please have a look at code implementation for hooking save button;-
    OnPreRender implemented java script code to hook the ribbon “Save” button. Attached code for your reference.
    Code:-
    protected override void OnPreRender(EventArgs e)
                    base.OnPreRender(e);
                    var saveFunc = Page.ClientScript.GetPostBackClientHyperlink(_lnbSaveProject, "");
                    //register script for hooking up into the page structure.
                    var uniqueScriptName = "PDP Class " + ClientID;
                    var script = string.Format(@"
                                            var WPDP_{0} =  new
    object();
                                            var oElem = null;
                                            WPDP_{0}.Save = 
    function pfp_Save(ctx)
    if({1})
    var arg = '';
    {2}
    ctx.Completed();
                                            WPDP_{0}.Validate = 
    function pfp_Validate()
    return true;
                                            function SaveCallback_{0}(result,
    ctx) {{ 
    if (result != '') {{ 
    SaveErrorCallback_{0}(result, ctx); 
    else {{ 
    ctx.Completed(); 
                                            function SaveErrorCallback_{0}(result,
    ctx) {{ 
    ctx.FailedShowInlineErrors(result); 
                                            WPDP_{0}.IsDirty =
    false;", ClientID, doesFileExist.ToString().ToLower(), saveFunc);
                    Page.ClientScript.RegisterClientScriptBlock(GetType(), uniqueScriptName, script, true);
    Note:-
    1) There is no  Error occurs in event viewer , SharePoint trace log
    2) We have done exception handling for all the methods and tracking it at data base level but no exception found
    3) HTTPS implemented.
    Let me know in case of any query.
    Regards
    Vipin Upadhyay
    Vipin Upadhyay

  • Loss of "Edit in Photoshop" button functionality with Photoshop CC

    First, I must say I am highly dissapponted in Adobe's decision to stop developing Encore. I know that streaming and cloud access to video projects is the fture, but DVD and BluRay is still the standard for a majority. I film events, weddings, training sessions, etc. and am still asked to provide a hard copy of the product.
    I downloaded Photoshop CC and have now lost the "Edit in Photoshop" button functionality. This was an extremely convenient feature allowing editors to modify and enhance DVD and BluRay menus easily in Photoshop given the limited options for editing in Encore itself. Unforutnately, I deleted Photoshop CS6 before checking this. I just assumed that Adobe would have kept this function.
    How can I fix this? If I need to re-download Photoshop CS6, will you provide a link to do so?
    Finally, is Adobe really sticking to its guns with not continuing Encore? It is one of the best authoring tools I have worked with for its price and its a shame to see it go.

    >will you provide a link to do so?
    While there are a "few" Adobe employees who read/post (mostly in the Premiere Pro forum) this is primarily a user to user form... so the best I can offer is the IDEA to look on the Cloud to see if there is a link to download Photoshop CS6
    The only actual CS6 link I have is to purchase the standalone (not cloud) products http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html?promoid=KFPMZ but that would mean buying outside of the cloud
    You might want to contact Adobe to ask about this - http://helpx.adobe.com/contact.html
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • How do I save my journals from editing (red ribbon).

    I have iPad 2 and the iPhoto app.
    How do I save my journals from editing (red ribbon).
    My problem: I created several journals then I went back to iPad photos and deleted the photos I used in my journals which deleted them from my journals also.
    The instructions stated if the photos were in a journal they would not be deleted. It did have a photo of a journal with a red ribbon, the red ribbon indicates journals can not be edited. I have not found how to apply the red ribbon to my journals. thanks for any help.
    iPad 2, iOS 5.1

    I think the red ribbon only appears if you have downloaded a journal from a different device, i.e. it is more of a 'show' function than a 'share', and the red ribbon is not something you can attach/detach at will. I was testing iPhoto earlier and shared some albums to iCloud, and then deleted the entire iPhoto app. When I reinstalled it, the albums appeared back on my device with shiny red ribbons attached. That's the best I can think of at the moment. Good luck!

  • Users not visible in "Edit permissions..." in workspace

    Hi there,
    I have created several users using user management console (we are using native directory). Users can log into workspace and working in it.
    But I have problems with defining permissions for folders/reports in workspace. In "Edit permissions..." dialog I can see only "admin" user and "WORLD" group.
    Can anybody help me please?
    Thanks,
    Vlado

    Hi, Try one of the following:
    1. Provision the native users with viewer role for BI+, if not done already
    2. For the folder, containing the reports, have these users being provisioned? Are you able to view the users with provisioning access to the folder?
    3. Do not put any filter for users and begins with combination to display all possilble users
    Let me know if that works!

  • Ribbon Button activating when a field in the Document / List item metadata = 'Yes'

    Im hoping this is an easy answer as Im sure it must be, but my mind has gone blank!
    Basically I have created a button to run some javascript code to fire a custom (manual) workflow on an item that is selected in a Document Library (or List)
    I have set the ribbon button to only be active IF one item is selected in the Library but what I want now is to only activate the ribbon button if one item is selected AND IF a specific field in the item = 'Yes' (The field in this case being called 'DraftDoc'
    [Choice field]).
    Ive tried a few methods but none seem to work and VS2012 errors on debugging.
    My code to enable the button so far is:
    // Method to enable/disable the button on the ribbon.
    function EnableSubmitDraftDocument() {
    // request number of selected items.
    var items = SP.ListOperation.Selection.getSelectedItems();
    var count = CountDictionary(items);
    // only return true is a single item is selected.
    return (count == 1);
    Can anyone help me with the extra code I need?
    Cheers

    Hi,     
    According to your description, you have been able to set the ribbon button to be actived if one item is selected. Now, you want to activate the ribbon button if there is one
    item selected and the value of "DraftDoc" column is "Yes".
    We can achieve it by getting the value of this "DraftDoc" column of the selected item to check whether it is "Yes".
    Here is a code demo about checking whether the value of "DraftDoc" column of the selected item for your reference:
    function retrieveSelectedFiles()
    this.clientContext = SP.ClientContext.get_current();
    var web = this.clientContext.get_web();
    this.selectedItem = SP.ListOperation.Selection.getSelectedItems();
    this.selectedList = SP.ListOperation.Selection.getSelectedList();
    if (CountDictionary(selectedItem) == 1)
    this.listItem = web.get_lists().getById(this.selectedList).getItemById(this.selectedItem[0].id);
    this.clientContext.load(this.listItem);
    this.clientContext.executeQueryAsync(Function.createDelegate(this, onRequestSucceeded), Function.createDelegate(this, onRequestFailed));
    function onRequestSucceeded() {
    str = listItem.get_item('DraftDoc');
    if(str == 'Yes')
    str+="Yes";
    alert(str);
    function onRequestFailed(sender, args) {
    alert('Error: ' + args.get_message());
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to Remove Edit permissions to a group/user when an list item is approved.

    Hi,
    We have a requirement of removing the edit permissions on custom list item when a item is approved, this I have to implement using OOB feature or customization and designer, but no code should be involved.
    Can anyone please suggest me to implement this.
    Thanks, Swaroop Vuppala

    Check this below
    You need to use item level permissions.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9e3a624e-77d3-432f-9a2b-3f25b925423a/how-to-remove-edit-and-delete-option-for-a-list-item-when-approval-workflow-is-complete-and?forum=sharepointgeneralprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Save PDF form into non editable PDF through button (SaveAs) using java script

    I am creating PDF form using LiveCycle 8.0.
    1) Using SaveAs the form in PDF (non editable) by using button and javascript
      ( app.execMenuItem("SaveAs");
         myScript.LoclAllFields("form1");) this code is not working.
    2) show / hide the field by choosing the drop down List.
    Like, In drop down list their is tree option name  a, b, c. when select "A" hide the field_A and select "B". then show the field_A.

    Thanks for that script, it is a great way of securing it from being edited, but reader still won't allow the form to be saved, only as a copy without the inputted text. The idea of what I'm trying to achieve is a form which the staff here fill out and then send to our customers with non editable fields, there is the option to print to pdf but that saves the file as an 'image', this stops people from highlighting text which we don't want, they have to be accessible afterwards to copy and paste the text at a later date.
    I hope someone can help with what should be such a simple action.

  • MS CRM 2015 Adding Custom RIbbon button in dashboard and Changing Colors

    Hi,
    I am Looking for customization in MS Dynamics CRM 2015 and want to Add Custom Ribbon button in dashboard and Changing Colors of that ribbon using customization.xml i am new to crm 2015 and only know how to import export solutions.
    Regards
    Irfan

    Hello Irfan,
    For adding a custom button please refer this blog
    https://community.dynamics.com/crm/b/aeonnexuscrm/archive/2014/10/21/ms-crm-2013-adding-custom-ribbon-button-in-dashboard.aspx
    And for changing colors in Chart
    https://crmchartguy.wordpress.com/2012/08/23/palette-custom-colors-in-charts/
    Hope this helps!
    Regards, Abhishek Bakshi If you find this post helpful then please Vote as Helpful and Mark As Answer. Check my blog on https://mydynamicscrmblog.wordpress.com/

Maybe you are looking for

  • Cant install itunes due to "Unsupported 16 bit application" error

    Hey everyone. A couple weeks ago my iTunes got messed up after my pc froze. Since then, iTunes will pop up with "installing" when my iPod is charging, but nothing happens. I have tried to re-install with the latest version and with old versions, but

  • How to copy and paste file in mavericks

    how to copy and paste file in mavericks?

  • VAT Related Report

    Hi All, Is it possible to generate a VAT related report in SAP B1? Our requirement is Total Turnover     Sales Reutrns     Discount (Other than discount reflected in Invoice-Credit Notes Only)     Branch Transfer Value Outward     Branch Transfer Val

  • Why do big imports slow down?

    Hi folks So I have recently had to reimport my entire music collection off of an external, a couple of times. I have noticed that the importing process seems to slow down at points, with some individual tracks taking aaaages to import.  I can't tell

  • Error in IUUC Cockpit in Solution Manager

    Please see the error message in the attached document. End user error is while using the SLT tool. We are a max attention customer.