Custom Gallery/Forum Design

Ok, I have written a gallery that allows gallery owners to create/maintain albums, provide images along with their initial comments for the image and allow other users that has been authorized by the owner to add images/comments. In addition to this, other permitted gallery users may browse albums within the gallery as well as forum style comments on either an individual image or on an album. Both image lists and comments lists for images and albums are paginated. <<1 2 3 4 5 6 7 8 9 10>>. Comments are listed in a separate IFRAME both on the album page and on an Image page.
My design problem here is that I have created an additional module that allows users to "watch" a particular image or album (or perhaps gallery). When the user chooses this option, they are presented a watch list link following successful login. This link will lead them to a page that lists their items of interest as follows:
1. [Album - Crazy Bob's fishing trips](4 updates)(7 additions)
2. [Album - Jill's Wedding pics][Image - You may kiss the bride!](56 additions)
3. [Album - Jill's Wedding pics][Image - Just Married](2 additions)
to increase the complexity, a watch may specify updates (If watching a gallery, then any changes to album titles or any changes to the descriptions of any images within any album of that gallery. If watching an album, then any changes to the initial image's description or the pixel data itself within that album.)
AND/OR
new additions (If watching a gallery, then any new albums created under that gallery or any new images created under any album of that gallery or any new comments placed under any album of that gallery or any new comments placed under any image of any album of that gallery. If watching an album, then any new images or comments placed on that album or any new comments placed on any existing image under that album. If watching an image, then any new comments for that image).
Now the problem is:
When they click on the watches link, I need to display the list of watched items as in the previous example. This list is to be paginated and each list item is a hyperlink to the given item (an image page if it points to an image, or comment page if it points to a comment.). What do I do from here? I mean if they've just logged on and only want to see what's new or updated, then they would likely just want to simply click through the paginated watch items, but what if they're looking at an image watch item in the list and would like to know what previous comment the latest comment item is in response to? I guess what I'm getting at, is can anyone think of a better design than the following?:
e.g., Watch X = [Album - Jill's Wedding pics][Image - You may kiss the bride!](56 additions)
------------- image page --------------------
You may kiss the bride!
<< prev img | next img >>
image
image comment
-- comments section (IFRAME) --
comment 1
comment 2
comment 3
<< prev 1 2 3 4 5 next >>
-- /comments section --
<< prev watch X | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next watch X>>
------------- /image page --------------------
To add even more complexity, these watches are only based on items not yet viewed by the watch owner. This is determined by using the last logged in date of the watch owner and date the watch item was added/updated.
I've been racking my brain over this for weeks and continuously running myself in circles. This post is my last resort as I take way too much pride in using my own ideas to achieve an efficient and intuitive design. This time however, I've decided to give up on it as it may prevent me from ever completing this personal project of mine. Even so much as a "Why are you trying to do it that way? Why not just ...." is greatly appreciated. My own sounding board is waterlogged, I think and just some fresh point of view could be of great help. Perhaps somebody knows of a good pattern that might fit this.
By the way, this is all web app, (Not Swing, or perhaps it wouldn't be so difficult to think out) so intuitive design is of great importance here since many things web-enabled cannot be so easily intuitively presented as might be achieved in Swing.
Oh and I don't expect anybody to kill themselves trying to answer this question, much less even consider answering it except for those rare individuals that can't bare to watch a challenging problem go unsolved (yeah I mean you guys - the Rubik's cube guys/gals).
thanks in advance.

1. I want to be able to watch album pages andimage
pages for new comments.What do you mean by "watch"? By watch I mean in the same deal as watching a topic in this forum.
>
>
2. I want to be able to watch album pages for new
images and comments.How is this different from number 1?This one is only watching for new image entries and/or comments on the particular album, whereas the first one covers this as well as comment entries on images.
>
>
3. I want to be able to page through the newentries
for which the item is being watched and view each
entry (be it an image page or a comment entry) bythe
simple click of a hyper link.Is this a problem?Well, herein lies the dilemma I've been struggling with myself to find a solution to. In an album page there are lists of images grouped by months and then by years, with the current view expanded on a particular month wherein that expanded list is also paginated (that is prev 10 images for that month and next 10 images for that month). Oh and that particular month is also displayed in a particular year that is also expanded.
The thing that I argue with myself is a problem is that this page is already quite busy, and to add another pagination navigator for a watch on that album page which would reference new image entries and/or comment entries just seems to be unintuitive and cumbersome. This is why I have posted to the Patterns & OO Design forum, because I cannot seem to find a way to think outside of this little box of mine.
For now, I'm thinking of simply noting the number of new entries for each particular watch in a display table and then let the user go on to find these entries for themselves.
I think the most important part here is to simply let the user know that since they have last visited, there have been:
6 new images with a combined total of 8 new comments as well as 3 comments on the album in [Album - Bob's Fishing Pics],
5 new comments in [Album - Jill's Wedding Pics][You may Kiss the Bride!] and
3 new comments in [Album - Jill's Wedding Pics][Just Married!]
I think perhaps I've attempted to make it a bit too complex by trying to hyperlink those items to a paginated view in which they could navigate only the new entries in order to get a quick review before returning to whatever they were doing prior to logging in to this site.
I think a quick re-design based on this post is the simplicity I've been looking for. The more I think about it, the more it fits because the entries wether image entries or comment entries are sorted by date from newest to oldest anyhow and so if I simply hyperlinked [Album - Bob's Fishing Pics] to image page [Album - Bob's Fishing Pics][First Image entry since last logged in], they could use the already existing image page navigator to go forward or backward to review the others. In addition to this I can add an indicator to indicate that it is new since they last visited and until they log out.

Similar Messages

  • Can nested IIf be created in custom workflow (in Designer)?

    I need to explore building a custom workflow in Designer that will allow me to update a hidden field in the list.  Is it possible for me to recreate the nested IIf statement I have written below?  I'm not seeing how to do get an AND operator in
    the workflow designer, nor the nested concept.
    TypeOfChange: IIf([status]="active",
    IIf([program type]="p", "Primaries Approved",
    IIf([program type]="o", "Options Approved",
    IIf([program type]="R" Or [award]="AAS-T", "AAS-T Programs Registered",
    IIf([apprentice]="a", "Apprenticeships Registered",
    IIf([contract]="c", "Contracts Approved",
    IIf([College Report Categories]![title]="collaborations", "Collaborations Registered",
    IIf([Indiv Program Students] is Not Null, “Individualized Programs”,
    IIf([program type]="st","ST Programs Registered")))))))),
    IIf([status]="Title changed", "Titles Changed",
    IIf([status]="removed",
    IIf([program type]="p", "Primaries Deleted",
    IIf([program type]="o", "Options Deleted",
    IIf([program type]="st", "ST Deleted"))),
    IIf([status]="Inactive",
    IIf([program type]="p", "Inactive Primaries",
    IIf([program type]="o", "Inactive Options")), 
    IIf([status]="Reinstated", "Reinstated Programs",
    IIf([status]="Pending", "Pending Requests",
    IIf([status]="NoI Review", "NoI Review Period",
    IIf([status]="Modified", "Curriculum Modifications",""))))))))
    There are no mistakes; every result tells you something of value about what you are trying to accomplish.

    Hi run4it,
    When add multiple compare conditions in workflow condition, it will show the operator AND, then you can try disigning the logic of if else branch sentenses as Andy suggested.
    Thanks,
    Daniel Yang
    Forum Support
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • How to add default values when adding custom component to design view?

    I have a set of custom components (usually) extending Spark components. But when adding our custom component onto design view, how can I define defult values (in AS3).
    For example, s:Button has default label = 'Button' when added to application, or mx:DataGrid has 3 columns predefined, but when using custom components there are no predefined values like this.
    I can put this values in constructor, but they are not visible in design time, only runtime.
    Any ideas? Thanks
    Esmin

    yes, I am. By the way I've found the solution. Someone might find this usefull.
    In design.xml having
    <component name="ExtendedTextInput" namespace="mynamespace" category="beta" displayName="ExtendedTextInput"/>
    use this
    <component name="ExtendedTextInput" namespace="mynamespace" category="beta" displayName="ExtendedTextInput">
            <defaultAttribute name="text" value="ExtendedTextInput"/>
        </component>
    so when adding this component to design view, it will have text setted to value ('ExtendedTextInput' in this case).

  • NEW FORUM DESIGN: Post Feedback Here

    Posting everything in one place will allow Comcast to better monitor what feedback is given.

     andyross Member Since: ‎10-17-2003 Posts: 3,647 HORRIBLE Forum updateShare Topic Options Subscribe to this discussion  Are you deliberately trying to make the forums so hideous that nobody will use them? The subject text is so tiny, I can barely see it, plus it's virtually impossible to see the difference between read and unread. The subject listings have a huge amount of wasted space between them. You could double the number of on-screen lists (or shorten the scrolling) if you cut it down. There used to be a link on the right that would take me back to the Bookmarks page (what I use as a home page for these forums.) No easy way to get back there that I can see, other than directly from my browser bookmark. At least the text entry seems to properly work with Firefox.   Posted on :‎03-09-2015 05:22 PM    Kudos  0ReplyFollow Options      ResponsesReply     Posted byWelcome_to_Post Member Since: ‎07-02-2003 Posts: 5,381   *sigh*  Happens every.  Single. Time.  They downgrade upgrade the forum software.  Too bad no one listens to us.  Posted on :‎03-09-2015 05:26 PM    Kudos  0Reply Options        Posted byQueen-Evie Member Since: ‎02-04-2004 Posts: 14,621   One not-so-wise new "feature" is that when a topic is more than one page long the FIRST post of the topic is now at the TOP of each topic page. If that post is long that is just some extra scrolling to do in order to get through it and to the replies.And if you are at the bottom of the page and scroll back to the top you gotta get past the first long post on your way back up the page. There is no clear demarcation between posts. Posts are no longer numbered. About the only things that are good are that the toolbar features when replying now work with SeaMonkey and Firefox and other browsers AND the default font size seen when composing a reply is big enough to easily see instead of being teeny tiny as it was before. Yippee!!! No more nose prints on the screen when trying to see what I was composing.
    Comcast employees must be authorized to post in the forum in an official capacity. Employees posting here have their names in red and are designated as employees. Names not in red are customers. This is done to protect customers and for assurance that they are dealing with a Comcast employee.
    Non-Authorized Employees are allowed to post but cannot state they are employees nor can they allude to being employees.  Posted on :‎03-09-2015 06:40 PM    Kudos  0ReplyFollow Options        Posted byQueen-Evie Member Since: ‎02-04-2004 Posts: 14,621   Do me a favor. Repost this here http://forums.comcast.com/t5/Xfinity-com-Website/NEW-FORUM-DESIGN-Post-Feedback-Here/td-p/2490433 After you do that, I will lock this topic. To anyone else who wants to post feedback do so in the topic I linked to.

  • Reg: Custom Hierarchies in Designer

    Hi,
    I am working on BOXI 3.0, Using Designer client tool i have created universe by using the BI query connection. Using same BI query to customize the hierarchy level. In designer have the option for  custom hierarchy "Hierarchies". I have customized the hierarchy structure and using the universe in to Web Intelligence. In custom hierarchy have no relationship between the objects. So, the data would displayed not properly by using the query filter in Webi. It shows like separate fields based on the filter. There is no relationship.
    I need help for creating custom hierarchy in designer, how to create ?
    Please help me for this.
    Regards
    Prakash T

    Hi Prakash,
    Procedure for creating Custom Hierarchies is the same as Default Hierarchy. In custom hierarchy you can combine objects from different classes which is unlikely for default hierarchy which are generally trend based.
    Hierarchies are used to drill data based on different hierarchy levels like Region
    i.e. Continent->Country-> State->City
    if you donu2019t have relationship between objects, means table are not joined on common fields then WEBI will create Cartesian product for the object from 2 different in tables involved in the query. Even the data generated by the query is grouped on the objects involved in the query
    Definition of hierarchy says u201CA hierarchy is an ordered series of related dimensions.u201D
    Please elaborate more on statement u201CIn custom hierarchy has no relationship between the objectsu201D and. u201CIt shows like separate fields based on the filter. There is no relationshipu201D
    If you are combining different objects from different classes in to the hierarchy, check the General Drill option under u201Cpreferences->WEB Intelligence Document.
    1) Prompt if drill requires additional data and
    2) Synchronize drill on report blocks.
    if you are using multiple hierarchies altogether then whenever WEBI faces situation like which hierarchy to follow it will prompt user which hierarchy to use to drill down.
    Thanksu2026
    Pratik

  • Custom SharePoint 2010 designer page throws "The data source control failed to execute the insert command" exception while adding the new item after the August 13, 2013 CU has installed

    We have the SharePoint Server 2010 with SP1 environment on which the custom SP2010 designer pages were working as expected before the
    August 13, 2013 CU has installed. But, getting the below exception while trying to add the new item after the CU has installed.
    Error while executing web part: System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.SharePoint.WebControls.SPDataSourceView.ExecuteInsert(IDictionary values)     at
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65  w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.WebPartPages.DataFormWebPartException: The data source control
    failed to execute the insert command. 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex)     at System.Web.UI.DataSourceView.Insert(IDictionary
    values, DataSourceViewOperationCallback callback)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit()     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e)    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    inclu... 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65* w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected ...deStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    I have tried changing the "DataSourceMode" as below, now the insert command is working, but update command is not working.
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" />
    Also, the lookup dropdown fields are displaying the value as "<a href="Daughterhttp://cpsp10/sites/Employees/_layouts/listform.aspx?PageType=4&ListId={8F62F444-FB6A-4F03-9522-C4696B45DCD1}&ID=10&RootFolder=*">Daughter</a>"
    instead of only "Daughter".
    Please provide the solution to get rid of this issue.
    Thanks
    Ramasubbu

    Try below:
    http://social.technet.microsoft.com/Forums/en-US/ae910269-3a0c-4506-844b-e8bc89d95b71/data-source-control-failed-to-execute-the-insert-command
    http://blog.jussipalo.com/2012/01/sharepoint-2010-data-source-control.html
    While there can be many causes for this generic error message, in my case the first parameter or ddwrt:DataBind function inside the SharePoint:FormFields element was
    'i' and I was working with an Edit Form. Changing it to
    'u' as it was with every other FormField fixed the issue.
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Esittaja" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Esittaja')}"
    />
    Explanation:
    DataBind operation type parameters (the first parameter) are listed below:
    'i' stands for INSERT,
    'u' stands for UPDATE,
    'd' stands for DELETE.
    http://webcache.googleusercontent.com/search?q=cache:d9HHY4I7omgJ:thearkfloats.blogspot.com/2014/03/sharepoint-2010-data-source-control.html+&cd=4&hl=en&ct=clnk&gl=in
    If this helped you resolve your issue, please mark it Answered

  • Custom install of Design Premium

    I have CS4 Design Premium installed and it runs perfectly. However I only have need for one or two of the programs and
    it was suggested on another Adobe forum that it may be possible to custom install Design. I did not notice that option on the original install
    so can I get a confirmation that this is a go or a no go. Many thanks

    The is a forum about design, not the Design Suite. Yes you can do a custom install pick what you want to install. If installed you can choose to remove certain applications. If you need more help ask in the Creative Suites forums.

  • How to add values dynamically for custom property during design time?

    I am trying to create a user control with custom properties. I have a property named Server.
    And Values for this property is system dependent. I have the code that can generate the values and is working fine.
    During the design time, when I include this control in my application, and type the property name, I want Visual Studio to prompt for the values. Like it
    does for Alignment property for some controls shows Left, Right, Center.. during design time.
    If the Values are static, I can use an enum and it works fine. I need help with dynamic values.

    You can't, afaik.
    It's either an enum or you don't get that functionality of values.
    There is no right left centre, "Towards the top right but just off centre" - which I just thought of... option for example.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Forum Design

    Hi,
    I would like to design and implement the SDN forum kind of system. Please let me know how to design the forum system.
    Query:-
    1) Data base is required to design form or web page?
    2) How to use KM system for the forum?
    3) where Trex play a role in the forum system?
    4) How the Verticals can be design?
    5) How to store the query and reply from the user?
    Please suggest.
    Thanks & Regards,
    Sanjeev Mourya

    Hi Sanjeev,
    there is a discussion forum iView (which is used in collaboration rooms) in EP. Maybe you can use it. My experience is, that in most cases the features of this iView are not sufficiant.
    SAP plans to include the SDN forum in one of the following Service Packs. Maybe you should wait some more weeks?
    HTH,
    Carsten

  • Way of customizing oracle forums without custom.pll and form personalizatio

    HI,
    I know that form customization is done thru custom.pll and form personalization.what about customization of events which are not found in custom.pll.how can we take care of those events.

    You will have to modify the specific trigger inside the original fmb, and with every patch, redo your changes again. But i don't think thats supported by oracle (maybe you get a more detailed answer in the eBusiness-forums OA Framework )

  • Custom components in design studio via netweaver

    Hello,
    we are using design studio 1.2 sp2 deployed on netweaver 7.31. Client version of design studio is 1.2 sp2, too.
    We have a problem to display the custom components - downloaded the latest version from here http://help.sap.com/boad
    If we try to use a custom component an error occured: "Web item xxx could not found in application ... "
    I read this post https://scn.sap.com/thread/3550473 but we do not have BI-Platform installed. Regarding to this post, are there some services we have to restart for netwaever, or do you have some other suggestions?
    Thanks
    Robert

    Hi Robert - I am not deploying Design Studio to NetWeaver but there seems to be some notes surrounding it
    Could you check this note and see if you are on the proper patch for 731? http://service.sap.com/sap/support/notes/1945541

  • SharePoint 2013 custom workflow using designer

    I am in the need of develop a custom workflow in SharePoint online. Requirement is shown in the below screenshot.
    I am able to create the above mentioned requirement using SharePoint 2010 workflow in SharePoint 2013 Designer.
    But I am not able to implement the above requirement using SharePoint 2013 workflow in SharePoint 2013 designer.
    Above flowchart gives two scenarios.They are
    Approval Scenario- 2 Must approve (First and second only considered, then workflow will be completed)
    Reject Scenario- If any one rejects, then workflow will be terminated.
    I am trying to implement the above flow chart using "Task Process" action available in SharePoint 2013 workflow, but above scenarios
    (1&2) not able to implement at the same time using "Task process".  Available completion criteria is shown in the below screenshot.
    My Question here is:
    Does the above requirement is possible using SharePoint 2013 workflow in designer(Not SharePoint 2010 workflow)?
    Thanks in advance.....
    Anandan M

    Hi
    from you consideration:
    Approval Scenario- 2 Must approve (First and second only considered, then workflow will be completed)
    Create a new column in your list ( approval numbers ) a hidden column ( COL_NO_APPROVALS), default value = 0
    Set your workflow, when a approve is applied to that item, this column will incerment by 1
    Alos include a condition, if COL_NO_APPROVALS = 1 ( this mean is the second approver ), finish the workflow and approve the item completly
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • IGS Graphic Customizing-SAP Chart Designer

    Hi expert,
    I'm creating dynamic graphic in smartforms. Yes it's working but i need customizing for graphic. I'm created one xml file with SAP Chart Designer and assigned this file IGS. It's working just something attributes. Sample : I changed graphic dimension in Chart Designer.. yes it's working but when i changed the colomn color or border color this is not working...  So i'm have color problems in customizing. I'm atach the xml file for discussion.
    Can you help me ?
    Thank you /Regards...
    Aydın

    My IGS Version is : 7200.0.4.1..

  • Does Dreamweaver come with customized workspace layouts (designer, developer, etc)?

    In the video tutorials, it appears that dreamweaver offers multiple workspace layout options (designer, developer, etc).  My workspace menu only offers "compact" or "expanded" layouts.  Am i missing something?

    Hi Brian,
    Welcome to the forums. Found a related discussion that could help you http://forums.adobe.com/message/5663236
    Thanks,
    Preran

  • What's wrong with the new forum design.

    Thought I'd kick off the list here.
    1. O.P. can award a correct answer to themselves.
    2. Status stays hidden unless checked, making it hard on both newbies and those trying to help them
    3. No advanced search (that I can find) I've given up even trying to look, and users aren't even aware of it
    4. Difficult to see what you have or haven't replied to
    5. Can't see very far back in the threads
    6. Huge waste of space on useless quote bubbles
    7. Trying to edit your own settings takes you round in circles
    8. Where is the forum how-to and guide?
    9. Absurd to ask users to search without a suggested list to work from, the Pages iPad users are constantly landing in the wrong forum
    10. I hate the default of sending email advisories and Safari messages of answers in the forum. My Mail Inbox is inundated and I am getting constant pop-ups interrupting my work on my Mac.
    …many more but I'd like to let others add to the list
    BTW I give 2 thumbs up to the improved post formatting options, but that was a long overdue catch up to other forums.

    Don't have time to answer all of this, but here's a start...
    1. O.P. can award a correct answer to themselves.
    Useful when they've come up with the correct answer themselves. (OPs can't award themselves points, though.)
    3. No advanced search (that I can find)
    https://discussions.apple.com/search.jspa (or click the blue Search button in the top right of any page without entering any text in the search field)
    4. Difficult to see what you have or haven't replied to
    The equivalent of My Posts is here:
    8. Where is the forum how-to and guide?
    https://discussions.apple.com/static/apple/tutorial/index.html
    10. I hate the default of sending email advisories and Safari messages of answers in the forum. My Mail Inbox is inundated and I am getting constant pop-ups interrupting my work on my Mac.
    https://discussions.apple.com/static/apple/tutorial/email.html
    Good luck!

Maybe you are looking for

  • Branch Office Communication

    Hi, Supposingly we have many branch offices with good internet speed but no dedicated bandwidth between individual locations. We need to enable VoIP calling using Internet, can we use any skype product to tie all standalone EPABX system for branch of

  • How to stop iPhoto deleting titles?

    The Context: * I'm in an album I've made of photos from our year. * I'm adding titles to all the photos because it's going to be made into a slideshow for our grandparents. * My library is approx 155 GB- just over 14 000 photos + video. I don't think

  • Field name retrieval from field symbols after assigning to field in a struc

    We have an internal table of about 100 columns. First 7 of them have key values and other fields are data fields. Out of remaining 93 fields, any 2 to 3 fields have data stored in it in each record. Using field symbols in a loop (93 fixed iterations)

  • High Availability Server in Unix Environment - Checking

    Hi experts - I would like to know, how to check in any SAP - CI server is configured for High availablity option ? I have Unix-Solaris installed in my work. Is there any Unix command would show this has HA options? Would appreciate your help. Thanks,

  • Extension Manager CC error code U44M1P34 will not install product

    Received update notice and ran the updater for the Extension Manager CC it turned with an error of U44M1P34 and contact support. Which the automated system fails to offer help for the Extension Manager. Signing out of Creative Cloud and relauching fa