Anyway to add PSD files to bundle?

Is there anyway to add PSD files to bundle?
I have a panel for textures that require psd files to execute. Anyone know how I could add these to the zxp file?

Sami,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://forums.novell.com/

Similar Messages

  • Add layers from other psd file via action/batch (Or possibly script)

    Hi
    Brand new to this forum. Quick intro: Eivind from Norway, 32, Photographer, Nikon D300, CS5
    I have tried to make a action where i open 2 files, duplicate the layers from file2 to file1 and it works fine.
    But running the action as a batch i get in trouble, the action saves the from and to filenames when i duplicate the layers.
    Then i found the place function (File - Place..) but i ran in to trouble here also. When i place a psd file containing the layers it becomes smart objects and i can't edit the text layers directly.
    Background: I have a script that copys info from the filename to specific labeled text layers in photoshop. (Name_Age_Title.jpg) so i can batch process lots of files and add info boxes from the filename (Fantastic) Only problem is the i want to make lots of different layouts, logos, fonts. And no i have to adjust the action for every change. Would have been perfect to just have a action/batch/script opening the file, adding the layers from a template1.psd file, running the script adding text to the text layers and saving.
    Any ideas?
    Eivind

    No comments on this one?
    Maybe i have to do the scriping way, any ideas?
    Eivind

  • Add layers from other psd file and retain text layers (Batch processing)

    I want to batch process a large number of portraits adding text info from the filename (year_name_number.jpg) to existing text layers. I want to make a template psd file containg the correct labeled text layers formatted and adjusted (With bleding effects and more) How can i add layers from an other psd file to the active document and retaining the text layers editable. The place command in PS5 adds the file as a smart object, no use.
    Any ideas?
    I tried the combined action/script way, but no joy so far. Right now i am making the text layers with a action, then calling the script from the action. It works but its difficult to make different templates from adjusting a action.
    The code i am using now (in combination with a action creating the 3 text layers and other grapchical elements)
    var docRef = activeDocument;
    // strip the extension off
    var fileNameNoExtension = docRef.name;
    fileNameNoExtension = fileNameNoExtension.split( "_" );
    if ( fileNameNoExtension.length > 1 ) {
                    fileNameNoExtension.length--;
    fileNameNoExtension = fileNameNoExtension.join("_");
    var myString = fileNameNoExtension;
    var mySplitResult = myString.split("_");
    var textLayer = docReflayers['Year']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T1 = textLayer.textItem;
    T1.contents = mySplitResult[0]
    var textLayer = docRef.layers['Name']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T2 = textLayer.textItem;
    T2.contents = mySplitResult[1]
    var textLayer = docRef.layers['Number']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T3 = textLayer.textItem;
    T3.contents = mySplitResult[2]
    Thanks
    Eivind

    norway_photo wrote:
    Here is my intended workflow:
    - A set of same size portraits labeled "year_name_number.jpg"
    - A template.psd os same size with graphical elements and text layers (named "year", "name" and "number")
    - A script or action copy/pasting og adding all layers from the template.psd file to the open portrait file, retaining text layers editable.
    - A script (The one i have working) changing the text layers added from the template to text from the filename.
    - A action saving this as a PDF ready for print.
    This way i can process a large number of portraits, add names and other information and save it as a file ready for print.
    I can image it is much easier to edit a template than writing a script or an action creating all the graphical elements.
    And even better, to change this template for different customers/departments/logos.
    Basically i need a way to add layers to an open file using a batch file or script.
    Eivind
    OK I understand what your trying to do and now I do not agree with your conclusion you made in you first append about place being no good for you.  Its is I think a perfect solution for you. I feel you need to address the process from a new angle.
    I am very familiar with templates I use them all the time for collages which I populate with an actions.  However I do not batch this process and my process is interactive.  If you look at what your trying to do from the angle of creating a collage.  You will see what you are trying to do is automate the population of a single image collage using a single template in a batch process.  An example of one of my single image collage populated by one of my actions that has been saved as a jpeg image file.  My actions are played in Photoshop with no document opened.  After my action is play there is a single collage document in Photoshop that contains layers that can be tweaked all text is in text layers the can be edited.
    If I wanted to automate the batch population of a single collage template I think all I would need to know is three thing.
    1.) The location of the input images
    2.) The full Path of the PSD template file.
    3.) The location to store the output  file
    Looking at some of the recent threads in this forum I could almost cut and past the script you want to put  together.  There was a recent thread that had javascript code to process files in a folder and process only a list of file types.   There also was a thread that had a place function in it to place images into the current document or create a new document to place the image into.  The image was read from the web using a URL.  This thread has code to change a text layer.  At first I though you may need to open these image file to get at its meta-data to get the Portrait image Exif creation data.  But see all you need is the Filename for it has the data you want the year and name.  So the function that get the image files from the folder will give you that. The   Script needs to Open the Template PSD file and retrieve the prototype text layers text content  then the scrip needs a loop that get the next image file to be processed from the folder get filename function. In the loop the image files are place into the open template above a place holder layer like the Background layer. Then using the prototype text contents and the filename are used  create the new content for the text layer and then change the text layers content to it.  Follow that up with a save as for the output file.  Once the output file is saved delete the placed smart object layer.  When this loop ends the script will close the document with no save and end. As for the three inputs you need  the script could either have a dialog like the images processor or simply prompt you for the folders and template file.

  • How do colleagues add comments and review .psd files in Acrobat?

    i work in Photoshop, would like to be able to collaborate with assistants and clients online - like, i believe, Adobe Live used to do...
    thx,
    c.

    Hi Bonus Studio,
    If you'd like folks to comment on your files in Acrobat, you'll need to first save your .psd files as PDFs. Then, your assistants and clients can open the PDFs in either Adobe Reader or Acrobat and use the commenting tools to add their comments.
    Best,
    Sara

  • Psd file wash out when add transparency to page

    HI,
    I've had a noticeable yet unknown problem, and today I figured out why, but now need help fixing it.
    Working with CS2
    When I import a grayscale psd file into ID, it gets washed out when I add a transparent element to the page. My page started out in the page Window as a solid white background, and changed to transparent when I added the transparent element next to it. At the same time, my nicely contrasted grayscale psd image (contains levels adjustment layer) became washed out and lighter. This is the first time I've actually watched it happen as I added a transparent element - probably because often transparent elements are added before my photos.(this explains the poor image quality I've had in the past - always thought it was a calibration issue on my monitor).
    So my question is, how do I get the page (icon in the pages window) to be solid white again? or at least not weaken my grayscale images?
    I had a printout before I added the transparent box, the image printed nicely. Now the image prints washed out just as on the screen. (printing using "Send All Data" for image output.
    I'm working in Doc CMYK, transparency flattener is set to Doc CMYK, turned on overprint preview, tried isolating the blending, knocking it out, re-placing the psd file, adding a solid white box behind it (a no-no, I know, but was for testing purposes) all to no avail.
    I'm sure there must be a setting somewhere, but I'm not finding it.
    I'm grateful for any help I can get!

    How are you printing? Are there any CMYK elements on the page?
    Most desktop printers are really RGB devices. You may find you get better results if you change the transparency blend space to RGB.
    Peter

  • I request capability to add either LINKED or embedded graphics to Muse (either AI or PSD files)

    I notice there is no way to place a linked PhotoShop (PSD) file in Muse.   In comparison, PhotoShop now has the capability of placing both embedded and/or linked files (including AI files) within PSD files.  I am request this feature in Muse as well.  Ultimately I would love to place either embedded or linke vector (AI) files in Muse, but the best I can do for now is place a PSD file which is linked to an AI file, into Muse.  I was hoping to be able to make changes to the original AI file which would automatically update the PSD file to which it is linked which in turn would update the PSD file placed onto my Muse page, but it did not work.  It does not appear to work because the placed PSD file (onto the Muse page) is embedded into the Muse page, and there no longer is any kind of link between the original PSD file and the version placed on the Muse page.  Help me Adobe, I can't believe what I am asking would be difficult to pull off, and you already offer this feature in PhotoShop.  The capability I am requesting would greatly enhance the power and elagance of the Muse program.  By the way, I believe Muse is a fantastic product, and just what I have been waiting for for the last several years.

    Yeah, I know that changing the mode results in different colors. I just switched back and forth to check out what's going on.
    For CMYK I'm using ECI profiles which are common in Europe and for RGB the normal Adobe RGB 1998 profile. The profiles are synced between all Creative Suite products. I tried sRGB and some of the default profiles which shipped with CS5 but it produces the same result. I also deleted my whole Illustrator profile but without success.
    My graphics card doesn't have any updates. But it would be very unlikely anyway that both drivers for both cards had the same issue. If it has something to do with my graphics cards it's more likely the switchable graphics in general.

  • Trying to edit psd file and it adds another layer

    I have a psd file that was created to use as a template (it is all text).  When I try to edit it, it won't let me, instead another layer is added to the file, instead of allowing me to edit the layer that I am in.......what am I missing???

    If it's been rasterized, you will not be able to edit it.  You'll have to re-create the text layer.  The trouble is that since it was a template, you may not have the fonts that were used to originally create the template.

  • Add more PSD Files to layers

    How can i go from having one PSD file open in layers to having two or more, if use the bridge and open two or more then although they are in the layers bar i can still not do as much as if i have one open.

    Here are some helpful videos on how to open multiple images in a single document:
    with the use of Bridge:
    Without bridge:
    I hope this helps. Please post back with any further questions.
    Janelle

  • Motion having issues with layered PSD files.  Adds more to images

    Motion is distorting my layered PSD files in a way that I can't seem to figure out how to fix. Here are two examples of what I'm talking about:
    http://www.coyopa.com/motion_problem.jpg
    http://www.coyopa.com/motion_problem2.jpg
    There are two PSD images. The person is one layer and the background is the other. As you can see with the background layer turned on, the image is stretched or smeared. When the background layer is turned off, elements from the distorted background are appearing, such as the extended black shoulder or the line coming out of the head.
    The images I started with with were high res scans saved as grayscale TIFs. I converted them to PSD and switched the color space to RGB. I did my work in Photoshop and imported them into Motion which is when the problems began.
    I suspect the problem may be my graphics card which is a NVIDIA GeForce 7300 GT. I am running Motion 3.0.2 and Leopard 10.5.8. My Motion project settings are XDCAM EX 1080p30.

    I'm having a similar problem, but changing the resolution to the exact max of 2896x2896 doesn't work for me...and neither does any smaller resolution for some reason.
    Today, my layered PSD file is at least not experiencing the crazy tile-effect you included in your posted images, but it is now:
    1) always converting the top layer of the PSD file to a flattened image of the whole file.
    2) ignoring/mutating my alpha channel information, as areas that should be transparent and smoothly masked off are now opaque and/or blocky.
    My images are large, but I need to keep them large for dollying in real closely when i fly a camera through the scene. This is not a problem in After Effects, but I also need to do a lot of these 2.5D animations and several need particle/replicator effects... and I just work much much faster in Motion than AE. I don't remember having this problem with Motion 3 at all, but I can't say I've done a scientific comparison (nor do I want to uninstall M4 for M3).
    My system info can be found here:
    [IMG]http://i36.tinypic.com/2n744di.jpg[/IMG]
    [IMG]http://i33.tinypic.com/28cks42.jpg[/IMG]
    Original PSD file info:
    [IMG]http://i37.tinypic.com/amdr9v.jpg[/IMG]
    [IMG]http://i36.tinypic.com/99kv1g.jpg[/IMG]
    [IMG]http://i33.tinypic.com/3355w8x.jpg[/IMG]
    [IMG]http://i37.tinypic.com/1zb6y3m.jpg[/IMG]
    [IMG]http://i35.tinypic.com/9i5rhz.jpg[/IMG]
    Motion 4 info:
    [IMG]http://i38.tinypic.com/es40v4.jpg[/IMG]
    [IMG]http://i37.tinypic.com/2crva83.jpg[/IMG]
    [IMG]http://i35.tinypic.com/2e3popz.jpg[/IMG]
    [IMG]http://i37.tinypic.com/jrv8tz.jpg[/IMG]
    [IMG]http://i37.tinypic.com/28rh6hs.jpg[/IMG]
    Any help is appreciated!
    Thank you!

  • Photoshop CS6 - Spot channels are not saved correctly in the psd files.

    Hi,
    I'm using Photoshop CS6 and something happent a few days ago....some Windows or Adobe update messed up everything...I don't know...
    Here's how things are.
    If I add to an image a couple of new spot channels (any Pantone color) and remove the informations from the CMYK channels (or not-the problem it's there anyway), I should have an image with 6 color plates (CMYK and the 2 Pantone). It doesn't happened anymore...
    I'm using Corel to print the files and the previous saved files are fine, I have all the Spot colors there. Now, If I edit any file I've worked on before, and save it again, the spot colors dissapear when I'm importing the psd file in my Corel document. And if there is no information on the CMYK channels, I'm getting a blank image...
    I hope someone will give me some ideas because I don't know what to do anymore...
    Codrut

    Right. It's not reading these new saved files correctly. The old ones are fine.
    I forgot to mention one thing. I've got this CS6 as an upgrade and I still have the CS5 one running on the same computer. The CS5 version does the same thing...
    Today I tryed again to open a PSD (CS6) with another CS5 version from another computer and came with an error message "Could not complete your request because the specified color book cannot be found". And the file didn't opened....
    Who messed up my color book and how can I fix it?

  • When using external editor, iPhoto does not re-import the .psd file

    Hi,
    I've just started using Photoshop Elements 6 as a more advanced editor in iPhoto. When I do the 'External Edits' wihtout adding layers etc. and re-save as a JPEG then the photo will re-appear in iPhoto as the edited file.
    However if I do the external edit and add layers then save as a .PSD, then the file does not update.. I have to save the .PSD file in a desktop folder then import the file after.
    Is there anyway to force iPhoto to pick up the .PSD automatically after an update if I save it to the iPhoto library?
    Thanks,
    Glyn

    Glyn:
    The folllowing might be of some help:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you import a psd file initially then you can edit it via the external editor, with or without layers, and do a normal save and iPhoto will recognize the changes.

  • 16 Bit PSD Files Not Compressed

    Something that's not new, but that I've not really noticed before...
    Image compression in Photsohop CS6 doesn't seem to be effective on a 16 bit PSD when Maximize Compatibility is turned on.
    For example, with Maximize Compatibility set to Always, if I create a new file 6144 x 4096 pixels x 16 bits/channel with a pure white background, and add a single text layer that says "This is a test", then save the file, it's 144 megabytes.  Zipping that same file into a .zip archive results in a massive reduction, to 245 kbytes.
    Sure enough the saved file size goes down if I set Maximize Compatibility to Never. But even that can be hugely more compressed by zip (down to 88 kbytes).
    This implies the failure to compress is happening on the flattened preview.
    If I change to 8 bits/channel and save that same document either way it's about two and a half megabytes, differing only a couple hundred kbytes between Maximize Compatibility Always vs. Never.  In this case, apparently the flattened preview is being compressed nicely.
    These are my file handling preferences.  Note that I do NOT have [ ] Disable Compression checked.
    Doing a bit of spot testing, I believe this is nothing new - it has been the same in recent past versions (e.g., Ps CS5, CS4).  I've just never noticed that saving 16 bits/channel data yielded such huge files (because I always diaabled compression anyway), but apparently it has been the same all along.
    No problem here - this is just a curiosity to me, as I have a fast disk array and these saves are all quick enough.  I choose the "Always" maximize compatibility setting because I have a viewer (IrfanView) that I use for quick previews that won't read files saved with Maximize Compatility disabled.
    I suppose it does beg the question:  What prevents Photoshop from doing the Flate compression on the flattened preview in a 16 bits/channel PSD file?  Was there an old version that couldn't decompress such files?
    -Noel

    Thanks.  That makes sense, especially considering 16 bit data is really 15 bits plus a hair, so an all white background would look, to an RLE compression scheme, like (in hex) 80 00 80 00 80 00 etc. - i.e., be incompressible.
    Is there any kind of compression you could invoke that would work in recent versions of Photoshop?  I'm imagining a "More Compatible" setting, which could give decent compression for a 16 bit file but not necessarily be "Completely Compatible" with everything ever made out there.
    I need to ask the author of IrfanView if he's working on a multi-layer PSD decoding scheme.  I know there are people who have done it (the FastPictureViewer Codec Pack provides previews and thumbnails for Maximize Compatibility: Never files, for example).
    -Noel

  • Imported .psd file has a different black

    I have a indesign file with a 100 % black background, where I have Placed a .psd file. But when I print the document, the transparent areas of my .psd are printed as dark grey.
    Does anyone know where I went wrong? It's quite frustrating, even without a deadline.

    OK.
    First, let me say that your file prints fine here, just as it is, on my Fiery-driven Xerox Phaser 790, both directly from InDesign and from a PDF/X-1a export in Acrobat, so I think the problem is in your workflow someplace.
    There are probably a combination of things happening, but the first thing I would do is change the background color to an RGB Black rather than the default 100% K black swatch. Keeping the background and the image in the same color space will help when it's time to do any conversion, and I think you may be donig multiple conversions before the toner hits the paper. Change the flattener space to RGB, too.
    This is very similar to your use of [Registration], but will generate a CMYK rich black that is actually printable, in theory, on any equipment. You may still have some trouble with fusing the toner and flakeoff if the mix is too dense, so if that happens, reduce the density of the RGB black a bit, it should still be much darker than 100%K.
    If that by itself doesn't fix the problem, the next step I would try would be to export a PDF. Try both the [High Quality Print] and [PDF/X-1a] presets to start. I picked those because the first one does no color conversion or flattening (and should yeild a file with an sRGB background) and the second will convert to your CMYK profile and flatten the transparency.
    Let us know what results you get at that point, and we can take more steps if necessary, but I don't want to complicate things too much before we have to.
    Oh, and before I forget, you need to add a bleed and extend that black background for trimming unless your print is capable of printing all the way to the edge on that size sheet (and I'd add it anyway, even if the printer is supposed to print borderless).
    Peter

  • Why are ACR PSD files 10-20 percent larger than the same file resaved in PSD?

    Why are ACR > PSD files 10-20 percent larger than the same file resaved in PSD? I posted this many years ago and never found an answer. Now that my drives fill up quicker, I thought I might chase this question a little bit further.
    Same .CR2 saved within ACR either with cmd-R or open ACR within PSD, the saved file is 34.5mb. Resave that same file (no edits) within PSD either with or without Max-compatible and the file is now 30.7mb. Another file that is 24.5 becomes 19.5MB.
    Why the difference? Is ACR and PSD actually using different compression strategies?
    thanks.
    Mac 10.8.5 / CC / ACR 8.4.1 - but this has been a consistent behavior over many years and versions, CS6 / CC.
    Same .CR2 saved within ACR either with cmd-R or open ACR within PSD, the saved file is 34.5mb. Resave that same file (no edits) within PSD either with or without Max-compatible and the file is now 30.7mb. Another file that is 24.5 becomes 19.5MB.

    Hi Jeff
    If it is RLE it's not as efficient as LZW:
    Saved ACR>PSD = 40.1MB  (sample image this AM)
    opened in PS and resaved as PSD = 30.8MB
    resaved as TIF without LZW = 40.1MB    (this adds to your thought that the ACR>PSD doesn't us any compression)
    resaved as TIF/LZW = 9.6MB
    Jeff Schewe wrote:
    I really think your priorities are a bit off. 10-20% is meaningless...you just need to get bigger....  and quit fussing over a few GB's here or there...
    ???   I hope that the Adobe engineers are fussing over 10-20% efficiencies.
    I'm within arms reach to a rack of 40TB of drives (doesn't include off-site drives), and all 2TB drives are being recycled to 4TB drives, as a result the rack is always growing. Actually the ACR>PSD files don't really make a difference in our long term storage, only for the nightly backups. But anyway, how you save, what you save etc. should all be part of the discussion.
    .... so in my case, throw in an excess MB here and there and all of a sudden you are talking TB's. Plus advantages in backup times, drive life, and energy use.
    Somebody added compression into the PS>PSD format, but it wasn't included in the ACR>PSD format, was it a decision or an oversight? If it's just a matter of making ACR compatible with PS when saving the same PSD format..... then why not?
    regards,
    j

  • Can't reconnect PSD files.

    Hi
    My partner (Final cut Studio 2) send me a project file. We're collagorating on this project. I have FCE 4.5.
    I was able to reconnect all the media but he also sent me some layered PSD files. I can see them in the finder, but when I try to reconnect them, I get an error msg "The file does not have enough video tracks to reconnect to stripe at time 00:00:00;00 in sequence "xxxx.psd. Click okay to make this item independent and go to the next clip or Cancel to skip all clips from this file"
    I'm still learning this FCE. How can I reconnect these files fo my FCE sees them? All the video clips have been reconnected and rendered and play fine on my MBP except for these PSD files.
    There's 3 sets of layered files in the sequence. Should I add more video tracks or shouldn't FCE put in what it needs?
    Allen

    It's in the sequence and on the timeline but showing off line. Anyway Mike said if I re-imported them I'd loose the layers. There's 3 sections, 1st is all the layers, then each of the 2 graphics are seperated one at the begining and one at the end. they're title seq.
    He said he'd show me what to do when we meet. See, we each have a copy of the video clips. He does his work in Studio 2 and saves his stuff to his raid. Sends me the project file to open in FCE. So I have to reconnect the files and tell MBP they're on my external LaCie. Everything went good except for those PSD files. All of the info was in the CFP project file plus he sent me the graphics seperately. this is a wierd deal for me!
    Thanks anyway. I'll let you know what happens.
    Allen

Maybe you are looking for

  • Start up slow on iMac

    My iMac is SLOW, SLOW, SLOW... Any insights? EtreCheck below. Many thanks! Hardware Information:     iMac (27-inch, Mid 2011)     iMac - model: iMac12,2     1 3.1 GHz Intel Core i5 CPU: 4 cores     16 GB RAM Video Information:     AMD Radeon HD 6970M

  • Parsing XML with VBS at a Windows Server 2008 R2

    Hi my name is Marius, and I have a little problem with my vbs script. I use this script to parse an xml File if there are errors inside. In my old environment Windows Server 2003 it would work fine. Now I will run this script at a newer Server 2008 R

  • Not able to select Business Partners in Document Generation Wizard

    Hi While i was trying to generate a consolidated A/R Invoice from deliveries in the step where i have select the business partners,some of the business partners are not in the selection list.These business partner's currency are defined as multicurre

  • No sound in iPhoto since installing Yosemite

    Since updating my Mac to Yosemite, I have no sound in movie clips viewed in iPhoto. I am running Yosemite v10.10.1 Some old clips do have sound but many, including the latest movies, do not have sound. However, I can play them ok with sound using Qui

  • Integer with leading zeros

    i have an msAccess db that i need to move over to msSQL2000 and a numeric field of part numbers always has 5 digits: example: 12345, 01234, 00123.... in msAccess the field data type is "number" with a format of "00000" which maintains leading zeros.