Auto tile 100's of images?

Hey guys, i have used batch process to make a whole bunch of photos one size.  I need to create a single 'photo wall' jpg out of them in which they're all tiled, the long way of doing this is to obv open them all and copy, paste into the psd, then flatten, but thats really, really time consuming.  I was wondering if anyone knew if photoshop had any type of auto import & tile feature?  I may have to do this a 2nd time with 1000's of images so I'm really hoping there's a more time friendly method.. Thanks

My script will do the whole process of masking the images to the tile size and lay out the tiles 1200 images are a lot of images however Photoshop can handle up to 8000 layers. Still an image that large is going to take a lone time to create. If images are 4x5 portraits 300dpi would be 60" wide and 33.333 feet long 60x300=18,000 pixel wide 400x300 120,000 pixels high. That is 2,160,000,000 pixels over 2GP I do not know if it could be printed???  Script is not hard or the complicated.
/* ==========================================================
// 2012  John J. McAssey (JJMack)
// ======================================================= */
// This script is supplied as is. It is provided as freeware.
// The author accepts no liability for any problems arising from its use.
/* Help
<javascriptresource>
<about>$$$/JavaScripts/PasteImageRoll/About=JJMack's PasteImageRoll^r^rCopyright 2012 Mouseprints.^r^rCreate a document for printing on roll paper^rcan also be used as a wall hanging when^rall selected images have the same orientation.^rImages will be rotated to match cell orientation</about>
<category>JJMack's Collage Script</category>
</javascriptresource>
//Set Defaults here
var dfltRes = 300;          // default print DPI
var dfltCpys = 1;          // default image copies
var dfltPw  = 16;          // default roll paper width in inches
var dfltPl  = '';          // default roll paper length in feet. if set to null script will use 100 ft.
var dfltCw  = 4;          // default cell width in inches best if it divides paper with evenly.
var dfltCh  = 6;          // default cell height in inches
//End Defaults
var startRulerUnits = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS; // tell ps to work with pixels
try {
          // begin dialog layout
          var RollPaperDialog = new Window('dialog');
          RollPaperDialog.text = 'Paste Image Roll';
          RollPaperDialog.frameLocation = [70, 70];
          RollPaperDialog.alignChildren = 'center';
          RollPaperDialog.PrintResPnl = RollPaperDialog.add('panel', [2, 2, 200, 56], 'Print Resolution');
                    RollPaperDialog.PrintResPnl.add('statictext', [10, 16, 50, 48], 'DPI ');
                    RollPaperDialog.PrintResPnl.docResEdt = RollPaperDialog.PrintResPnl.add('edittext', [50, 13, 90, 34], dfltRes, {name:'prtRes'});
                    RollPaperDialog.PrintResPnl.docResEdt.helpTip = 'Image Resolution';
                    RollPaperDialog.PrintResPnl.add('statictext', [96, 16, 140, 48], 'Copies ');
                    RollPaperDialog.PrintResPnl.imgCpysEdt = RollPaperDialog.PrintResPnl.add('edittext', [140, 13, 175, 34], dfltCpys, {name:'imgCpys'});
                    RollPaperDialog.PrintResPnl.imgCpysEdt.helpTip = 'Number of copies of selected Images';
          RollPaperDialog.PaperSizePnl = RollPaperDialog.add('panel', [2, 2, 200, 56], 'Roll Paper Size');
                    RollPaperDialog.PaperSizePnl.add('statictext', [10, 16, 50, 48], 'Width ');
                    RollPaperDialog.PaperSizePnl.aspectWidthEdt = RollPaperDialog.PaperSizePnl.add('edittext', [50, 13, 90, 34], dfltPw, {name:'pprWth'});
                    RollPaperDialog.PaperSizePnl.aspectWidthEdt.helpTip = 'Roll width in inches';
                    RollPaperDialog.PaperSizePnl.add('statictext', [96, 16, 140, 48], 'Length ');
                    RollPaperDialog.PaperSizePnl.aspectHeightEdt = RollPaperDialog.PaperSizePnl.add('edittext', [140, 13, 175, 34], dfltPl, {name:'pprLnth'});
                    RollPaperDialog.PaperSizePnl.aspectHeightEdt.helpTip = 'Remaing roll length in feet';
          RollPaperDialog.CellSizePnl = RollPaperDialog.add('panel', [2, 2, 200, 56], 'Tile Cell Size');
                    RollPaperDialog.CellSizePnl.add('statictext', [10, 16, 50, 48], 'Width ');
                    RollPaperDialog.CellSizePnl.aspectWidthEdt = RollPaperDialog.CellSizePnl.add('edittext', [50, 13, 90, 34], dfltCw, {name:'cllWth'});
                    RollPaperDialog.CellSizePnl.aspectWidthEdt.helpTip = 'Width in inches';
                    RollPaperDialog.CellSizePnl.add('statictext', [96, 16, 140, 48], 'Height ');
                    RollPaperDialog.CellSizePnl.aspectHeightEdt = RollPaperDialog.CellSizePnl.add('edittext', [140, 13, 175, 34], dfltCh, {name:'cllHgt'});
                    RollPaperDialog.CellSizePnl.aspectHeightEdt.helpTip = 'Height in inches';
          var buttons = RollPaperDialog.add('group');
          buttons.orientation = 'row';
                              var okBtn = buttons.add('button');
                    okBtn.text = 'OK';
                    okBtn.properties = {name: 'ok'};
                              var cancelBtn = buttons.add('button');
                    cancelBtn.text = 'Cancel';
                    cancelBtn.properties = {name: 'cancel'};
          // display dialog and only continues on OK button press (OK = 1, Cancel = 2)
          if (RollPaperDialog.show() == 1) {
                    //variables passed from user interface
                    var res                    = String(RollPaperDialog.PrintResPnl.prtRes.text);
                    var copies          = String(RollPaperDialog.PrintResPnl.imgCpys.text);
                    var pprwidth    = String(RollPaperDialog.PaperSizePnl.pprWth.text);
                    var pprlength   = String(RollPaperDialog.PaperSizePnl.pprLnth.text); if (pprlength=='') { pprlength= 100; }
                    var cellwidth   = String(RollPaperDialog.CellSizePnl.cllWth.text);
                    var cellheight  = String(RollPaperDialog.CellSizePnl.cllHgt.text);
                    var maxpaperwidth=pprwidth*res;                    // Printer Paper width in pixels inches*res 
                    var maxpaperlnth=pprlength*12*res;          // Printer Paper Roll length in pixels
                    var width=cellwidth*res;                    // Document Cell width in pixels inches*res
                    var height=cellheight*res;                    // Document Cell height in pixels inches*res
                    var cols=0;                                        // Document number of columns will be determined by script using paper width and cell width 
                    var rows=0;                                        // Document rows will be determined by script using columns and # of images selected
                    if (width>maxpaperwidth) { throw "error1"; }
                    cols=Math.round((maxpaperwidth/width)-.499); //round down
                    if (height>maxpaperlnth) { throw "error2"; }
                    var file = new Array();
                    file = app.openDialog();//opens dialog,choose images
                    if (file.length<1) { throw "error3"; }
                    rows=Math.round((file.length*copies/cols)+.499); //round up
                    if (height*rows>maxpaperlnth) { throw "error4"; }
                    var doc = app.documents.add(width*cols, height*rows, res);
                    var currrow=0; var pasted=0;
                    for (var i=0;i<file.length;i++) {
                              app.load(file[i]); //load it into documents
                              var backFile= app.activeDocument; //prepare your image layer as active document
                              flatten(); //handle layered images
                              if (backFile.width.value<backFile.height.value&&width>height ) { backFile.rotateCanvas(-90.0);  } // Rotate portraits
                              if (backFile.height.value<backFile.width.value&&height>width ) { backFile.rotateCanvas(-90.0);  } // Rotate landscapes
                              if (backFile.width.value/backFile.height.value > width/height) { backFile.resizeImage(null, height, null, ResampleMethod.BICUBIC); } // wider
                              else {backFile.resizeImage(width, null, null, ResampleMethod.BICUBIC);} // same aspect ratio or taller
                              backFile.selection.selectAll();
                              backFile.selection.copy(); //copy resized image into clipboard
                              backFile.close(SaveOptions.DONOTSAVECHANGES); //close image without saving changes
                              for (var n=0;n<copies;n++) {
                                        var x =pasted*width;
                                        var y =currrow*height;
                                        var selectedRegion = Array(Array(x,y), Array(x+width,y), Array(x+width,y+height), Array(x,y+height));
                                        doc.selection.select(selectedRegion);
                                        doc.paste(true); //paste image into masked layer your document
                                        doc.selection.select(selectedRegion);
                                        align('AdCH'); align('AdCV');
                                        doc.selection.deselect();
                                        pasted++
                                        if ( pasted==cols ) { pasted=0; currrow++; }
          else {
                    //alert('Operation Canceled.');
          // Return the app preferences
          app.preferences.rulerUnits = startRulerUnits;
catch(err){
          // Return the app preferences
          app.preferences.rulerUnits = startRulerUnits;
          if (err=="error1") {alert("Paper width exceeded reduce the cell width");}
          else if (err=="error2") {alert("Paper roll length exceeded reduce cell height");}
          else if (err=="error3") {alert("No Images Selected");}
          else if (err=="error4") {alert("Paper roll length exceeded try selecting fewer images or reducing cell height");}
          // Lot's of things can go wrong, Give a generic alert and see if they want the details
          else if ( confirm("Sorry, something major happened and I can't continue! Would you like to see more info?" ) ) { alert(err + ': on line ' + err.line ); }
// flatten Image
function flatten() {
          try{
                    executeAction( charIDToTypeID( "FltI" ), undefined, DialogModes.NO );
          }catch(e){}
// Align Layers to selection
function align(method) {
          var desc = new ActionDescriptor();
          var ref = new ActionReference();
          ref.putEnumerated( charIDToTypeID( "Lyr " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
          desc.putReference( charIDToTypeID( "null" ), ref );
          desc.putEnumerated( charIDToTypeID( "Usng" ), charIDToTypeID( "ADSt" ), charIDToTypeID( method ) );
          try{
                    executeAction( charIDToTypeID( "Algn" ), desc, DialogModes.NO );
          }catch(e){}

Similar Messages

  • I am encountering crashes with Photoshop Elements 12.  If I uninstall and then reinstall the software, will I jeopardize the 100s of photo images I have already moved into the Organizer?  Any cautions for me

    I am encountering crashes with Photoshop Elements 12.  If I uninstall and then reinstall the software, will I jeopardize the 100s of photo images I have already moved into the Organizer?  Any cautions for me?

    If the app is designed correctly, the no, you won't. However, you'd have to ask the people who wrote the software, Adobe.

  • Apply Auto Enhance filter to Multiple images Simultaneously?

    Greetings Apple Discussions:
    Is it possible to apply the (Preset: Quick Fixes: "Auto Enhance") filter to 89 images at the same time or in a batch?
    If Aperture cant do it what software would you suggest?
    Thanks.

    Select all the versions that you want to auto enhance. Then on the Photos menu: Add Adjustment Preset>Quick Fixes>Auto Enhance.

  • How iget 100 dpi resolution image from hp 1005mep

    How I get 100 dpi resolution image from hp1005mep 
    When I scan a document I always get 96dpi image 

    the resolution is 180 dpi.<<<</div>
    At what image size? The dpi/ppi is meaningless unless you relate it to an image size. 180 dpi at 12X9 is the same as 360 at 6X4.5 and both are about 3.9MP.

  • Auto-Mounting Network Shares/Disk Images

    Hi,
    I'd like to share how I solved my problem with auto-mounting a network disk image/folder share to be used as a custom library/location for Aperture 3.xx. I can now either reference the master photos from the network or have it copy to this disk image volume on the network, although it might be better to have it copy to the disk image volume, so one can move it around as a file later. I researched hard over these forums and internet resources and discovered what I thought was the best way to accomplish this. Initially, I found right away that Aperture doesn't allow you to create a library over your network drive or a home server such as mine, unless it is partitioned/formatted to Mac OS. This wasn't acceptable for me as I also run Windows 7 PCs that need to utilize the network folder shares, as well.
    I don't understand why I don't have this problem using iPhoto 2011, and do with Aperture 3.0, which is a far more expensive application. Anyhow, I read a little about NFS, but didn't know how to implement this or if it required the Mac Server and/or a non-built in application, it probably isn't compatible with windows. So, I found that by creating a .DMG disk image file, as a partitioned/formatted Mac OS file in Disk Utility, and saving it to the network folder of my choosing, did the trick.
    Steps I used to accomplish this:
    -Go to Disk Utility and create "New Image"
    -Select format w/ MacOSX Extended(journaled) and choose "single partition/GUID" type (or whatever you want)
    -Enter a custom size of your disk image (ex in 1GB or 1TB). Click "Create"
    * I created this locally 1st and then I copied it over the network, to the network folder/subfolder on my HP Mediasmart Home Server EX495. I found that creating it over the network took too long and would crash Disk Utility.
    -After it's copied to your desired location over the network folder, open Automator.
    -choose "Application" workflow, double-click to add "Get Specified servers". Enter location of your server (ex smb://hpserver/)
    -Then add "Connect to Servers",
    -Then add "Get specified Finder Items". Click Add, and locate your disk image file over the network. (this will automatically add the location path. For ex. smb:/hpserver/photos/aperture_library.dmg)
    -Then add "Mount Disk Image".
    -Then test workflow by clicking on "Run" button on top right of window. If your
    Finder->Preferences->General settings on your Mac is set to show "Connected Servers" on your desktop, your disk image will appear on you desktop.
    -Finally, save this Application workflow as an application by clicking File menu->Save As. Save this to your documents folder area.
    -To have your Mac auto-mount your disk image automatically when you login:
    ->go to System Preferences->Accounts->your "Admin account name"->Login Items
    ->click "+" sign and navigate to the Documents folder, to where the Automator application you saved
    ->click Add. Once done, it will appear on the Login Items area. You can choose to hide it, if you want by clicking the checkbox.
    -Now Restart your Mac, and now your disk image should auto-mount.
    Hope this helps, as it helped me solve the issue. Too bad one must have to program this and it is not native on MacOSX.

    Too many steps. Do this:
    1. Go to Disk Utility and create a disk image with the following properties:
    Format: Mac OS Extended (Journaled)
    Partitions: Hard Disk
    Image Format: Sparse bundle disk image
    2. Copy the image you just created to the share on the network where it should reside.
    3. Open System Preferences, and click on the Accounts icon
    4. Select *your account* and click on the Login Items tab
    5. Drag the icon for the disk image from the network share into the Login Items list
    If a login item is something on a network share, it will reconnect to the share it's located on automatically first.
    If a login item is a disk image, the disk image will be opened and mounted.
    It's important that the image is a journaled one because if it isn't, being disconnected from it while writing would be potentially disastrous.
    It's important that the image is a sparsebundle for two reasons: sparsebundles only take up as much space as they need (e.g., a 1Tb sparsebundle with 100M of data takes up about 100M of space), and they also break the disk down into smaller files. If the underlying filesystem on your network share is FAT32, then no file can go over 4Gb. If you use a sparsebundle, of course, there's no practical limit to how large the disk image can get. Also, it can speed up certain types of backup procedures.
    I suggest using partition type "Hard Disk" instead of "1 partition GUID" because, as a disk image, there's no sense in having a partition table or making it bootable (because you can't boot from the image).

  • 100% width background image?

    Hi, is there a way to make 100% width background image? I mean that the image would resize with browser window? For example: http://www.culinariafoodandwine.com Thank you.

    Hi liborel,
    Here is more information on how to participate in the Muse beta program: Participating in the Muse beta program
    Best regards,
    Corey

  • PIxma Pro 100 - Lightroom Incorrect image sizing for select paper sizes

    I am trying to print from Lightroom to the Pixma Pro 100 using the A3+ Paper size (13"x19")  In Lightroom, the page and printer setups are all correct (verified by Adobe's Tech support) and in the Print Preview area, everything looks great and ready to print.
    Yet when I actually print the image to A3+ paper (and the image nearly fills the entire paper area) the resulting image is serverly cropped on the paper.  In fact is looks like it is cropping the image to 8.5x11, which obviously, only uses a portion of the 13x19 paper size.  It seems that Lighroom or the Canon Printer drivers are not respecting the selected paper size and defaulting to 8.5x11.
    Here is a link to an image of what the print out looks like:
    https://www.dropbox.com/s/mylwpsns0uvr4io/2013-05-20%2009.00.15.jpg
    This does not happen when printing from Print Studio Pro, nor from Photoshop itself.
    I've dealt with Adobe Tech support and Canon - both are point fingers at each other.  Meanwhile I am unable to print anything on larger paper sizes.
    The Pixma Pro is the only printer connected and I've re-installed drivers and checked for updates.  Still the same.  At this point, any comments on the situation would be appreciated.
    Thanks in advance!
    Bruce Johnson
    [email protected]
    Bruce Johnson
    [email protected]

    I am experiencing something like this as well.
    I do almost all my printing in A3+ and I do it all directly from LIghtroom. No problem til sometime this summer (post firmware update). Now whenever I set it up for 13 x 19 (and LR shows that it is 13 X 19) the finished print is actually 7.5 x 11 on the 13 x 19 in paper.
    Incredibly frustrating as I go through time, paper, ink, and tech support (at Canon and Adobe) trying to resolve this.
    Last week a Canon technician walked me through a complete reinstall of the printer and then it worked again. This week it's back to the same mess, and neither  a reinstallation of the printer today nor an update of my LR solfware resolved the problem.
    I learned today that I am able to print the correct size using Print Studio Pro, but I have never used it in the past and I'm reluctant to switch from the functional LR to Canon workflow I had going (where I knew how my printing specs would come out) 

  • DVD Slide shows only auto-cycle 100 slides; then aborts.  What's the fix??

    I burned 2800 jpeg Photos from my IMac onto a DVD using iDVD and set it up for auto-play, so that the 2800-frame slide show would autostart running and advance to a new photo every 3 seconds as soon as loaded into the DVD player in our TV room.
    On my Panasonic DVD player, however, I can only view the first 100 or so slides automatically before the show aborts and the player defaults back to its home screen as if it had completed the slide show.
    Why will my DVD player only show the first 100 of 2800 slides on the DVD before quitting ? Is it a limitation of the DVD player hardware or software or have I misconfigured iDVD ?
    If I want to view all 2800 slides on the DVD, I can do so only by holding down the forward and reverse buttons on the player's remote control to jump forward or backward to the next or previous slides. Only then will it display beyond the first 100 or so slides and run to the end. In auto advance mode, it chokes after the first 100 frames and quits on me.
    As long as I manually advance to the next frame, I am fine...but the player-DVD combination will only auto-advance the first 100 before the player hardware/software crashes.
    Any ideas how to fix ????
    Intel Imac 2.1 GHz - 20"   Mac OS X (10.4.8)   1 Gb RAM

    Thanks. This is very clumsy to work around but maybe the just released Toast 8 has a workaround that iDvd does not. Trick is I guess to get 28 tracks onto a single DVD - each with 99 (slides) chapters. Is this doable ??
    Surely there is a simple way to copy 2800 files - maybe just a simple file copy, onto a blank CD or DVD and have a CD/DVD player`read them and auto advance.
    This is very frustrating because these sophisticated software programs are good at doing fancy things with movies but can't produce a simple slide show with more than 99 frames.
    Michael,
    The basic problem is iDVD treats slides in a
    slideshow as chapters and a DVD track is limited to
    99 chapters per track. Prior to iDVD 6, slideshows
    were limited to 99 slides. iDVD 6 added a 'fix' to
    allow several such slideshow tracks to be linked
    together. HOWEVER, not all DVD players (as you have
    found) want to recognize the linking and will quit
    (or drop the audio) after the 99th slide.
    Any ideas how to fix ????
    There is nothing you can do in iDVD to change this.
    There are some DVD players that will play through
    all he images - you can take you DVD to a 'big-box'
    store with a lot of DVD players on display and see
    if you can find a player that will play all the
    slides.
    OR
    You can create your slideshow as a movie in iMove,
    although your 2800 slides at 3 seconds per slide
    would create a movie that is 140 minutes long, and
    this exceeds the 120 minute limit of what can be put
    on a single layer DVD with iDVD.
    F Shippey

  • Processing several images in a batch action to apply their individual auto camera raw auto setings individualy for each image selected.

    Hi,
    I have a folder with several images that I want to apply Camera Raw auto settings to all of then according to their individual parameters.
    When you open a single file in Camera Raw you can click on the "auto" option to make an start point correction for that image.
    I want to select all images in a folder and apply this procedure to every selected file without having to open every file individually and clicking in the auto option.
    Can this be done from Bridge CC 6.1.0.116?
    Appreciate comments on the viability of this task

    kbarre wrote:
    Auto Sync is functioning as expected, unless I choose Auto Tone first.
    If I choose Auto Tone first, a small portion of the selected images will be updated, but most will not.
    Lightroom's handling of auto-tone leaves something to be desired - I have a lot of experience with it, trying to make reliable develop-setting plugins which include auto-toning. Those plugins have a bewildering amount of logic - something like this: initiate auto-toning, check back to see if it has properly settled, issue the auto-toning again if it never seems to be properly settling... - usually it works out after a while, but even sometimes it never does, and generates an error: can't get auto-toning to settle across all photos.
    The point of all this is that there are bugs in Lr's handling of auto-toning, as you are growing aware.
    Try this:
    * do the auto-toning, then let it percolate for a while.
    * then visit each photo at 1:1 (to force Lr to finalize settings...), and confirm auto-toning has settled...
    Then try auto-syncing that preset (make sure process versions are all the same, and preset does NOT include auto-toning - I would leave process version OUT of your presets).
    Better?
    I don't expect this is a workflow you'll want to do all the time, but as a test it might help shed some light on the problem.
    Rob

  • Why is it when I zoom at any value other than 25%, 50% or 100% my photoshop image looks pixelated?

    This is really bugging me and I can't get any work done...but I've had Photoshop for years so I know that if you zoom at any value other that 25%, 50%, 100%, 200% etc then the image loses some of it's quality, but up until today the image looked a little blurry when at a different zoom value, but now it looks really pixelated which makes the image looks really ugly and is making it hard to actually do anything. I have no idea what I did to change it to this, but now I can't change it back and I've tried everything I can think of.

    I've been using Photoshop for a decade and a half and have never, ever seen what you describe.
    Just a clarification in general, not necessarily referencing this or any other post:
    BOILERPLATE TEXT extracted from the FAQ:
    https://forums.adobe.com/thread/375816?tstart=0
    Do not be abusive or aggressive in your tone
    An aggressive, demanding, accusatory or abusive sounding post will often evoke an aggressive or abusive and unhelpful reply.
    Remember, you are not addressing Adobe here in the 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.
    We are not here to defend Adobe or to debate users.  We can only provide answers, solutions and workarounds.

  • Slideshow background auto-fill's with other images?

    Hi all,
    I am making a slideshow in iDVD, and some of the images have background of other images... It seems to auto-fill and it looks terrible! It's sometimes on the sides and other times at the bottom, like in my example. I thought perhaps it would burn without it, but no such luck. I am using iDVD 6 also....
    Any guidance would be much appreciated <3 (*see photo attached)

    Hi George
    The URL prompts are coming from your Bookmarks, Cache and History files. If MacRumors appears in one or more of those files, it ought to appear in the prompts.

  • Canon Pro-100 13x19" Prints - Images suddently printing misaligned/slanted - Please help!

    Hi, I purchased a Canon Pro-100 printer about two weeks ago and I have been printing lots of 13x19 prints on Canon brand semi-gloss paper. I have successfully printed about 60 prints, but suddenly I have an issue. The images are printing misaligned/slanted on the paper, so that there is a sliver of blank paper on the bottom right and bottom left. Here is a picture of what is happening to the prints:
    http://i923.photobucket.com/albums/ad79/milligangames/101_22941_zpsf995dcd2.jpg
    I have tried cleaning the bottom plate, cleaning the roller, aligning the print head both manually and automatically, but nothing is helping. When I print on 8.5x11 or 4x6 paper I do not seem to encounter this issue. Does this mean the paper is feeding unevenly for some reason? Please help!

    Hi pmilligan,
    It is recommended that you contact live technical support . There is NO charge for this call. Real time feedback of a live technical support call would be very beneficial in this case.
    Please dial 1-866-261-9362, Monday - Friday 10:00 a.m. - 10:00 p.m. ET (excluding holidays). A Canon technical support representative will be able to resolve this issue faster.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Inline styling: 100% height for image

    Hi, thanks for stopping by to read. Appreciate.
    Am making an html email and need to make side images 100% height. Doesn't seem to be working.
    Is there some trick to it. (stretching a tiny image for the side shadows)
    Am using, in the properties palette, the 'new inline style' function.
    http://motherdivine.org/email/thailand3/index.html
    Plus, there is some tiny white space at the very top of the first large temple photo. Any way to get rid of that? Made the td tr 'top'.
    Thanks so much,
    Warmly,
    Hope

    Safari seems to repeat, but nothing else is.  I'm thinking the valign="top" is not necessary there.  And align="right" can go too.  The other option is to use that as a background image for the td and use background-repeat, but that won't work in Outlook.  Personally speaking if this is time sensitive I would almost move to a light grey border and forget the shadow.
    I know it's approved for you but I can tell you there are a good number of display issues with that.  On a phone, the word Thailand won't be visible when the email opens only the image will be seen because it's too tall, if the user doesn't have images downloading immediately they will just see whitespace because there are no alt tags on the images, the map image is really small and it's hard to determine what it's pointing to, the 7 unnecessary p tags at the end of the email and, the target appears to be US but the English used is UK for words such as "programme", using +1 in phone numbers, and writing the day before the month is not showing an understanding of the recipient base.

  • Looking for a way to load 100 pages without images/style

    Hi,
    I have a bookmark folder that contains nearly 100 pages
    I can right-click on the folder and choose "Open all in tabs", which is what I want, but I'd like to get rid of all the pictures/style otherwise it lags and eats too much bandwitdh.
    I don't really need those, I just want to have the pages loaded once.
    Any suggestions on how to do so ?
    ty!

    hello, you can use the quickjava extension in order to disable the loading of such elements conveniently: https://addons.mozilla.org/firefox/addon/quickjava/

  • Auto resize window when opening image.

    How do you make the whole window automatically resize to fit your screen without covering the palletts?  Everythime I open an image the window is hidden by the pallets. I then have to move the pallets out of the way, resize the window to fit my monitor, move the pallets back and Im ready to go. This is such a pain. I want the tools pallet to be on the left, the action and history, etc. on the right, and I want the window with all my image tabs to fit between those from top to bottom and from side to side automatically. I never had this problem in earlier versions. I have cs5.
    Thank you!

    I don't need the image to be full screen, just the window. And the window is not technically full screen, because you can still see the window borders and the panels. I want the image window with the different image tabs to open as big as my screen. I want the edges to come right up next to my panels and the bottom to go down to the bottom of my screen. For example: I use Mac and when you close a finder window and open a new one, it will open at the same size that you closed it. If you resize it, lets say, to fill your entire screen, close it and then reopen it, it will open the same size as you closed it. I don't want photoshop to open new image windows to the same dimension as the image. I want a grey screen to cover my entire monitor just like in CS3 and before. I really like the tabs, but I want the window to open bigger with grey space arround the image.

Maybe you are looking for

  • I have a Yahoo search bar next to the Url location bar. I would like to get rid of it. How?

    When I downloaded Firefox 4 this morning, I ended up with a Yahoo option for search on the tool bar next to the URL location space. I don't want the Yahoo search option and can't figure out how to get rid of it. I have read all the suggestions withou

  • A few questions to end my flashback confusion...

    Does the Java update for 10.6.8 give you a dialog box saying it found malware or is that only for Lion (the support article doesn't say)? If so, would the dialog box close automatically and I missed it? When I did the update, it all went by so quickl

  • Create adobe in background session

    hi gurus I need to know if is possible ti develop a web dynpro application to create an interactive forms in background and send it by mail, it's possible to do or is necessary the visualization of interactive form and then send it by mail?

  • Error during backup in CCM9

    Hi Making a backup in a CCM9 always stop at the same point, in TFTP, i have triyed to restart TFTP in both server but still fails, does anybody knows what´s the problem? thanks!

  • Continuous flash playing, regardless of the navigation

    Hi all, I'd like to know is it possible to use a swf inside php-/html-pages so that flash is opened and played continuously (not opened again) when user navigates to different pages. So the flash in it should not be reloaded and should just keep on r