Multiple galleries with accordion

Hi! I've been using Spry for a school project; I've developed
a gallery as an example.
You can see it here:
http://lavalamp.altervista.org/gallery/
I would say that it's finished, but I still have a couple of
issues I want to resolve (or understand, since my goal was not to
build a site, but to explain how Spry works!).
1) Thumbnails: they do not grow "centered"; the grown image
is positioned a little on the left. Why?
2) Thumbnails again: the images are larger than they look
(they are, more or less, 150x150 while on the screen they are
75x75). The grown thumbnails look "zoomed" and grainy even if the
images could be enlarged without any zoom effect. Is there any way
to fix this?
3) Accordion height: I found that the only way to change its
height is change the AccordionPanelContent height, and specify it
in PIXEL. A height in % is ignored. Is this intended? How could I
make an accordion that adapts itself to the browser's height?
4a) The browser: with Internet Explorer 6, the accordion does
not close its panels! Why?
4b) The browser again: Internet Explorer 6 shows the
thumbnail's "alt" text, Firefox doesn't, but I think this is a
browser issue, not Spry's
5) I'm not completely satisfied with the way thumbnails are
loaded; I made every thumbnail have a "parent ID" and every gallery
have an ID, then I check when they match and build the panels
accordingly. It seems the only way to go with this version of Spry.
6) The "repeatchildren" instruction: I thought it was meant
to cycle through the childrens of an xml node, but it seems to do
something else. I didn't really understand the difference between
repeat and repeatchildren.
It's all that comes to my mind. Thank you for any help or
suggestion.
Simone

Hi Simone,
I will answer to some of your questions for the moment but I
don't have an answer to all of them.
1) You have into your page the images centered by CSS:
text-align:center. In the same time the Grow Shrink effect will try
to center the image while zooming.
For this we calculate the new image size and we move the left
corner with half of the difference between the dimentions. In this
case the image will have the center in the same place and grow left
and right size equaly.
In your situation the shift will happen only after the
browser re-centered the zoomed image. The combined effect is the
one you see and the image instead of being centered is zoomed
entirely to left.
In this case you should loose one of the centering systems.
If you want the Grow Shrink effect to stop centering while zooming
you'll have to add the following option: growCenter:false
Spry.Effect.GrowShrink(targetElement, {duration: 400, from:
'100%', to: '200%', toggle: true, setup:setzindex,
finish:resetzindex, growCenter:false});
In case you want to remove the CSS text-align to center you
need to center the initial images view by specifing a margin-right
to each div.
2) This seems to be a problem mainly generated by the way the
browsers zoom the images. It appears that after the page is
rendered if you have a larger image with width and height specified
they transform the loaded images rendered to those dimensions. When
we specify the new width and height for the image they will
increase the values for the computed image and will not use the
original one. In this situation we don't have much to do.
4b) The IE as we know always does some things accordingly to
its free will. Here are some examples:
- A form element without an id attribute defined but with the
name attribute defined will take as id the name value messing lots
of JavaScript codes.
- For images if the title is not defined IE will
automatically pre-fill its value from the alt attribute. In you
situation you'll have to add also empty title attributes to force
it stop behaving the way it does.
5) 6) We are working on nested-structure as we speak. More
details about this you may find in previous answer of one of my
colleagues:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=602&threadid=1231616&fo rumid=72.
Cristian MARIN

Similar Messages

  • Trying to post multiple galleries

    I'm using iphoto 08 and I would like to do the following:
    1. have multiple galleries with their own user names and pw. For example, three galleries for Japanese Trip and two galleries for Ski Trip. For those people invited to the Japanese Trip galleries, they should be able to see all three sets, but not the Ski Trip sets. Is there anyway to do this if I only have one .mac account?
    2. I would like to be able to publish some of my galleries to a different server (my own domain name - not .mac) Is that possible?
    Thanks,
    peter
    Message was edited by: Peter Bratti

    1. have multiple galleries with their own user names and pw. For example, three galleries for Japanese Trip and two galleries for Ski Trip. For those people invited to the Japanese Trip galleries, they should be able to see all three sets, but not the Ski Trip sets. Is there anyway to do this if I only have one .mac account?
    Sort of - Not what you request where a password controls which galleries people see but you can "hide" a gallery - gallery settings ==> advanced ==> "hide album on my web gallery page" - then people will need the exact URP to see it
    Hide controld seeing or not seeing a gallery
    Password controls accessing or not accessing a gallery - there is not way to make "sets" of galleries - each stands alone in each of the attributes.
    2. I would like to be able to publish some of my galleries to a different server (my own domain name - not .mac) Is that possible?
    Not as web galleries - you can post iWeb pages and there are third party web layouts but much of the Web Gallery is server side controlled and you can only access it via .Mac
    LN

  • Can I use the "same" button multiple times for multiple galleries?

    OK so I am extremely untrained in CS4 and Actionscript. However I have managed to get along fairly well until I started to dynamically upload images as a gallery. This works great if I have one gallery, but for my site I have 9 galleries!!! I have a back and next button, but I want to be able to use those same buttons for all of the galleries so they look the same. I have split them up and renamed them, but I am clueless on how to script the buttons to work. Please help...and don't laugh at my poor scripting. This is what I have now because I do not know where to put the other button names without getting errors.
    stop();
    next_btn .addEventListener(MouseEvent.CLICK, nextImage);
    var imageNumber: Number=1;
    function checkNumber(): void{
        next_btn.visible=true;
        back_btn.visible=true;
        if(imageNumber==15){
            trace(imageNumber);
        next_btn.visible=false;
        if(imageNumber==1){
            trace(imageNumber);
        back_btn.visible=false;
    function nextImage(evtObj:MouseEvent):void {
        imageNumber++;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();
    back_btn .addEventListener(MouseEvent.CLICK, backImage);
    function backImage(evtObj:MouseEvent):void {
        imageNumber--;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();

    I'm still a novice with Flash myself, but I have two comments.
    First, at this point, won't your buttons control all galleries at the same time? Which means, if I go to image 5 in one gallery, then move to another gallery, I'll start at image 5, because the actions are all connected.
    Second, you can definitely use the same buttons for multiple galleries. It seems to me that as long as you've assigned the buttons an instance name, these actions should already work to control all the galleries (see the note above). I guess I would need to understand a bit more about how your project is built.

  • Problem when importing two photo galleries with the same name. Please Help!

    Hi Guys,
    I'm not a pro in dreamweaver so I would appreciate if your answer wouldn't be too technical...
    Anyway I have experienced a problem. Heres the sotory, I have been making a websie in DW and used Adobe Bridge CS5 to create a photo gallery SWF file that I would use for my website. The problem is that I want to use two different photo galleries on two different pages however when I save my second photo gallery in bridge, it saves every file with the exact name as the first photo gallery I created and is working fine... Thus when I try to import the photo gallery files into my website folder structure, I find that it asks me to rename them because the files from the first photo gallery are called the exact same names.. Now obviously when I try to rename them dreamweaver gets confused and goes to the wrong folder and uses the images from my first photo gallery in the second one.
    So I guess my question is how can I organize my folder structure to be able to import multiple galleries without dreamweaver getting confused because bridge names all the files the same. Or how could I save the files through bridge so that they have different names and will work fine when I import into DW...
    Thanks and sorry for the essay,
    Patrick

    #1 You cannot have two files / folders or galleries with the same name.  Redo your image Galleries with different names.
    #2 SWF (flash) is not visible to iPhone, iPad, iTouch, Android or other web devices that don't support Flash Player.  These users will see nothing.  You might wish to explore other photo gallery / slideshow options that rely on jQuery instead of Flash technology.  Some links below.  A Google search will reveal many others.
    jQuery WOW Slider
    http://wowslider.com/
    jQuery Cycle
    http://www.malsup.com/jquery/cycle2/
    jQuery Nivo Slider
    http://dev7studios.com/nivo-slider/
    Nancy O.

  • After installing 2014.3 my site had multiple issues with Google Chrome

    After installing 2014.3 my site had multiple issues with Google Chrome. After I rebuilt the home page in 2014.3 the site is still not well. With the old software the site worked well with all the browsers and loaded incredibly. Despite Adobe's claim of a faster load with the new software it is much slower and in Chrome at times it won't load up at all.
    The home page had two "Video-Animation light box galleries" by Visual pictures company. One had 12 videos, the other 3 videos. All the videos were streamed from Vimeo. There was also an Edge Animate animation in the middle of the page imported as a .oam file. the rest of the page was nothing special except using some web fonts. Again, these elements worked together well before the update.
    After the update everything loads slower in all browsers and in Chrome all types of weirdness happened. Videos would play randomly, all of the audio from all the videos played as the site loaded. Videos would play in the wrong place. Instead of my animation playing a video from the galleries played in it's place instead.
    I rebuilt most of the home page using a new video gallery and that helped some what but when I placed the animation.oam file in the page had new issues. To survive, I've taken the Animation out which helped but the functionality is still far from being acceptable. My boss is un my backside, other work is not getting done the stress level is through the roof because I was the one who encouraged using all these new Adobe tools (which I'm paying for personally). Now you broke it with a new update. This is not the first time I've been caught out with problems with updates. I couldn't use SpeedGrade for months following an update. ADOBE MUST VET THEIR       

    Sorry,
    It was slated to go to the Creative Cloud - Muse area. How it got to Photoshop is beyond me.
    Bob

  • Creating Web Galleries with LR

    A few questions...
    LR writes the images to /bin....where is this? I want to check the size of the files it is writing.
    Also, is there a way to create a gallery with multiple galleries, or does each gallery have to be created on its own?
    Can the templates be edited, for instance can the back/index/next positions be altered?
    Finally,can the galleries once created be incorporated into a web site? I think the method is frames or i frames?
    A newbie, sp please be gentle :-)
    Phil

    You can check the file sizes when you export. Prior to that, the files are written to a temporary directory. Where that is located is anybody's guess.
    The reason there are three different sizes written on export is that the Flash gallery will compare the screen size of the person viewing the gallery to the files and will load those files which are most appropriate for the user's screen.
    If you want the files to be smaller, you can adjust the quality of the JPGs in the panels to the right side of the interface. By moving the image quality down to 80 or 75 percent, you'll find a significant difference in the size of the exported gallery, with very little perceivable drop in image quality on screen.
    So far as I've found, you cannot modify the template files that ship with Lightroom, though you can certainly create your own custom galleries. I've done just that, and released it publicly only three hours ago:
    http://theturninggate.com/blog/adobe-lightroom-slimbox-template
    If you're interested in making templates of your own, http://www.lightroomgalleries.com is a good place to get started.
    As for integrating Lightroom galleries into existing websites, you need to use frames or iframes with the Flash galleries. With the HTML galleries, you'd probably do best simply to use your site as an index linking out to the gallery.
    Using my slimbox template, however, it should be much simpler. I haven't actually tested it yet, but it's something that was high on my priority list in making the template.
    Theoretically, you should be able to copy the full contents of the "lightboxgallery" DIV and paste them into any page. Do a batch Find & Replace to set the correct path to the images and thumbnails wherever you choose to put them, then be sure to include the Javascript and Stylesheet in the head of the path (also with correct path). There's no reason I can see that the code can't run from any page on any site so long as the connections are in place. And because the gallery runs from a single HTML file, it's dead simple to sort it all out.
    I hope that answers all the questions.
    Matt

  • Multiple Galleries

    I would like to give my app user multiple galleries from which they can choose a background for a screen,
    how  can I achieve this?

    Hi Joel,
    There are two ways you could look at this, either:
    1) You could leverage the same technique that we suggested
    here for a similar question you asked. The question was about shapes, but the same learnings will apply to the
    'Fill' of the Canvas Screen.
    OR
    2) If you have to leverage galleries, then you could do the following:
    - Drop a Custom Gallery, called Gallery1
    - Set its 'Data' property to the list of colours you intend to expose i.e ["Red", "Blue", "Green"]
    - Then Add a Label visual to Gallery1, called Label1. You will have to re-adjust the size of the label so it fits nicely into
    Gallery1
    - Set Label1's 'Fill' property to ColorValue(ThisItem!Value). Now you should notice that each item in
    Gallery1 has a different colour
    - Proceed to set the 'Fill' property of the Canvas Screen to
    ColorValue(Gallery1!Selected!Label1!Text)
    Now when you select an item with Gallery1, the Canvas Screen should also change to match that colour.
    Hope this helps.

  • Dreamweaver simpleviewer multiple galleries button links help

    I am trying to do this:
    http://www.airtightinteractive.com/simpleviewer/examples/multiple_galleries/gallery1/index .html
    and here is another good example
    http://www.designhousestudios.co.uk/sampleportfoliogallery/sampleportfolio.html
    on my page here:
    http://peachtree-designs.com/
    This seems to be the code that pertains to the different slideshows (this is from the example webpage of how I want it to be):
    <div id="header" >
    <a href = "../gallery1/index.html">Gallery 1</a> | <a href = "../gallery2/index.html">Gallery 2</a>
    </div>
    <div id="flashcontent">SimpleViewer requires JavaScript and the Flash Player. <a href="http://www.macromedia.com/go/getflashplayer/">Get Flash.</a></div>
    <script type="text/javascript">
    The "Simple" Viewer slideshow gives instructions on how to simply embed  and I have done that successfully, a link is here in case you want to check it out:
    http://www.airtightinteractive.com/simpleviewer/examples/embedded/
    I have this working fine but would like to embed several galleries. The instruction page of "simple"viewer says to create multiple galleries you just need to:
    " ...To create multiple SimpleViewer galleries, make a copy of the whole SimpleViewer gallery folder for each gallery. Create your individual galleries as normal. You can now create a menu page that links to the index.html page in each sub-folder. Here is an example that contains a menu to navigate between 2 SimpleViewer galleries."
    My confusion lies in what the heck a menu page is. I have ignored this all together and tried looking at the code from pages that give examples. especially the page that gives a download of html.
    But I don't understand how to link the buttons in Dreamweaver to create different slideshows. I've put the four slideshow folders (print, illustration, logo, design) into my main HTML page. I assume the solution is to put the code mentioned above in for each slideshow/gallery .. reference each gallery by my folders names but then somehow make the DW buttons link to those folders.
    I'll keep poking around at this and see if I can figure it out, but any input, advice or help would be SO very appreciated. If you would speak in laymans terms I'd appreciate it, I know flash well but am new to dreamweaver and not very good at codeing though I manage.
    Thanks so much in advance, sorry this is so long winded.
    sharon

    I'm actually still having a problem with the individual galleries linking to the swf. Here's an explination and I'm attaching a snapshot of the file folder structure and the html's:
    Thanks for responding :) I feel like I'm almost there, been struggling with this for a week.
    my site is here:
    http://peachtree-designs.com/web.html
    I am going with a different approach, instead of trying to link the graphics from within each gallery folder I am instead placing each gallery html outside the individual gallery folders in my root folder ... then trying to link the main html page to each html gallery file, and have each gallery file link/see the swf galleries within the folders.
    I have made separate gallery folders for each gallery, print, logo ect is in it's separate folder in the root folder of my website.
    In the main root folder I have the index.html *plus* I've put each galleries html file *outside* it's folder but directly in the root folder, so the main html webpage file can link (with the buttons) to each gallery html in the root folder.
    Problem is getting the galleries html's to connect/link to the swf gallery in each gallery folder (within the root folder) (I'd put the html's directly in it's gallery folder but then the graphics links break). "gallery not found" is what I get and I'm not sure how to do this. In the code of each gallery html is this:
      <td valign="top"><script type="text/javascript">
    var fo = new SWFObject("illustrations/viewer.swf", "viewer", "500", "500", "8", "#c5bdb2");
    fo.write("flashcontent");    
        </script></td>
    so the gallery html's in the root folder *should* be directed to each swf in it's gallery folder: illustrations/viewer.swf .. print/viewer.swf ... etc ... but it's not working.
    I'm going to try to just attach my whole site in case someone can take a look and tell me what's wrong. It's large but I'm desperate and it's hard to explain.

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge.
    I am using  the edge commons JS library to load multiple compositions into a main composition.
    You can see how this works here: Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    The way the edge commons tutorial is set up requires a button for each composition i want to load. I am interested in loading multiple compositions with a "next" and "back" button, and a "swipe left, "swipe right" gesture on the content symbol that each composition is loaded into. I also need the swipe features on the content symbol not to interfere with the interactive elements on the loaded composition.
    Please suggest a solution that will work without adding additional scripts beyond edge commons and jquery.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • There are multiple users with the same display name

    Hi,
    We have a user and when she get an item assigned to her she sees the following alert:
    "There are multiple users with the same display name USERNAME and at least one of them does not have read permissions to some of the files"
    Now I looked in the database and when I run the following query with the username:
     SELECT     
         [ProviderDisplayName]  
        ,[DisplayName]  
        ,[HasDisplayName]  
        ,[Domain]  
        ,[AccountName]  
        ,[UniqueUserId]  
        ,[LastSync]  
      FROM [Tfs_Configuration].[dbo].[tbl_Identity] where displayname like '%USERNAME%'  
    Then I get 2 same usernames back, How can I get rid of one of them ? When I access TFS trough the portal I only find 1 occurence of this user.
    We use VS2013 and TFS2013 update 4
    Best regards

    Hi DSW,  
    Thanks for your post.
    In your query result, please check if these two users have the same Account Name. if they are two different Account Name in result, it indicate there’s two users have the same display name in your AD, please check that two users’ information in
    your AD. We suggest change one user’s display name in AD.  
    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.

  • Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Using multiple desktops with a 4 finger swipe on a Mac Book Pro running Lion- is there a way that I can allow Safari open on several but not all??  Looks like I can set it for one but not others.  All, one, or nothing

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • Bridge CS4 won't output to pdf multiple images with same filename

    Hiya...my googling efforts have thus far failed!
    I've got CS4, and in Bridge, I created a New Smart Collection to find all filenames in a folder containing "." or ".jpg" - which in turn searched through all the subfolders like what you used to be able to do in Photoshop CS3.  Very simple stuff, but all the images are jpg's, but in multiple folders (I don't want to move them out of the folders, as the files came from an external source, and there are heaps of folders, and I don't want to pdf each subfolder seperately as it will take forever).
    The problem is that some of the files have the same filenames (again I'd prefer not to rename, as it happens a lot on this project, and they are all over the place).  So whilst Bridge will show the thumbnail images correctly in the content tabbed screen in my New Smart Collection, but once I've done the Output to PDF thing, for example, instead of showing both different images it has pdf only the first image but repeated it twice.  And this happens multiple times throughout the pdf, the more times the same filename is used, the more times the first image gets repeated.
    I know that it is messy to have multiple similar filenames, but why can't bridge just place the image anyway?  It allocated a space for it on the pdf and does show it in bridge, it just doesn't seem to survive the transfer to pdf well.
    The only other thing that I have done is use the below link (which was posted on another adobe forum thread) to create a custom pdf output template (nothing too fancy, just number of rows / columns, size, font etc).  But I've tried using the standard bridge templates and it does the same thing.
    http://www.proficiografik.com/2009/08/03/save-custom-pdf-output-template-in-adobe-bridge-c s4.html
    Any help would be appreciated...even if to tell me that I am being unreasonable!
    UPDATE 16/11/09
    Just to let you know that I seem to have resolved the bug inadvertently with one of the Adobe updates. The below is the link for the AdobeOutputModule-2.1-mul-AdobeUpdate.zip which was released on 2/19/2009 - which allows for headers & footers to be placed in the Ouput pdf. I finally installed it today, and everything seems to be working fine now (i.e. I can pdf multiple images with the same filenames and the pdf will actually show each different image rather than repeating only 1 of the images).
    Must have been a fix installed in the contact sheet templates that get installed with the update - not sure why the original version was corrupted, but I've left that with the Adobe guys (I submitted a bug report - and they were able to replicate the problem but hadn't fixed it as yet).
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    Message was edited by: djtun71 (16/11/09)

    When I click import from disc I am asked to choose a disc and then I get this message:
    The following photos will not be imported because they are already present in the catalog. To see these photos in the catalog select 'Show in Library' (the import will be canceled).
    This is followed by a long list of images. If I click 'Show in Library' I can see all the images with the same filename. And then they start to automatically write over those images with images from the disc. However they keep the same metadata and keywords from the previous images. If I click on Import and deselect the "don't reimport suspected duplicates" box, it imports only the images that don't share filenames and none of the images that do.
    Is there a way of setting the "Don't reimport suspected duplicates" box in preferences?

  • Multiple Issues with Adobe Creative Cloud app.

    I'm having multiple issues with the Adobe Creative Cloud app.
    1. Neither Photoshop CC nor Prelude CC get past the 47% mark when installing. They constantly give me "Installation Failed" messages. When I click on "Learn More", I'm told that:
    "Installation Failed
    Errors during Installation.(7)
    More Information"
    So naturally, I click on More Information to get the following thrown at me (none of which I understand):
    Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR:   -------------------------------------- Summary --------------------------------------  - 0 fatal error(s), 2 error(s)    ERROR: 12/01/13 13:16:06:425 | [INFO] |  | OOBE | DE |  |  |  | 6076 | ---------- CustomHook_Helperx64 ---- Start ----------  12/01/13 13:16:06:426 | [ERROR] |  | OOBE | DE |  |  |  | 6076 | Cannot load function name 'CSInstallerCustomHookProc' from library C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{5F816B76-62F3-41C9-B651-27F49F25F50B}.data. Error 0    ERROR: System check returned with error : -4  -------------------------------------------------------------------------------------
    2. I installed Lightroom 5, then uninstalled it. When I went back to re-install it, the Adobe Creative Cloud app wouldn't let me. It states that my Lightroom 5 is "Up to date" and is in my "Your Apps" section, not in the "Find New Apps" section. I've double checked my Programs and Features in Control Panel, and it's not there. I cleaned my registry, and it's still there. I deleted the "opm.db" file in my OOBE folder, and restarted CC - still nothing.
    I've got to say, guys. I'm not very happy with the amount of time I've spent just trying to install programs on my PC. While the plan is for this to be intuitive at some point, it's not very functional at the moment. Any help you can provide me would be amazing - if you can provide it sooner than later, I'd be over the moon.
    Thanks.

    I fixed it. I fixed it on my own. My journey took over a week (forty hours of back and forths, trial and error, and service!!) and included multiple calls, multiple online chats, unanswered forum posts, Twitter conversations with the Adobe Customer Service team, remote access sessions with Adobe technical teams, and finally this series of emails. In the end, I had to figure it out myself. I'm not happy - not with the time it took, and not with the level service I received based on the urgency that I made clear.
    For anyone else that had this issue (or similar), here is what I did to fix it. This may seem excessive, but that's because I didn't know what else to do. Some of these steps may be redundant, or not required... but I wouldn't know because once I saw that it was working, I just kept going.
    Anyway, here is the solution I came upon (I'm running Windows 7 64-bit):
    1) I uninstalled every single Adobe product (including Flash Player, Acrobat Player, Air, and Digital Editions).
    2) I ran the Cleaner Tool (which is not very good) and came across errors in trying to delete certain folders.
    3) I restarted my computer in Safe Mode, and logged into Windows 7 under my Administrator account.
    4) I manually went into every folder that contained the words "Adobe" and deleted everything. This includes my Program Data folder, my Program Files folders (both x86 and 64-bit), my AppData folders, my Roaming folders, my Temp folders - ANYTHING and EVERYTHING that contained any trace of Adobe, I deleted.
    5) I ran Microsoft Disk Cleanup and Piriform CCleaner to clean my registry and temp files.
    6) I restarted my computer using the normal boot process and logged into Windows as Administrator.
    7) I downloaded the Adobe Creative Cloud installer.
    8) I restarted my computer again, and logged into Windows as Administrator.
    9) I ran the Creative Cloud installer, and installed Premiere Pro.
    10) I restarted my computer again, and logged into Windows as Administrator.
    11) I ran the Creative Cloud installer, and installed Photoshop.
    12) I restarted my computer again, and logged into Windows as Administrator.
    13, 14, 15...) I ran the Creative Cloud installer and installed whatever programs I needed, then I IMMEDIATELY restarted my computer before installing anything else.
    Hope this helps. Good luck!

  • Upload multiple files WITH correct pairs of form fields into Database

    In my form page, I would like to allow 3 files upload and 3 corresponding text fields, so that the filename and text description can be saved in database table in correct pair. Like this:
    INSERT INTO table1 (filename,desc) VALUES('photo1.jpg','happy day');
    INSERT INTO table1 (filename,desc) VALUES('photo2.jpg','fire camp');
    INSERT INTO table1 (filename,desc) VALUES('photo3.jpg','christmas night');
    However, using the commons fileupload, http://commons.apache.org/fileupload/, I don't know how to reconstruct my codes so that I can acheieve this result.
    if(item.isFormField()){
    }else{
    }I seems to be restricted from this structure.
    The jsp form page
    <input type="text" name="description1" value="" />
    <input type="file" name="sourcefile" value="" />
    <input type="text" name="description2" value="" />
    <input type="file" name="sourcefile" value="" />The Servlet file
    package Upload;
    import sql.*;
    import user.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Date;
    import java.util.List;
    import java.util.Iterator;
    import java.io.File;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.text.SimpleDateFormat;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.*;
    public class UploadFile extends HttpServlet {
    private String fs;
    private String category = null;
    private String realpath = null;
    public String imagepath = null;
    public PrintWriter out;
    private Map<String, String> formfield = new HashMap<String, String>();
      //Initialize global variables
      public void init(ServletConfig config, ServletContext context) throws ServletException {
        super.init(config);
      //Process the HTTP Post request
      public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        Thumbnail thumb = new Thumbnail();
        fs = System.getProperty("file.separator");
        this.SetImagePath();
         boolean isMultipart = ServletFileUpload.isMultipartContent(request);
         if(!isMultipart){
          out.print("not multiple part.");
         }else{
             FileItemFactory factory = new DiskFileItemFactory();
             ServletFileUpload upload = new ServletFileUpload(factory);
             List items = null;
             try{
                items = upload.parseRequest(request);
             } catch (FileUploadException e) {
                e.printStackTrace();
             Iterator itr = items.iterator();
             while (itr.hasNext()) {
               FileItem item = (FileItem) itr.next();
               if(item.isFormField()){
                  String formvalue = new String(item.getString().getBytes("ISO-8859-1"), "utf-8");
                  formfield.put(item.getFieldName(),formvalue);
                  out.println("Normal Form Field, ParaName:" + item.getFieldName() + ", ParaValue: " + formvalue + "<br/>");
               }else{
                 String itemName = item.getName();
                 String filename = GetTodayDate() + "-" + itemName;
                 try{
                   new File(this.imagepath + formfield.get("category")).mkdirs();
                   new File(this.imagepath + formfield.get("category")+fs+"thumbnails").mkdirs();
                   //Save the file to the destination path
                   File savedFile = new File(this.imagepath + formfield.get("category") + fs + filename);
                   item.write(savedFile);
                   thumb.Process(this.imagepath + formfield.get("category") +fs+ filename,this.imagepath + formfield.get("category") +fs+ "thumbnails" +fs+ filename, 25, 100);
                   DBConnection db = new DBConnection();
                   String sql = "SELECT id from category where name = '"+formfield.get("category")+"'";
                   db.SelectQuery(sql);
                    while(db.rs.next()){
                      int cat_id = db.rs.getInt("id");
                      sql = "INSERT INTO file (cat_id,filename,description) VALUES ("+cat_id+",'"+filename+"','"+formfield.get("description")+"')";
                      out.println(sql);
                      db.RunQuery(sql);
                 } catch (Exception e){
                    e.printStackTrace();
            HttpSession session = request.getSession();
            UserData k = (UserData)session.getAttribute("userdata");
            k.setMessage("File Upload successfully");
            response.sendRedirect("./Upload.jsp");
      //Get today date, it is a test, actually the current date can be retrieved from SQL
      public String GetTodayDate(){
        SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
        String today = format.format(new Date());
        return today;
      //Set the current RealPath which the file calls for this file
      public void SetRealPath(){
        this.realpath = getServletConfig().getServletContext().getRealPath("/");
      public void SetImagePath(){
        this.SetRealPath();
        this.imagepath = this.realpath + "images" +fs;
    }Can anyone give me some code suggestion? Thx.

    When one hits the submit button - I then get a 404 page error.What is the apaches(?) error log saying? Mostly you get very useful information when looking into the error log!
    In any case you may look at how you are Uploading Multiple Files with mod_plsql.

  • BO xi 3.1 u2013 schedule a template for multiple reports with different column

    Hi,
    I need to migrate the existing reports from SQL Server Reporting Services to BO, and the column order in the report is very important to the clients since clients have existing code to ingest these reports into their database. Now I want to schedule a single template with different parameters for all reports in BO, or create a single template with lot of parameters for all reports. My question is how I might use one template to create multiple reports with different column orders in the reports?
    For example, client A has the following column order in their report: firstName, LastName, DateBirth, SSN. Client B has the following column order in their report: SSN, DateBirth, LastName, FirstName. Can I use one template to create these multiple reports?
    Thanks!

    Hi,
    The only approach I can think of is to create a template report which uses variables
    For each column you would need to variable
    v_columnAName and v_columnAValue
    v_columnAName would have a if statement in it
    =if([client]="clientA" or [client]="clientC";NameOf([firstName]);if([client]="clientB";NameOf([SSN]);NameOf([lastName]));
    v_columnA would have a if statement in it
    =if([client]="clientA" or [client]="clientC";[firstName];if([client]="clientB";[SSN],[lastName]));
    This would only work when you had a small set of clients.
    This might be more managable if it was done in the universe
    Regards
    Alan

Maybe you are looking for

  • Release Strategy vs. Delete (Purchase Requisition)

    When my Purchase Requisition hasn't got a Release Strategy I can mark it as deleted using BapiDelete from the Purchase Requisition business object. But when is has got a Release Strategy I can not. Is it right? Am I missing something? Or maybe haven'

  • Why Apple iPhone doesn't have Khmer Fonts Original language???

    Why Apple iPhone doesn't have Khmer Fonts Original language??? A lot of people using iPhone at Cambodia, So Please Apple make the Khmer Language in iDevices for Cambodian who always love Apple so much...

  • Get JCR Session in workflow in  CQ 5.5

    HI I am trying to get javax.jcr.Session in my workflow public class GroupCreatorWorkflow implements WorkflowProcess{         private static final Logger log = LoggerFactory.getLogger(GroupCreatorWorkflow.class);         private ResourceResolverFactor

  • OS X realms and internet explorer v6 and v7

    Hi, I have set up and configured a site that uses realms to secure a section of the site. I can use safari and firefox for os x to navigate to this page and get the authentication box to log in to the realm. However if i use IE 6 or 7 it just comes u

  • Namespace Definition Activation Error

    Hi All, I am trying to activate the Namespace Definition but I am getting the following error The following objects have previous versions that are no longer active: Namespace Definition 6386e80038e711debfd7c9f30a02816a Namespace Definition 6386e8003