Multiple images tiling when content isn't scrolling

Lookin' for some help here. I'm trying to use style sheets to
have more than one image tile off the page when the content is not
scrolling. Here is my current style sheet, and I'll explain:
html {
background-image: url(images/background.gif);
body {
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
background:url(images/bgBody.gif) repeat-y;
background-position: center top;
When there is not enough content in the body to make it
scroll in a browser window, the image I've set to tile in the
background of the body tag does not tile all the way to the bottom
of the screen (
see
example here). I'm trying to make it so that both the image
I've set for the html tag and body tag tile off the page no matter
how much content there is (
see
example here, disregarding the scrollbar on the side). Any help
or thoughts would be greatly appreciated.

You have a event queue related Problem. Any Event is posted to the event queue and handled by one special event handling thread. So your actionPerformed is executed by this thread too. repaint() does no repaint at all but puts a request for a call to the paint method to the event queue. Both requests are executed, but this is done after the actionPerformed ended. Then the next event can be handled which is a repaint request.
You only can solve this by using Multithreading for your calculations. Do not execute them inside the actionPerformed Method.

Similar Messages

  • Keywords won't Apply to Multiple Images

    I just bought a new iMac and have transitioned to Mavericks and Aperture 3.5.1.  I just noticed that I can't seem to apply keywords to multiple images.  When I select a number of images (usind click then shift-click on the last, or command-click on several), and then drag a keyword onto the selected images, the keyword only appears on one of the images.  I've looked for some setting that needs to be changed, but can't find anythiing.  Any ideas?  Anyone else experienced this?
    Thanks

    Do you have Primary Only set?
    See Tool Strip from the Aperture manul

  • Removing keywords from multiple images when the keyword isn't in the list?

    So, I know that the method for removing a keyword from multiple images is to select the images, type the keyword in the inspector and press Shift-Return.
    However, that doesn't seem to work if the keyword I want to remove is not in the keyword database (i.e. it's not in the keyword HUD).
    For example, I deleted the iPhoto keyword group from the keyword HUD because I decided I didn't like that. I've got a bunch of photos that still have keywords like "Beach (iPhoto)". Typing "Beach" Shift-Return does nothing. Typing "Beach (iPhoto)" Shift-Return does nothing.
    Adding an iPhoto group back to the HUD and a child keyword of Beach and then Typing "Beach" Shift-Return works, but I can't believe that's how it's supposed to work.
    Is that the only way to do this? I've got a lot of those old iPhoto keywords to remove and that's going to be a major pain... there must be a better way.
    PowerMac Dual G5 2.0   Mac OS X (10.4.6)  

    I don't know if this will help you or not but it contains the roots of what you would need to script the removal of unwanted and unlisted keywords.
    -- script begins
    tell application "Aperture"
      -- set the target to the "Smart beetles" album at the top level of the library.
      tell album "Smart beetles" of folder ""
        -- get a list of the images in the album.
        set x to every image version
        -- move through the images one by one, deleting and creating the appropriate keywords
        repeat with i from 1 to x's length
          tell x's item i
            -- Note. if the keyword is top level, then the parents value is "".
            delete (every keyword whose name is "Australia" and parents is "Location")
            make new keyword with properties {name:"Sydney", parents:"Location"}
          end tell
        end repeat
      end tell
    end tell
    -- script ends

  • Scrollview only releasing image data when scrolled out of bounds

    Hi all,
    I cannot understand why my memory isn't released.
    On my iPhone program I have a tableview with an image in each cell. When the images are loaded the I can see a thread in Instruments with ObjectAlloc, that calls CALayerPrepareCommit about 10 times -> CGContextDrawImage->some more stuff->ripc_AcquireImage->more stuff ->imgdatalock. I assume this is where the OS actually draws the Image on the screen. But the memory is never released! Only when I scroll the tableview out of bound is the memory released. Visually the tableview is the same and the images are still there after the scrolling. This is a lot of memory and I need to know why it isn't released.
    I set the image in the tableview here:
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    cell.accessoryType = self.showDisclosureIndicators ? UITableViewCellAccessoryDisclosureIndicator : UITableViewCellAccessoryNone;
    //Clear previous content
    NSArray *subviews = cell.contentView.subviews;
    for (UIView *subview in subviews)
    [subview removeFromSuperview];
    //Set Image
    [cell.contentView addSubview:[thumbnails objectAtIndex:indexPath.row]];
    return cell;
    thumbnails is an array of views:
    while (thumbnailsRemaining && getThumbnails) {
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    UIView *containerView = [thumbnails objectAtIndex:nextThumbnail];
    UIImageView *imageView = [[containerView subviews] objectAtIndex:0];
    NSInvocationOperation* imageOp = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(getImageForImageView:) object:imageView];
    [imageQueue addOperation:imageOp];
    [imageOp release];
    [imageQueue waitUntilAllOperationsAreFinished];
    nextThumbnail++;
    [pool drain];
    and each image is loaded here:
    - (void) getImageForImageView:(UIImageView *)imageView {
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    UIImage *image = [UIImage imageWithData:imageData];
    [imageView setImage:image];
    thumbnailsRemaining--;
    [pool drain];
    I also have a scrollview with images and behaving exactly in the same way when scrolling out of bounds.
    I am really lost, so any help is appreciated.

    When a cell is scrolled out of the visible area, UITableView normally adds it to the reusable cell queue, so that's why you aren't seeing that memory released. I think the queued cells might get released under low memory conditions. You might want to try Hardware->Simulate Memory Warning on the Simulator.
    In any case, see if this link is helpful: [http://idevkit.com/forums/tutorials-code-samples-sdk/2-dynamic-content-loading -uitableview.html].
    \- Ray

  • Scrolling multiple images in scrollPane

    Hey. I want to add multiple images (they are now in movie
    clips) to a scrollPane, and it's giving me more problems than I
    think it should. I thought of adding many images to one movie clip,
    but what I may end up doing is switching the order of the images
    several times, so I began to think of another way.
    What I have now is a scrollPane with two movie clips in it.
    They are on top of one another. I thought that I should be able to
    leave the y value of one at 0 and set the other so that it's 200
    and then they would scroll one after the other. I haven't been able
    to get this to work. Is this something that is do-able within a
    scrollPane, or not? I'm working the best I can with the AS, but
    it's still new to me.
    Thank you for your insight. Create a great day.

    Thank you, I’ve been working on trying your suggestion.
    I’ve been able to attach the movie to the first, however, the
    second movie is not showing up within the scroll pane. To
    complicate matters, the third movie also seems to cancel out the
    second, even when I attach the movie outside of the scrollPane. I
    have one layer, and the movie clips I’m working with are
    Image1_mc, Image2_mc, and Image3_mc.
    My script:
    this.createClassObject(mx.containers.ScrollPane, "my_sp",
    20);
    my_sp.move(0, 30);
    my_sp.setSize(650, 250);
    my_sp.contentPath = "Image1_mc";
    my_sp.attachMovie("Image2_mc", " Image2_mc", 0, {_x:0,
    _y:100});
    my_sp.attachMovie("Image3_mc", " Image3_mc",
    this.getNextHighestDepth(), {_x:0, _y:200});  variations of
    these two lines are what I’ve been tweaking
    var nstepListener:Object = new Object();
    nstepListener.change = function(evt_obj:Object) {
    my_sp.content._alpha = my_nstep.value;
    my_nstep.addEventListener("change", nstepListener);

  • Issues when selecting multiple images in LR6.

    I've noticed a few changes to how LR6 behaves when I select multiple images.
    First, if I select a few images in the Library view, I am only essentially "stuck" in those images when I press the left or right arrow keys. In previous versions of LR, hitting the left or right arrow would move to image on either side of the selected images. Now I'm only able to endlessly scroll through the selected images and I have to press the up or down arrow to get out of the selected images. Is there a way to change it back to how it used to work?
    Second, and I think this is related to the first issue, I used to be able to select all images in a collection, press the down arrow and I'd end up at the last image in a collection. Now, it no longer works.
    Anyone else notice either of these things? Have you found a way to change it back to how it's always been?
    Thanks!

    Interesting. I just went back to LR5.7 (Mac) and confirmed that it behaves just like I originally said, but LR6 does not. Maybe Windows has always been this way? Regardless, any input from Mac users?

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • Why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?

    I took 6 panorama shots of a scene and used CC to Photomerge them as one. Couldn't see where to automatic blend the edges and there was 'stitch' lines when the images were merged. So i did the same in Elements 11 and it was perfect. Am i doing something wrong in CC or perhaps not doing something at all?
    Any help, please?
    Dave

    Hi - Thanks for taking the time to reply and i appreciate the remarks- if a little harsh- we all have to start somewhere and i am fully aware of the limitations of Elements which is why i decided to add CC to my software. I can only say that if an inferior quality software from Adobe does the job well then CC must also be suited to doing the same which is why i can only think, from your comments, that i have not done something simple- however- following tutorials to get to the end result should have sufficed- it didn't so perhaps i will consider posting the difference between the two applications- and, perhaps suffer a few more 'harsh' comments. The learning curve is quite steep and i am a visual learner, but i'm also not totally incompetent:)
    Kind Regards
    Dave Munn
    Original message----
    From : [email protected]
    Date : 02/02/2015 - 06:45 (GMTST)
    To : [email protected]
    Subject :  why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?
        why is elements better at photomerge than CC- CC does not appear to automatically fill image based on content but elements does when merging a panorama. Also the stitching is visable in CC but almost perfect in elements- why?
        created by station_two in Photoshop General Discussion - View the full discussion
    First a clarification: you are not addressing Adobe here in these user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.
    I'll give it my best shot anyway.
    Few folks in this forum are really familiar with Elements, for which there's a dedicated, totally separate forum.
    Different engineering teams, also.
    From this perspective, it will be difficult to give you a direct answer to your "why?" question.
    Personally, I blend very large panorama shots in Photoshop proper since I can't even remember when without any issues whatsoever, up to and including in Photoshop CS6 13.0.6.
    Without being at your computer and without looking at your images, I couldn't even begin to speculate what you are doing wrong in Photoshop, which I suspect you are.  The least you could show is post examples from your panoramas that have gone wrong.
    I can tell you that panorama stitching requires significant overlap between the individual shots, besides common-sdense techniques like a very solid tripod and precision heads.
    The only version of Elements I have ever used for any significant time was Elements 6 for Windows, which I bought in 2008 to use on a PC (I've been an avid Mac user for 30 years).  I found Elements so limited and so bad that I successfully demanded a refund from Adobe.  IU mention this only to emphasize that I can truly only address your question from a Photoshop (proper) and Mac user point of view.  I couldn't care less about Elements, but if you have comparison examples of panoramas processed in both applications, by all means post those two.
    Generally speaking Photoshop is a professional level application that makes no apologies for its very long and steep learning curve, while Photoshop has many hand-holding features for amateurs and beginners.
    Perhaps the bottom line is that you should stick with Elements if you personally manage to get better results there.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7152397#7152397 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7152397#7152397
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Photoshop CC crashes when opening multiple images

    Has anyone else got this problem of PS CC crashing when trying to open multiple images? If you open one file at a time, there are no issues, but 2 or more and it crashes as shown below. I've tried it with JPG's, TIFF's and PSD's and still get the same problem.
    I've also tried starting it while pressing alt/ctrl/shift, but still get the same problem.
    PS CC is version 14.0, 32 bit, running on Windows 7 which is up to date. I do only have 4GB RAM, of which PS takes 60% of it according to the system info panel. Could this be one of the causes, or is it a bug in the software? I never had this problem before in CS6 or previous.
    Thanks in advance.

    Found it eventually!
    Version=1
    EventType=APPCRASH
    EventTime=130184574994126512
    ReportType=2
    Consent=1
    UploadTime=130184574994846553
    ReportIdentifier=a1617567-ee21-11e2-b093-bcaec523c7aa
    IntegratorReportIdentifier=a1617566-ee21-11e2-b093-bcaec523c7aa
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=Photoshop.exe
    Sig[1].Name=Application Version
    Sig[1].Value=14.0.0.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=51763d4f
    Sig[3].Name=Fault Module Name
    Sig[3].Value=ig4icd32.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=8.15.10.2202
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=4c756a62
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000005
    Sig[7].Name=Exception Offset
    Sig[7].Value=0085e7d7
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=2057
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=0a9e
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=0a9e372d3b4ad19135b953a78882e789
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0a9e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0a9e372d3b4ad19135b953a78882e789
    UI[2]=C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.exe
    UI[3]=Adobe Photoshop CC has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\ProgramData\Norton\{0C55C096-0F1D-4F28-AAA2-85EF591126E7}\NIS_20.3.1.22 \Definitions\BASHDefs\20130702.001\UMEngx86.dll
    LoadedModule[5]=C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601. 18120_none_72d2e82386681b36\gdiplus.dll
    LoadedModule[6]=C:\Windows\system32\msvcrt.dll
    LoadedModule[7]=C:\Windows\system32\USER32.dll
    LoadedModule[8]=C:\Windows\system32\GDI32.dll
    LoadedModule[9]=C:\Windows\system32\LPK.dll
    LoadedModule[10]=C:\Windows\system32\USP10.dll
    LoadedModule[11]=C:\Windows\system32\ole32.dll
    LoadedModule[12]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[13]=C:\Windows\system32\mscms.dll
    LoadedModule[14]=C:\Windows\system32\USERENV.dll
    LoadedModule[15]=C:\Windows\system32\profapi.dll
    LoadedModule[16]=C:\Program Files\Adobe\Adobe Photoshop CC\MSVCP100.dll
    LoadedModule[17]=C:\Program Files\Adobe\Adobe Photoshop CC\MSVCR100.dll
    LoadedModule[18]=C:\Windows\system32\OPENGL32.dll
    LoadedModule[19]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[20]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[21]=C:\Windows\system32\GLU32.dll
    LoadedModule[22]=C:\Windows\system32\DDRAW.dll
    LoadedModule[23]=C:\Windows\system32\DCIMAN32.dll
    LoadedModule[24]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[25]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[26]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[27]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[28]=C:\Windows\system32\dwmapi.dll
    LoadedModule[29]=C:\Windows\system32\WS2_32.dll
    LoadedModule[30]=C:\Windows\system32\NSI.dll
    LoadedModule[31]=C:\Windows\system32\WINHTTP.dll
    LoadedModule[32]=C:\Windows\system32\webio.dll
    LoadedModule[33]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[34]=C:\Program Files\Adobe\Adobe Photoshop CC\cg.dll
    LoadedModule[35]=C:\Program Files\Adobe\Adobe Photoshop CC\cgGL.dll
    LoadedModule[36]=C:\Program Files\Adobe\Adobe Photoshop CC\ExtendScript.dll
    LoadedModule[37]=C:\Program Files\Adobe\Adobe Photoshop CC\ScCore.dll
    LoadedModule[38]=C:\Windows\system32\SHELL32.dll
    LoadedModule[39]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[40]=C:\Program Files\Adobe\Adobe Photoshop CC\PatchMatch.dll
    LoadedModule[41]=C:\Program Files\Adobe\Adobe Photoshop CC\tbb.dll
    LoadedModule[42]=C:\Program Files\Adobe\Adobe Photoshop CC\adobe_caps.dll
    LoadedModule[43]=C:\Program Files\Adobe\Adobe Photoshop CC\adbeape.dll
    LoadedModule[44]=C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_ none_50934f2ebcb7eb57\MSVCR90.dll
    LoadedModule[45]=C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_ none_50934f2ebcb7eb57\MSVCP90.dll
    LoadedModule[46]=C:\Program Files\Adobe\Adobe Photoshop CC\AdobeOwl.dll
    LoadedModule[47]=C:\Program Files\Adobe\Adobe Photoshop CC\ahclient.dll
    LoadedModule[48]=C:\Windows\system32\WININET.dll
    LoadedModule[49]=C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[50]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[51]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[52]=C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[53]=C:\Windows\system32\version.DLL
    LoadedModule[54]=C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[55]=C:\Windows\system32\normaliz.DLL
    LoadedModule[56]=C:\Windows\system32\iertutil.dll
    LoadedModule[57]=C:\Program Files\Adobe\Adobe Photoshop CC\AXEDOMCore.dll
    LoadedModule[58]=C:\Program Files\Adobe\Adobe Photoshop CC\MPS.dll
    LoadedModule[59]=C:\Program Files\Adobe\Adobe Photoshop CC\PlugPlugOwl.dll
    LoadedModule[60]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[61]=C:\Windows\system32\MSASN1.dll
    LoadedModule[62]=C:\Windows\system32\IMM32.DLL
    LoadedModule[63]=C:\Windows\system32\MSCTF.dll
    LoadedModule[64]=C:\Program Files\Adobe\Adobe Photoshop CC\tbbmalloc.dll
    LoadedModule[65]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_ 6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    LoadedModule[66]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[67]=C:\Windows\system32\uxtheme.dll
    LoadedModule[68]=C:\Windows\system32\dnssd.dll
    LoadedModule[69]=C:\Program Files\Adobe\Adobe Photoshop CC\AdobeLinguistic.dll
    LoadedModule[70]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[71]=C:\Windows\system32\STI.DLL
    LoadedModule[72]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[73]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[74]=C:\Windows\system32\rsaenh.dll
    LoadedModule[75]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[76]=C:\Windows\system32\wiatrace.dll
    LoadedModule[77]=C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.dll
    LoadedModule[78]=C:\Program Files\Adobe\Adobe Photoshop CC\PSViews.dll
    LoadedModule[79]=C:\Program Files\Adobe\Adobe Photoshop CC\PSArt.dll
    LoadedModule[80]=C:\Windows\system32\c_g18030.dll
    LoadedModule[81]=C:\Program Files\Adobe\Adobe Photoshop CC\amtlib.dll
    LoadedModule[82]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[83]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[84]=C:\Windows\system32\ntmarta.dll
    LoadedModule[85]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[86]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[87]=C:\Windows\system32\apphelp.dll
    LoadedModule[88]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Plug-Ins\Extensions\FastCore.8bx
    LoadedModule[89]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Plug-Ins\Extensions\MMXCore.8bx
    LoadedModule[90]=C:\Program Files\Adobe\Adobe Photoshop CC\libmmd.dll
    LoadedModule[91]=C:\Program Files\Adobe\Adobe Photoshop CC\svml_dispmd.dll
    LoadedModule[92]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Plug-Ins\Extensions\MultiProcessor Support.8bx
    LoadedModule[93]=C:\Program Files\Adobe\Adobe Photoshop CC\PLUGIN.dll
    LoadedModule[94]=C:\Program Files\Adobe\Adobe Photoshop CC\AdobeXMP.dll
    LoadedModule[95]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Plug-Ins\File Formats\Dicom.8bi
    LoadedModule[96]=C:\Windows\system32\WSOCK32.dll
    LoadedModule[97]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[98]=C:\Windows\system32\netutils.dll
    LoadedModule[99]=C:\Windows\system32\srvcli.dll
    LoadedModule[100]=C:\Windows\system32\wkscli.dll
    LoadedModule[101]=C:\Program Files\Common Files\Adobe\Plug-Ins\CC\File Formats\Camera Raw.8bi
    LoadedModule[102]=C:\Program Files\Adobe\Adobe Photoshop CC\BIB.dll
    LoadedModule[103]=C:\Program Files\Adobe\Adobe Photoshop CC\BIBUtils.dll
    LoadedModule[104]=C:\Program Files\Adobe\Adobe Photoshop CC\ACE.dll
    LoadedModule[105]=C:\Program Files\Adobe\Adobe Photoshop CC\AGM.dll
    LoadedModule[106]=C:\Program Files\Adobe\Adobe Photoshop CC\CoolType.dll
    LoadedModule[107]=C:\Windows\system32\DWrite.dll
    LoadedModule[108]=C:\Program Files\Adobe\Adobe Photoshop CC\AXE8SharedExpat.dll
    LoadedModule[109]=C:\Windows\System32\msxml6.dll
    LoadedModule[110]=C:\Program Files\Adobe\Adobe Photoshop CC\AdobePIP.dll
    LoadedModule[111]=C:\Program Files\Adobe\Adobe Photoshop CC\LogSession.dll
    LoadedModule[112]=C:\Program Files\Adobe\Adobe Photoshop CC\WRServices.dll
    LoadedModule[113]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Linguistics\Providers\Plugins2\AdobeHunspellPlugin\AdobeHunspellPlugin.dll
    LoadedModule[114]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Linguistics\Providers\Plugins2\WRLiloPlugin.bundle\WRLiloPlugin.dll
    LoadedModule[115]=C:\Program Files\Adobe\Adobe Photoshop CC\Required\Plug-Ins\Extensions\ScriptingSupport.8li
    LoadedModule[116]=C:\Program Files\Adobe\Adobe Photoshop CC\ScriptUIFlex.dll
    LoadedModule[117]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[118]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[119]=C:\Windows\system32\WINSTA.dll
    LoadedModule[120]=C:\Program Files\Adobe\Adobe Creative Cloud\CoreSync\CoreSync_v_1_1_0_x86.dll
    LoadedModule[121]=C:\Windows\system32\MPR.dll
    LoadedModule[122]=C:\Windows\system32\EhStorShell.dll
    LoadedModule[123]=C:\Windows\system32\PROPSYS.dll
    LoadedModule[124]=C:\Windows\System32\cscui.dll
    LoadedModule[125]=C:\Windows\System32\CSCDLL.dll
    LoadedModule[126]=C:\Windows\system32\CSCAPI.dll
    LoadedModule[127]=C:\Windows\system32\ntshrui.dll
    LoadedModule[128]=C:\Windows\system32\slc.dll
    LoadedModule[129]=C:\Program Files\Common Files\Adobe\APE\3.4\adbeapecore.dll
    LoadedModule[130]=C:\Windows\system32\SXS.DLL
    LoadedModule[131]=C:\Program Files\Adobe\Adobe Photoshop CC\aif_core.dll
    LoadedModule[132]=C:\Program Files\Adobe\Adobe Photoshop CC\aif_ogl.dll
    LoadedModule[133]=C:\Windows\system32\ig4icd32.dll
    LoadedModule[134]=C:\Windows\system32\wbem\wbemprox.dll
    LoadedModule[135]=C:\Windows\system32\wbemcomn.dll
    LoadedModule[136]=C:\Windows\system32\wbem\wbemsvc.dll
    LoadedModule[137]=C:\Windows\system32\wbem\fastprox.dll
    LoadedModule[138]=C:\Windows\system32\NTDSAPI.dll
    LoadedModule[139]=C:\Program Files\Common Files\Adobe\APE\3.4\adbeapeengine.dll
    LoadedModule[140]=C:\Windows\system32\OLEACC.dll
    LoadedModule[141]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[142]=C:\Windows\system32\WINMM.dll
    LoadedModule[143]=C:\Windows\system32\msi.dll
    LoadedModule[144]=C:\Windows\system32\urlmon.dll
    LoadedModule[145]=C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[146]=C:\Windows\system32\DSOUND.dll
    LoadedModule[147]=C:\Windows\system32\POWRPROF.dll
    LoadedModule[148]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[149]=C:\Windows\system32\dbghelp.dll
    LoadedModule[150]=C:\Windows\system32\mlang.dll
    LoadedModule[151]=C:\Windows\system32\icm32.dll
    LoadedModule[152]=C:\Windows\system32\Secur32.dll
    LoadedModule[153]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[154]=C:\Windows\system32\credssp.dll
    LoadedModule[155]=C:\Windows\system32\schannel.DLL
    LoadedModule[156]=C:\Windows\system32\MMDevAPI.DLL
    LoadedModule[157]=C:\Windows\system32\wdmaud.drv
    LoadedModule[158]=C:\Windows\system32\ksuser.dll
    LoadedModule[159]=C:\Windows\system32\AVRT.dll
    LoadedModule[160]=C:\Windows\system32\AUDIOSES.DLL
    LoadedModule[161]=C:\Windows\system32\msacm32.drv
    LoadedModule[162]=C:\Windows\system32\MSACM32.dll
    LoadedModule[163]=C:\Windows\system32\midimap.dll
    LoadedModule[164]=C:\Windows\system32\mswsock.dll
    LoadedModule[165]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[166]=C:\Windows\System32\wship6.dll
    LoadedModule[167]=C:\Program Files\Common Files\Adobe\CEPServiceManager4\lib\ServiceManager-Launcher.dll
    LoadedModule[168]=C:\Program Files\Adobe\Adobe Photoshop CC\updaternotifications.dll
    LoadedModule[169]=C:\Windows\system32\taskschd.dll
    LoadedModule[170]=C:\Program Files\Adobe\Adobe Photoshop CC\IMSLib.dll
    LoadedModule[171]=C:\Windows\system32\SearchFolder.dll
    LoadedModule[172]=C:\Windows\system32\XmlLite.dll
    LoadedModule[173]=C:\Windows\system32\LINKINFO.dll
    LoadedModule[174]=C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    LoadedModule[175]=C:\Windows\system32\explorerframe.dll
    LoadedModule[176]=C:\Windows\system32\DUser.dll
    LoadedModule[177]=C:\Windows\system32\DUI70.dll
    LoadedModule[178]=C:\Windows\system32\msls31.dll
    LoadedModule[179]=C:\Windows\System32\StructuredQuery.dll
    LoadedModule[180]=C:\Windows\system32\IconCodecService.dll
    LoadedModule[181]=C:\Windows\system32\thumbcache.dll
    LoadedModule[182]=C:\Windows\system32\SHDOCVW.dll
    LoadedModule[183]=C:\Windows\system32\ieframe.DLL
    LoadedModule[184]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
    LoadedModule[185]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[186]=C:\Windows\system32\api-ms-win-downlevel-shell32-l1-1-0.dll
    LoadedModule[187]=C:\Windows\system32\actxprxy.dll
    LoadedModule[188]=C:\Windows\system32\NetworkExplorer.dll
    LoadedModule[189]=C:\Windows\system32\samcli.dll
    LoadedModule[190]=C:\Windows\system32\SAMLIB.dll
    LoadedModule[191]=C:\Windows\system32\NetworkItemFactory.dll
    LoadedModule[192]=C:\Windows\system32\dtsh.dll
    LoadedModule[193]=C:\Windows\system32\FirewallAPI.dll
    LoadedModule[194]=C:\Windows\System32\drprov.dll
    LoadedModule[195]=C:\Windows\System32\ntlanman.dll
    LoadedModule[196]=C:\Windows\System32\davclnt.dll
    LoadedModule[197]=C:\Windows\System32\DAVHLPR.dll
    LoadedModule[198]=C:\Windows\system32\LMIRfsClientNP.dll
    LoadedModule[199]=C:\Windows\system32\PortableDeviceApi.dll
    LoadedModule[200]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[201]=C:\Windows\system32\PortableDeviceTypes.dll
    LoadedModule[202]=C:\Windows\system32\mssprxy.dll
    LoadedModule[203]=C:\Windows\system32\EhStorAPI.dll
    LoadedModule[204]=C:\Windows\System32\npmproxy.dll
    LoadedModule[205]=C:\Windows\system32\FunDisc.dll
    LoadedModule[206]=C:\Windows\system32\ATL.DLL
    LoadedModule[207]=C:\Windows\system32\fdproxy.dll
    LoadedModule[208]=C:\Windows\System32\fdwcn.dll
    LoadedModule[209]=C:\Windows\System32\wcnapi.dll
    LoadedModule[210]=C:\Windows\system32\fdWNet.dll
    LoadedModule[211]=C:\Windows\system32\dfscli.dll
    LoadedModule[212]=C:\Windows\system32\browcli.dll
    LoadedModule[213]=C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    LoadedModule[214]=C:\Program Files\Bonjour\mdnsNSP.dll
    LoadedModule[215]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[216]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[217]=C:\Windows\system32\dhcpcsvc6.DLL
    LoadedModule[218]=C:\Windows\system32\dhcpcsvc.DLL
    LoadedModule[219]=C:\Program Files\Internet Explorer\ieproxy.dll
    LoadedModule[220]=C:\Windows\System32\msxml3.dll
    LoadedModule[221]=C:\Windows\system32\ncrypt.dll
    LoadedModule[222]=C:\Windows\system32\bcrypt.dll
    LoadedModule[223]=C:\Windows\system32\bcryptprimitives.dll
    LoadedModule[224]=C:\Windows\system32\GPAPI.dll
    LoadedModule[225]=C:\Windows\system32\ATMLIB.dll
    LoadedModule[226]=C:\Windows\system32\zipfldr.dll
    LoadedModule[227]=C:\Program Files\WinRAR\rarext.dll
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=Adobe Photoshop CC
    AppPath=C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.exe

  • Need to capture multiple image paths for responsive design when only one will be displayed at a time

    I'm new to CQ and am having enough trouble following the documentation on image components as it is (why is there no master reference for all this?). I have a requirement where we need to capture three versions of an image and put the URLs into three attributes of a tag. The appropriately sized image will be selected via JavaScript based on the browser/device capabilities. I need to know how to capture those images when seemingly only one at a time can be dropped onto the page. Or perhaps there is a more CQ solution to this.

    Hi,
    You need to customize image component. I mean selected image is a asset in the repository and each asset by default has 3 rendtion generated when the image is uploaded in the dam.
    For example when you upload image.jpg file into the DAM, standard workflow is launched and after a while inside the repository (see paths) are created following renditions:
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.140.100.png
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.319.319.png
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.48.48.png
    This process can be customized by changing /etc/workflow/models/dam/update_asset.html workflow and modifing "Thumbnail creation" step by adding in the Process tab -> Arguments field new values for new rendition. So for example if you add there [400,400] new rendition will be created in the path
    /content/dam/project/image/image.jpg/jcr:content/renditions/cq5dam.thumbnail.400.400.png
    Next step is to customize jsp for image component. Using path to the drag and dropped image from a component attributes you can easily take all renditions iterating on the /content/dam/project/image/yourimage.jpg/jcr:content/renditions node and then set paths to all renditions in the tag attributes. Then like you wrote using js you can select proper rendition.
    I hope that it hepls you.
    Regards,
    Adam

  • When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail., When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail.

    When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail., When I forward or reply to the email from Mail, the receiver gets it as multiple attachments with no content in the mail.

    That's probably because the message is in HTML format. Send the reply as plain text.

  • Multiple images in pscs5 when importing from bridge

    Hi Guys
    Hope someone can throw some light on my problem?
    When I bring an image from bridge into photoshop CS5 the image sometimes (more than I would like) breaks up into multiple images in the same window. (see attached example). It was suggested that my video driver may need updating but on checking I have the latest drivers!
    This problem has only been happening for about a month and  everthing was working fine before that. Im running win7pro 64 bit and am running photoshop from my ssd drive. The display driver is a Nvidia Geforce 240 which again has been fine previously. Would it be worth unistalling/reinstalling the program, just a thought!
    Any help from you guys would be more than welcome.
    Thanks trev

    Chris and Noel
    Thank you both for your advice. Chris I tried the update driver from Nvidias web site and it also said that my driver was uptodate 'do you want install anyway' which i did! It made a slight difference but still the problem showed up, so I disabled the Open gl drawing box in preferences menu and then reset it changing the advanced setting to normal in the advanced menu. This seemed (not holding my breath) to have done the trick! and Noel I saw the option for what you have said but I didnt have the confidence to go manual, that'll be my plan B.
    Thanks again guys, I'll be back for more advice
    Trev

  • When selecting multiple images in LR 5.2 on Mac, how do I delete all selected photos?

    Based on http://forums.adobe.com/thread/1308132?tstart=0 I decided to add each question seperately:
    Hello, I'm quite interested in buying Lightroom 5.2. I tried the RC which ran out now. Yet, I have a several questions that I can't really find good conclusive answers to, that I'd like to get answered before buying LR. Please don't write maybe like this or that (assumptions), since I don't want to start my whole workflow and then realize that I have to change everything around, so please answer, if you know for sure that something works and you are, preferably, using that method too.
    When selecting multiple images in LR 5.2 RC on my Mac, using the Filmstrip view, how do I delete all selected files using a shortcut (as opposed to the right-click context-menu > remove selected photos)? Details: Using backspace asks me if I want to delete it, I choose from disk, but it just deletes individual photos, so if I have 3 selected, I need to do this 3 times.

    Many users (including me) will thank you for saving us the trouble of looking for this description in the manual. Seriously!
    However, if something performs unexpectedly, if it's not a bug, it's at least a user-inconvenience.
    When an unexpected result like this occurs in a product, often the documentation writer is given the task of writing the workaround into the docs. That's not a great way to fix bugs permanently, even if it does help in the short term. So, it's probably a good idea to point to where in the documentation it seems that the product-performance problem is smoothed over, when filing the report/request.
    Feature enhancement requests and bugs are filed the same way. And, developers do listen to requests. Many features in many Adobe products originated in feature requests. However, product managers and, financial-management folks above them, who have some power to decide where to expend resources, set the priorities. Adobe's new subscription model is supposed to release some of the pressure on developers to meet a new release deadline every-so-often, where a whole bunch of product improvements is revealed, and instead, under the idea of making constant improvements available through more-frequent updates, users will get results sooner.
    dj_paige wrote:
    peter at knowhowpro wrote:
    Have you considered filing a bug report or feature enhanacement request (depends if the develoopers think it's a bug or "as designed") here: LR-WISHFORM
    As far as I know, this is not a bug, this is a feature of Lightroom (although I can't explain why anyone would want Lightroom to operate this way). You can find text in the Lightroom Manual that clearly explains tha operations performed on selection of photos in the Filmstrip is different than the same operation performed on photos selected in the Grid.

  • Hero image shakes when scrolling

    The hero image shakes when scrolling in Safari and IE. Any solutions?
    Many thanks.

    http://gregbareselgolf.businesscatalyst.com/index.html
    Thanks Aish

  • When viewing the weather default app with multiple cities, how come there isn't a one click shortcut to go back to the first city?

    When viewing the weather default app with multiple cities, how come there isn't a one click shortcut to go back to the first city?

    3.2 you can make multiple clocks, each clock can have a different alarm.

Maybe you are looking for