Read Bleed Settings in AI CS4

Is there a way to read the bleed settings of a document in Illustrator with applescript.
The only way I found was to get the art and bleed boxes from the saved file and re-compute the bleed settings.
Yhanks.

A bit rough but works with a couple of sample files that I have…
var pdf = new File('~/Desktop/Bleed_CS5.ai');
var pdfBoxes = getPDFboxes(pdf);
var bleedTop = Math.round((pdfBoxes.MediaBox[3] - pdfBoxes.TrimBox[3]) / 2.834654);
alert('Bleed Top: ' + bleedTop + 'mm');
var bleedBottom = Math.round(pdfBoxes.TrimBox[1] / 2.834654);
alert('Bleed Bottom: ' + bleedBottom + 'mm');
var bleedLeft = Math.round(pdfBoxes.TrimBox[0] / 2.834654);
alert('Bleed Left: ' + bleedLeft + 'mm');
var bleedRight = Math.round((pdfBoxes.MediaBox[2] - pdfBoxes.TrimBox[2]) / 2.834654);
alert('Bleed Right: ' + bleedRight + 'mm');
function getPDFboxes(f) {
     var pdfBoxes = new Object();
     try {
          f.open('r');
          var str = f.read();
          var b = str.match(/BleedBox\[\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\]/g);
          if (b != null) pdfBoxes.BleedBox = b[0].match(/\d{1,5}\.\d{1,5}/g);
          var a = str.match(/ArtBox\[\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\]/g);
          if (a != null) pdfBoxes.ArtBox = a[0].match(/\d{1,5}\.\d{1,5}/g);
          var m = str.match(/MediaBox\[\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\]/g);
          if (m != null) pdfBoxes.MediaBox = m[0].match(/\d{1,5}\.\d{1,5}/g);
          var t = str.match(/TrimBox\[\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\]/g);
          if (t != null) pdfBoxes.TrimBox = t[0].match(/\d{1,5}\.\d{1,5}/g);
          var c = str.match(/CropBox\[\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\s\d{1,5}\.\d{1,5}\]/g);
          if (c != null) pdfBoxes.CropBox = c[0].match(/\d{1,5}\.\d{1,5}/g);
          f.close();
     } catch(err) {
          f.close();
     return pdfBoxes;

Similar Messages

  • Problem with JPGs Downlaoded with Nikon Transfer - Can't Apply Develop Settings in Bridge CS4 and ACR 5.3 Settings Don't Stick

    I have found what I believe is a "problem" with JPGs downloaded using Nikon Transfer (ver 1.4.1) and processing same in Adobe Bridge CS4 (Develop Settings) and/or Adobe Camera Raw 5.3 (Photoshop CS4 and Elements 6 as hosts).
    Anyone using these programs in their workflow?
    The problem, quite simply, is that neither ACR settings (nor Bridge CS4 Develop Settings) "stick" when applied to JPGs that have been downloaded via Nikon Transfer ver 1.4.1.
    The same images from the same cameras (D300 and D90), downloaded moments later using Nikon's predecessor software PictureProject work just fine in both Bridge and ACR.  Develop Settings appled in Bridge immediately are seen, and JPGs opened in ACR, and settings applied, then "Done" immediately stick and are reflected in Bridge.
    If someone else is processing their JPGs in this manner, please let me know, as I have reported the problem to both Nikon and Adobe, and although I have tested it on two different cameras and two differnt laptops, I would like to get an impartial result as well.
    One other test, the problem does not seem to affect Nikon's RAW (NEF) format files downloaded from a D2x using Nikon Transfer.  More/different test are forthcoming.
    Thanks
    jeff

    ALoverofNikon wrote:
    I have generally thought that using the camera manufacturer's software was the safest and most conveneint
    Can't say one way or another on that statement about using manufacturers' software.  Since Adobe has to interpret each camera models' RAW format having the latest ACR seems to be the best option.  But if the manufacturers' software is more convenient, and you get the same results then use it.  But it does appear you are not getting what you want, so suggest you try a duplicate test run with images straight from the card reader to Bridge and see if you still have same problems.
    I do know it is widely recommended that using a quality card reader gives you more reliable data than getting the pictures straight from the camera.  Does not seem intuitive, but that has been experience of many.

  • Document Bleed Settings

    I'm looking for a script that will adjust the bleed settings in the document setup for the active document. I imagine this would be simple to do if these fields are adjustable by scripting, I am however not familiar enough with scripting to make this.
    Specifically I need the script to set
    the top bleed to 40.5 points
    the bottom bleed to 40.5 points
    the left bleed to 4.5 points
    the right bleed to 13.5 points
    I'm working on a Mac using Illustrator CS5.5.
    Thank You

    It would be if these fields were accessable by scripting but alas they're not.

  • [JS] CS5.5: Exporting EPS with Bleed Settings.- Reg

    Dear All
    I'm having the doubt regarding for the exporting EPS with changing the bleed setting for while on-Fly process.
    Currently I'm using the below source code:
    //==================== Source Code ======================//
    var myDoc = app.activeDocument
    __DoEPSExportPreferenceSettings(myDoc)
    myEPSFileName = File(myDoc.filePath).fsName + "/"+ String(myDoc.name).split(".indd")[0]+(".eps");
    app.activeDocument.exportFile(ExportFormat.epsType, File(myEPSFileName));
    function __DoEPSExportPreferenceSettings(myDoc)
             with(app.epsExportPreferences)
                    pageRange = "1";
                    epsSpreads = false;
                    postscriptLevel = PostScriptLevels.LEVEL_3;
                    epsColor = EPSColorSpace.UNCHANGED_COLOR_SPACE;
                    preview = PreviewTypes.NONE
                    fontEmbedding = FontEmbedding.COMPLETE;
                    dataFormat = DataFormat.ASCII;
                      var BleedTopOffset = app.activeDocument.documentPreferences.documentBleedTopOffset;
                        var BleedBottomOffset = app.activeDocument.documentPreferences.documentBleedBottomOffset;
                        var BleedInsLeftOffset = app.activeDocument.documentPreferences.documentBleedInsideOrLeftOffset;
                        var BleedOutRightOffset = app.activeDocument.documentPreferences.documentBleedOutsideOrRightOffset;                   
                    bleedBottom =32 + "pt";
                    bleedTop =  32 + "pt";
                     bleedInside =  32 + "pt";
                     bleedOutside =  32 + "pt";
                    imageData = EPSImageData.ALL_IMAGE_DATA;
                    opiImageReplacement = true;
                    omitBitmaps = false;
                    omitEPS = false;
                    omitPDF = false;
                    appliedFlattenerPreset = "[High Resolution]";
                    ignoreSpreadOverrides = true;
    //==================== End : Source Code ======================//
    but unable to set the Bleed settings, while exporting as eps format.
    I mean the script is trying to change the bleed settings while using the "EPS ExportPreference settings", but unable to to exporting as EPS. [The output eps is without change the above mentioned 32pt settings in bleed].
    I'm checking all the possibilities. but unable to solve this proble.
    Please any one can give me the proper soultions, I will appriciate...
    Thanks in Advance
    T.R.Harihara SudhaN

    Dear Mac_rk,
    Many thanks... I checked your code. But that also is coming wrong output.... I mean with out bleed only its exported... Please kindly look in to the below source code.
    I'm checking all the possibilities, but unable to solve this problem.
    could you please suggest me the proper solutions. I will appriciate  
    var myDoc = app.activeDocument
    __DoEPSExportPreferenceSettings(myDoc)
    myEPSFileName = File(myDoc.filePath).fsName + "/"+ String(myDoc.name).split(".indd")[0]+(".eps");
    app.activeDocument.exportFile(ExportFormat.epsType, File(myEPSFileName));
    function __DoEPSExportPreferenceSettings(myDoc)
                    BleedTopOffset = parseInt(32) + "pt";
                    BleedBottomOffset = parseInt(32)  + "pt";
                    BleedInsLeftOffset = parseInt(32)  + "pt";
                    BleedOutRightOffset = parseInt(32)  + "pt";
             with(app.epsExportPreferences)
                    pageRange = "1";
                    epsSpreads = false;
                    postscriptLevel = PostScriptLevels.LEVEL_3;
                    epsColor = EPSColorSpace.UNCHANGED_COLOR_SPACE;
                    preview = PreviewTypes.NONE
                    fontEmbedding = FontEmbedding.COMPLETE;
                    dataFormat = DataFormat.ASCII;
                                   bleedTop = BleedTopOffset;
                                 bleedBottom = BleedBottomOffset;
                                 bleedInside = BleedInsLeftOffset;
                                 bleedOutside = BleedOutRightOffset; ; 
                    imageData = EPSImageData.ALL_IMAGE_DATA;
                    opiImageReplacement = true;
                    omitBitmaps = false;
                    omitEPS = false;
                    omitPDF = false;
                    appliedFlattenerPreset = "[High Resolution]";
                    ignoreSpreadOverrides = true;

  • Having trouble with bleed settings

    Hello,
    I'm trying to make an image a full bleed on an 8.5x11 page. I've got the "Use Document Bleed Settings" checkbox selected in the Bleed and Slug panel of the Marks and Bleeds setting in the PDF export. However, I'm getting this blanking area and then a thin duplication of the image on the verso page. Also, there's a white gutter area. When I deselect the check box, the image seems to look correct on the page. However, I'm concerned that if the checkbox isn't selected, something else might not print properly.
    I've also got some images that cross from one page to another. With the box checked, the image doesn't split correctly but there's a small duplication on the other page, suggesting the image won't print up properly. I don't mind that some of the image disappears into the gutter/spine, it's part of the look. But I don't want a white stripe & thin slice or replicated part of the image on the opposing page.
    Does anyone have a suggestion of how to handle this properly?
    Thank you!

    I'm using ID 8.0.1 in Mac OS 10.9.
    I get the white stripe when I place a full image covering the outer edge bleeds and abuting right against the inner edge or spine. But when I put an image across the spine and onto the other page, I get the slightly duplicated image as can be seen in the animal horn.
    When I use Salah Fadlabi's suggestion of unchecking "Use Document Bleed Settings" and then changing the "Inside" bleed to 0in while leaving Top, Bottom and Outside to 0.125in, The image looks correct when I look at a 2-up view, it doesn't get split or have the weird white line.
    rajsre's suggestion that when the paper is cut, the repeated image with the animal horn will actually look correct. However, I'm not confident how this will play out, as I get the white stripe in the single-page images. I didn't do any special setup like "space between", as I'm not sure where that setting is. Sorry, I'm still learning. When I Export, I'm not doing anything special. I know a little bit of the image will be eaten by the gutter, especially with the images that go across the pages.
    My printer (Ingramspark) has this to say about gutter margin:
    • GUTTER MARGIN:
    SADDLE STITCH BOOKS: no gutter margin required; items can be taken completely to the bind edge.
    PERFECT / CASE LAMINATE / DUST JACKET BOOKS : 0.125" (3 mm) gutter margin (no-ink area) required on the bind side of the interior. These are bound with glue, and the area is designated so it can adhere to all pages (see reference templates for example). Crossover spreads (images/color intended to straddle a spread) may be used as long as the gutter margin is placed in between where the images/color would normally meet.
    Blue (Bleed) Area / Overall Document Size
    To determine the final bleed size of your page use the following equation:
    Final Width = Width of book + 0.125" (3 mm) bleed on trim side. No additional bleed is added to the bind edge. Final Height = Height of book + 0.125" (3 mm) bleed on top + 0.125" (3 mm) bleed on bottom.
    For example a 6x9" (229x152mm) book will have a final interior size of 6.125" (156 mm) wide x 9.25" (235 mm) tall.
    If using a background color or image please take those elements to the edge of the bleed area.
    Pink (Safety) Area
    A 0.5" (13 mm) margin is recommended inside the trim for color book interiors. For perfect bound and hardcover titles this is in addition to the required 0.125" (3 mm) gutter margin. All headers, footers, page numbers, body text and all non-bleed images need to remain in those margins. Any elements outside of the safety areas are at risk of being trimmed.
    So that would suggest I need a non-colored area on the inside edge of the pages, so the inside edge of the PDF pages should have a white stripe. Am I reading this correctly? I've got my page setup to have a gutter of 0.125in. This  white stripe makes sense for the crossover spread, but it doesn't make sense for the image sitting only on one page.
    (This paperback book is going to be print perfect bound. I was thinking about making this a hardback book, but I'm looking at cost options - another matter altogether.)
    Here's what the overall image looks like in ID:

  • Adobe Reader Security Settings menu item missing

    On a user PC, under Adobe Reader XI (11.0.2), I am not finding the Security Setting Menu option. I searched for this, and I found out that it must be under "Edit/Protection".
    See snapshot below:
    Any idea ?
    Appreciate your help.
    Tarek.

    Thanks for the reply, Nikhil,
    Also, I found another issue.
    After I managed to create the Signature using Windows Certificate Option, I tried to take a backup from the certificate store from Internet Options -> Content -> Certificate -> Export, then I am unable to export the Private Key. Only the public key option is available, and the other option "Yes, export the Private key" is dimmed or disabled.
    Is this also new feature of Adobe Reader XI?
    I am 100% sure that in other installations on another PC, after I create the Windows Certificate of the Digital Signature from Adobe Reader Security Settings, then I can take a backup of this certificate from Internet Options and I can select this option "Yes, export the Private key" during export of the certificate.
    Appreciate your feedback on this matter.
    Tarek.

  • N WIKI: 'A failure on the server has appeared when reading the settings'

    Hallo,
    I get the following notice of failure after opening Server WIKI: 'A failure on the server has appeared when reading the settings'. I've no idea WHY, WHAT, HOW, and WHERE - is there somebody who can help me? Anything else is working.
    Regards Jergan

    What OS are you running? Is it 10.5 as noted in your profile? Also, is it the Server version?
    If so, try these forums: Mac OS X v10.5 Leopard, Mac OS X Server v10.5

  • I want to read the settings (time/div,​Volt/div,d​elay,etc..​.)from a waveform that is saved into a memory register of a FLUKE PM3394A Combiscope​.

    Dear all,
    I am writing a labview application for a Fluke PM3394A Combiscope. I want to read the settings (time/div,Volt/div,delay,etc...)from a waveform that is saved into a memory register. Can somebody help me on this? The Labview driver library I found on NI.com doesn't support this.
    Greetings
    Davy

    Unless you've used some sort of "auto-setup" for the scope, all of the settings are what your program commands the scope to use. Once you've acquired a waveform, typically all that is contained is the raw data. If you need the settings later in the program, you'll have to save them by putting them into a shift register/local variable/plain old wire. If you do use an "auto-setup" (I don't remember if the scope has this feature) and the driver has no query functions, then you'll probably have to write your own. These are usually pretty simple to do and are usually similar to the settings commands with the addition of a "?" at the end. For example, if the command to set coupling of channel 1 is ":INP 1:COU AC", then to query it the command might be "INP 1:COU?"
    and you would do a read and get "AC". The instrument programming manual should explain all of the command/query syntax.

  • WIKI: 'A failure on the server has appeared when reading the settings'

    Hallo,
    I get the following notice of failure after opening Server WIKI: 'A failure on the server has appeared when reading the settings'. I've no idea WHY, WHAT, HOW, and WHERE - is there somebody who can help me? Anything else is working.
    Regards Jergan

    What OS are you running? Is it 10.5 as noted in your profile? Also, is it the Server version?
    If so, try these forums: Mac OS X v10.5 Leopard, Mac OS X Server v10.5

  • Setting the Bleed in Adobe Photoshop Cs4 Extended

    I have been to the page in support where it points to the window that pops up after you click the print button. I do not see anything on that window that has anything to do with a bleed. Any help with this would be greatly appreciated.

    Since I found the answer to my question from a friend and not here I figured posting the answer might be of use to someone who is having the same trouble finding it as me. For my current version Adobe Photoshop CS4 Extended I found the place to add a bleed in the tab Image>Canvas Size.

  • DEP Settings for Photoshop CS4

    Dear friends,
    I installed photoshop CS4 on a Vista 32 and since then the CS4 always crashing at start up. Now after trying several times, I had it running under XP compatability. The point is, My DEP settings is set to work with programs, but the photoshop cs4 is set there as an exception, and no matter what I try to remove it or simply uncheck the photoshop, it goes back checked !!
    Please anyone can help to remove the Photoshop CS4 from the list so it can be enabled for the DEP settings?
    Thanx in advance.
    Jinx

    Yes I did, and it crashes..
    now, and after several tries, I have the DEP set on the essential, and the CS4 is not set on any compatibility, but everytime I open the photoshop it gives me a messege that my GPU is dissabled, and I should go to performance to enable it. Well if I click on performance, the program crashes, and even if I open any picture, the program crashes too...
    I don't know what the hell is going on but I did uninstall it and installed like million times, even cleand the registry ..
    Nothing is working !!

  • How do I repair export settings in PS CS4 and import settings in DW CS4?

    I've just transferred from Windows XP to Windows 7 Home Premium. My export files from Photoshop CS4 in Save for Web and Devices are hidden and when I click on Save, it saves back into the open file in Photoshop. The image cannot be found in the DW web images folder as in the past. I was able to tell Photoshop how to save the image in the past (ie image only, not html) but that page no longer appears.
    Can anyone tell me where that hidden folder can be found?
    Thanks so much for a reply.

    Yes, I am the administrator and only person on this computer. The missing page is the "Save Optimized as.." window that allowed me to add the settings into specific files for DW. like Format, Settings, Slices and where to save. Is this a hidden file? if so, how do I get it back.
    The oddest thing happened yesterday: I wanted to add Meta info for a pattern I was saving for DW, I went to file information, and while I was typing, suddenly the form changed to a totally odd Patient Information sheet and it would not let me get back into my own PS pattern. Is this something new? I have never added a Patient form, anyway, how did it get into PS? Any clues on this?

  • Migrate settings from Photoshop CS4 to CS5?

    Is there any easy way I can get my settings, preferences, actions and so on from CS4 to CS5?
    Thanks.

    ...can we save our collections from Bridge CS4 to Bridge CS5? Doesn't look
    like it.
    You can copy the CS4 collections to the CS5 folder, don't know for sure but
    I think it only works when you are on the same system, collections are more
    a kind of aliases from the original files and those aliases would not find
    the originals on an other system.
    The collections are in the user library:
    User/Library/Application Support/Adobe/Bridge CS4/Collections. In here are
    the collection names with the extension '.filelist'.
    You can copy those to the Bridge CS5 folder in the same location and that
    should work.
    And why won't Bridge CS5 let me open BridgeCS4, which i still have on
    my laptop?
    Don't know what you mean by open Bridge CS4 on your laptop whit Bridge CS5.
    While you can have multiple CS version for PS open at the same time you can
    have only one Bridge version active. By default the Bridge CS5 files open in
    PS CS5, using right mouse click menu you can choose from open with: and
    inhere is a list of all applications that are capable to open that file.

  • How to inforce specific color settings in InDesign CS4 js

    Hi, I need to set specific color settings when creating a pdf from InDesign in Java script (not as a preset). What I found in previous discutions is:
    #target InDesign
    app.ColorSettings.cmsSettings="MyColorSettings";
    ( in the Forum
    http://forums.adobe.com/message/1108248#1108248),
    which just somewhat make sence to me.
    I saved my MyColorSettings.csf file in color settings folder, but I am not sure how to tell the script to access it, and I am not sure that that's the only
    reason why the lines abouve don't work.
    Thank you for your help.
    Yulia

    Yulia, everything wrong in your script: first of all, setting cmsSettings and cmsSettingsPath at the same time makes no sense — this is the same as choosing a setting in Color Settings dialog and then clicking the Load button and selecting another setting — the second cancels the first. So, you need to set only cmsSettingsPath property. If you take a look at this property in OMV, you'll see that it requires File not String, as you are trying to set.
    I would use the following code:
    var myPath = "/Volumes/SPACE/Prepress/Export settings/InDesign CS4/ShowPDFoptions_CS4.jsx";
    var myFile = new File (myPath);
    if (myFile.exists) {
        app.colorSettings.cmsSettingsPath = myFile;
    else {
        alert("File \""+ myPath + "\" can't be found.");
    You don't mention if you use Mac OS or Windows, or both at your work.
    On Mac volume name should be prepended with "/Volumes":
    /Volumes/Remote/dir/file
    On Windows, to access a remote volume, use a uniform naming convention path name of the form
    //servername/sharename.
    Or, if you have a mapped network drive:
    /Z/foldername/foldername/filename
    Where Z is a letter corresponding to your drive.
    To find out the path to a file, you can also use the following script:
    myFilePath = File.openDialog("Locate the file");
    $.writeln(decodeURI (myFilePath));
    It writes the path of the chosen file to console
    Kasyan

  • Error Reading DNS Settings

    Hey folks, I'm having some odd problems with DNS. Over the weekend I added a second ML server to my network. I changed the hostname on my original server from my FQDN to server1.domain.com.
    When I changed the hostname, the server created a new zone with a nameserver and machine record. I deleted those and added the proper information to my domain.com zone. I setup a secondary zone on my second server and everything was peachy. Now today I went in to change a CNAME record and DNS is all hosed up. In console it says it cannot load the zone file from db.domain.com.
    I'm getting these errors:
    Jul 10 20:38:27 server1.domain.com servermgrd[4118]: -[DNSManagerRRMgr bindZoneDB]: Unable to load zone database (RRs) for "domain.com" from file "db.domain.com": CNAME and other data
    Jul 10 20:38:27 server1.domain.com Server[3758]: Error: The server '127.0.0.1' reported an error while processing a command of type: 'readSettings' in plug-in: 'servermgr_dns'. Error: Error Domain=XSActionErrorDomain Code=1000 "An unknown error occurred" UserInfo=0x7fad23a24c90 {NSLocalizedDescription=An unknown error occurred}
    So it would appear that I entered something wrong but when I open my db.domain.com file in /var/named it looks fine.
    Any thoughts?

    Hi  Mplsee08, just a heads up to you and others that this also rectified this symptom on a clients OS X Server V.4 just recently.
    I had what seems a corrupt db.domain.name file in /library/server/named
    for this reading, I did the following
    stopped the DNS on that server where the Server.app was seeing correct settings
    renamed (in my case three primary zones)
    warwick$ ls -1 /library/server/named
    db.1.0.10.in-addr.arpa
    db.2.0.10.in-addr.arpa
    db.mydomain01.production
    db.mydomain02.studio
    db.myredirect03.com
    localhost.zone
    named.ca
    named.conf
    named.local
    rndc.key
    zzz_db.mydomain01.production
    zzzz_db.mydomain02.studio
    zzzz_db.myredirect03.com
    start the DNS and reviewed the UI where all reserve DNS records were now available
    stopped DNS, rename each of the 3 primary zone back to original, each time starting the DNS until I could see which one was corrupt.
    manually added those Machine Records back for that zone using the Server.app/DNS UI
    Thanks for your info it was very helpful.
    warwick
    Hong Kong

Maybe you are looking for

  • "Unfortunately the process com.google.process.gapps has stopped" caused by Trusted Place ?

    Error Description: "The process com.google.process.gapps has stopped"  error was popping up in one second after the previous one was "OK"-ed, endless. Background: Some minutes earlier Trusted Agents was set to ON, thereafter Trusted Places "HOME,Home

  • Related to PS of WBS Element

    Hi gurus, when am doing creation of PR or PO the system is allowing for a value more than approved in the project system. There is no check in the system to stop creation of PR or PO having value more than approved WBS element. However system is perf

  • Who knows how to get applications from another country?

    Hey there, I have a complicated question! I am dutch, and trying to buy some apps in the app store in Holland. But...I'm living in French and I have an account witch allows me only to buy in the french app store and to connect me to the french itunes

  • Reply with entire SOAP envelope.

    Hello. Can OSB reply an entire hand-written SOAP message?. The scenario is as follows: 1. A request is done to a proxy. 2. The proxy do some work. 3. If the result is, say, "C", the Proxy does a Java Callout. This callout do some processing (black bo

  • Need OCP 1z0-147 preperation book

    hi to all, i am preparing for "1z0-147 programming with PL/SQL" exam. If any one of you having this book(PDF file or some soft copy) send to me. my mail id is: [email protected] or [email protected] thanks in advance. tirumal