Delete originals and decrease file size

hey.
My library is getting a bit big. Is it possible to delete all the "originals" so i dont have two copies of photos that I have edited.
Also, is it possible to compress all my photos?
Cheers
p.s. just ordered iLife 06 and .mac - excited!

Try this...
Use
Use this procedure to trace JCo calls coming from the SAP systems. The JCo traces write information about the invocated methods and the data passed through the underlying communication layers throughout the call.
Caution
The activation of JCo traces significantly slows down the communication. Therefore, you must only activate them on a development support request.
Procedure
       1.      In the J2EE Engine Visual Administrator, choose Server ® Services ® JCo RFC Provider ®Runtime.
       2.      Choose the Special Settings tab.
Use one or more of the options below to activate different types of traces on the JCo calls:
                            a.      JCo Trace Level – you can choose the trace level from 0 to 10, where 10 is the highest and most detailed level of tracing. The JCo traces are written into folder  file.
                            e.      JARM – activates the Java Application Response Time Measurement trace. For more information about JARM, see Structure linkJava Application Response Time Measurement.
                              f.      Local bundle – select this indicator, if you want the bundle to run only on the current cluster element.
       3.      Choose Set.

Similar Messages

  • Editing PDF and keeping file size small

    We are having lot of difficulties in keeping the PDF file small after editing. Our PDFs have text and fields and are used in a browser. They need to be updated multiple times a year to reflect change in text.
    PDF was created from MS Word 2010 using Acrobat X.
    Word had only Arial and Verdana fonts.
    When PDF was created from word, settings were set to "Never Embed" fonts. Till this point, all seems fine.
    Now, the moment we try to edit text (even add a letter), PDF prompts that fonts may be embedded and file size increases by 20-30KB.
    Checking File-Properties-Fonts show that font has changed to "Arial, Bold  Type: True Type (CID), Encoding: Identity-H". Before editing, font type was not CID.
    Under Optimization, there is no embedded font and we unchecked “subset all embedded fonts in optimization”. Save the file.
    Still File size is higher by 10k-20K - though only one word was added.
    Questions:
    How to avoid font type CID getting added automatically by Acorbat? It seems it takes more space and we don't need it. We couldn't find a way to remove/replace it.
    How to keep the file size not increasing much? Every time we edit with only few words added and do optimize, etc. still file size increases by 10-20 KBs.
    thanks
    apjs

    As these PDFs are used as electronic agreement forms and have fields/Javascript, recreating them from word requires lot of work. We do understand if there are substantial changes then we should recreate from word as PDF is not designed for major editing. However, in most cases we are trying to edit few lines of text and still file size is increasing by 10-20K.
    We have tried Save As but so far optimization option gives us better results in terms of reduction in file size.
    We do use common fonts - like Arial, Verdana, Times New Roman. We understand that we should embed uncommon fonts but we avoid uncommon fonts as embedding increases PDF file size.
    CID is coming up even when common font like Arial is being used.
    Thanks for trying to help us.

  • Problem exporting '.txt' file size 23 KB and '.zip' file size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Delete audit and trace files

    Is anyone aware of why we should not delete audit and trace files under the oracle admin directory that are over 30 days old? I don't know that there is anything in place to do this and they are building up. Tuldcorpadb01:/oracle is at 96%. These files aren't that big, but there are a lot of them. See counts below.
    oracle:tuldcorpadb01:ecmd> cd admin
    oracle:tuldcorpadb01:ecmd>find . -name \*.aud -type f -ctime +30 -ls|wc -l
    25149
    oracle:tuldcorpadb01:ecmd>find . -name \*.trc -type f -ctime +30 -ls|wc -
    2426

    Move older audit files to a different filesystem until you find someone being able to define what files can be deleted.
    Regards
    Gustavo Restuccia

  • I deleted adobe and now files won't open with preview automatically like they use to. How do I fix this?

    I deleted adobe and now files won't open with preview automatically like they use to. How do I fix this?

    I think you solved my problem! Upon following your advice, I first got a message that I had not allowed a connection to the Tax dept computers, which would prevent the file I need to fill out from being e-filed. I proceeded to then open the file at the top of which was a security banner at which I chose the site as safe. I then filled in the first line of the form which autofilled other lines telling me I was connected with the tax site. In a few days when I have the data I need, I will actually attempt to file the return. If there is a problem, I will send another message. Thanks so much for your assistance!

  • Any way to decrease file size of imported AVCHD clips?

    Since I got my AVCHD camera I've pretty much eaten up all the space on my HD because of the way iMovie converts the files to a format that takes up like 15 times more space.
    I do have some of my lesser-used footage on an external HD, but my Time Machine backup is also starting to get full and I need to find a solution for the clips that I don't want to erase, but don't need to store in the full HD format. Is there any way to compress or otherwise decrease the file size of an imported clip? I always import in the highest quality possible to evaluate, and then choose clips I only want to keep in a lower resolution.
    Thanks in advance for suggestions.

    Your AVCHD files are highly compressed. During import to iMovie they must be expanded to an editable format (AIC) which increases the file size.
    The only way to "compress" these files is an export. An export from iMovie would "render" any effects, transitions or text making these items un-editable in the future. You could export your "raw" footage but this could also lead to problems in future imports.
    Newer external drives could be partitioned for use with iMovie storage and your Time Machine files. You can also probably connect your current external giving you even more storage.

  • Any maintenance work needed to decrease file size / speed up initialization

    As we find that the initialization performance of the dashboard is not good, my teammate tried to cut down some data and formula in the Xcelsius file
    She keep track on the file size and found that the file size is not decreased even she removed a lot of contents. I'm thinking if there is any tools or function for to re-index or recompile the XLF file?
    Besides, any good tips to speed up initiation performance is highly appreciable!
    Note: we are working very hard in reducing the using of sumif, countif, vlookup and hlookup already but these cannot be totally avoided based on our requirements~

    Hallo Allan,
    As you already mentioned, the loading performance of the swf-file mainly depends on the amount of data included into the spreadsheet and the number and complexity of the excel-formulas you used.
    Also the number of the components placed on the the dashboard has an influence on the performance.
    To speed up the initialization the first approach would be to reduce the embedded data  and formulas.
    This can be achieved through dynamically loading the data at runtime via a data connection.
    Another approach is to split the dashboard into several XLF-/SWF-Files which are also dynamically loaded on demand at runtime.
    This can be achieved via the slide-show or swf-loader component in Xcelsius.
    The last, but not recommended, approach is to embedded the swf into a html-file and to do some calculations and navigation-logic in java-script via the external interface connection (EIC).
    Regards,
    Roman

  • How do find all database slog size and mdf file size ?

    hi experts,
    could you share query to find all databases log file size and mdf file (includes ndf files ) and total db size ? in MB and GB
    I have a task to kae the dbs size  around 300 dbs
    ========               ============     =============        = ===        =====
    DB_Name    Log_file_size           mdf_file_size         Total_db_size           MB              
    GB
    =========              ===========               ============       ============     
    Thanks,
    Vijay

    Use this ViJay
    set nocount on
    Declare @Counter int
    Declare @Sql nvarchar(1000)
    Declare @DB varchar(100)
    Declare @Status varchar(25)
    Declare @CaptureDate datetime
    Set @Status = ''
    Set @Counter = 1
    Set @CaptureDate = getdate()
    Create Table #Size
    SizeId int identity,
    Name varchar(100),
    Size int,
    FileName varchar(1000),
    FileSizeMB numeric(14,4),
    UsedSpaceMB numeric(14,4),
    UnusedSpaceMB numeric(14,4)
    Create Table #DB
    Dbid int identity,
    Name varchar(100)
    Create Table #Status
    (status sql_Variant)
    Insert Into #DB
    Select Name
    From Sys.Databases
    While @Counter <=(Select Max(dbid) From #Db)
    Begin
    Set @DB =
    Select Name
    From #Db
    Where @Counter = DbId
    Set @Sql = 'SELECT DATABASEPROPERTYEX('''+@DB+''', ''Status'')'
    Insert Into #Status
    Exec (@sql)
    Set @Status = (Select convert(varchar(25),status) From #Status)
    If (@Status)= 'ONLINE'
    Begin
    Set @Sql =
    'Use ['+@DB+']
    Insert Into #Size
    Select '''+@DB+''',size, FileName ,
    convert(numeric(10,2),round(size/128.,2)),
    convert(numeric(10,2),round(fileproperty( name,''SpaceUsed'')/128.,2)),
    convert(numeric(10,2),round((size-fileproperty( name,''SpaceUsed''))/128.,2))
    From sysfiles'
    Exec (@Sql)
    End
    Else
    Begin
    Set @SQL =
    'Insert Into #Size (Name, FileName)
    select '''+@DB+''','+''''+@Status+''''
    Exec(@SQL)
    End
    Delete From #Status
    Set @Counter = @Counter +1
    Continue
    End
    Select Name, Size, FileName, FileSizeMB, UsedSpaceMB, UnUsedSpaceMB,right(rtrim(filename),3) as type, @CaptureDate as Capturedate
    From #Size
    drop table #db
    drop table #status
    drop table #size
    set nocount off
    Andre Porter

  • Comparing count and combined file sizes of specific file types in target folder and subfolders

    Hi all,
    I have a script that I use to delete files with a certain file extension in a folder and its subfolders. I would like to enhance to the script by counting the total number of files and their combined size in MB that the script is deleting and use this information
    in a popup where a message will say something like "X No. Files deleted totalling YMB
    The existing script so far is:
    get-childitem  -include *.****.rfa -recurse | foreach ($_) {remove-item $_.fullname}
    Can any advise what I need to add as I'm quite new to powershell.
    Thanks

    So you do not know how to write a simple output statement.  I think you need to start here:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Not specifically within Powershell no, like I said I only started looking at it this week as an alternative to VBS.
    Nothing is being declared.  You need to learn the basics of PowerShell.  We cannot teach you one line at a time.
    Really? So the author of
    this website is talking rubbish is he? ("Once data is assigned to a PowerShell variable, it’s automatically declared.")
    I never asked for line-by-line hand holding nor am I someone who wants others to write the entire code for me. Examples of previous scripts that perform similar or partial operations would have been a good way to guide a new user unfamiliar to this topic.
    Additionally posting modified(incorrect) and unfinished script examples without clearly stating what your code is doing nor that additional lines of code need to be added before the script will operate as outlined in the original post is confusing to someone
    with 0 experience in this area.
    On forums I frequent that are relevant to subjects which I have good experience with, whenever I respond to a genuine query of that has an example of what they are trying to create/modify, I will happily provide a full example and/or explain what I
    have done so the OP understands exactly what I did to achieve their request in my example. For someone with your points tally (and likely a respected poster amongst your peers on this site) responding with what is essentially "RFTM Noob" I trust you can understand
    is somewhat disappointing.

  • Decreasing file size with QT?

    I was tasked with recording a webinar for work, which I did using Screenium (it can't record audio from GoToMeeting) and WireTap. In Screenium I recorded the video using AIC (there are all of the other QT video choices as well), and in WireTap I used AAC Medium quality). I then synchronized and merged the audio and video together in iMovie, and then Exported as an AIC video. This produced a whooping 9.21GB file! Ouch, especially considering the video from Screenium was only 5.25GB for an hours recording.
    Anyway, I'm certainly no video expert, and barely know what I'm doing. I'd like to decrease the video file size, and keep as much quality as I can. I've tried using h.264 with some other video stuff that I've done in the past, and I don't like it. I see lots of artifacts and noise in the video, as well as the color being off, and generally getting a flat looking video compared to the original. Any suggestions?
    Thanks!

    This produced a whooping 9.21GB file! Ouch, especially considering the video from Screenium was only 5.25GB for an hours recording.
    AIC is primarily used as an editing codec--not for final file distribution. Use a more efficient codec or one which allows you to control the data rate.
    I've tried using h.264 with some other video stuff that I've done in the past, and I don't like it. I see lots of artifacts and noise in the video, as well as the color being off, and generally getting a flat looking video compared to the original.
    In general, H.264 is the most efficient, most scalable option. The fact that you mention artifacts and noise suggests you may be using too low a data rate target for the particular source content. You could try increasing the video data rate and see if this clears up the export problems. Alternatively, you could try either MJPEG or Photo JPEG video export options using the "Quality" slider to adjust the relative video data rate/file size.

  • OCR and Reducing file size

    I have a large document (a book) that I am trying to scan. I will be scanning it chapter by chapter. The book was printed in grayscale, so I don't have a pure BLACK AND WHITE document. I would like to optimize the file size, but I have a few questions about that.
    Currently running:
    Windows 7
    Acrobat Pro X
    Epson GT-S80 High-speed scanner
    1. What is a good typical workflow? I have tried scanning the documents to PDF using the scanner's software then opening them up in Acrobat to OCR them. I have tried using Acrobat's Scan feature with OCR being one of the steps in the scanning process. I have tried letting both softwares do their own color mode detection, where they will mix black and white and grayscale to reduce the file size, but have typically told it to stick with grayscale because that gives me the cleanest and clearest document. Does anyone have any recommendations on getting a good quality image and using a mix of black and white, as well as grayscale, or should I keep using just grayscale?
    2. I am having some trouble, I think, with the file size. I have a 12 page document I believe was either scanned at 300 dpi or was scanned at full resolution because I used CLEARSCAN, and downsampled everything to 300 dpi. I don't remember exactly, but that file is about 2.20 MB in size, and I think that runs about 185K per page. I would think there could be a way to get a smaller file.
    3. For text recognition purposes, this document is not ideal because it is a collection of powerpoint slide sheets (2 - 3 slides per page), and in some cases there is text on top of image in the slides, and it seems very hard to discern.
    4. Once a document has been scanned, and OCR has been run on it, I was under the impression that the OCR is in a separate layer, and that (if Searchable Text is chosen), you basically have a scanned image with another layer of searchable text. Because the OCR'd text is "there somewhere", is it possible to remove the scanned image text, and have just the raw recognized text, similar to if I created the document in Word, and created a PDF?
    5. Sort of back to number 1, suppose I am stuck with leaving the scanned image behind, and just running OCR, what is the optimal way to reduce the file size of the PDF? I had read that running your scan at 600 dpi may help with the text recognition. The same article suggested doing the higher resolution scan and using the ClearScan because it would  a) recognize the text better and  b) convert the text image to actual text and reduce the file size. From there, should I then just run the PDF optimizer to downsample the images to a certain DPI to further reduce the size?
    Hopefully you all can understand what I am saying and help fill in some gaps.
    Thanks,
    Ian

    Let us know if this tutorial helps you with your workflow Acrobat X: Taking the guesswork out of scanning to PDF.

  • Can't find Originals and Modified files in finder

    Just upgraded to iPhoto 9 and find that the Original and Modified folders are missing. I can find them when I get file info from a photo in iphoto and they seem to be subfiles of the iphoto app. However in finder, they are not accessible. Am I missing something?

    With iPhoto 7 (iLife 08) the old iPhoto Library Folder became a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    There is never a need for the user to browse the Library via the Finder or any other app. Any time you do you risk damaging the Library.
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    All of the above are a: faster and b: safer than rooting through the old Library folders.
    Regards
    TD

  • Exporting Pdf's for the Web, maintaining quality and keeping file size down

    1) I don't have acrobat Pro yet.
    I've been trying to export a small document 14 pages for email, and I can't get the file size down below 26 mgs even when I'm compromising images to an extremely poor quality. I have not had this problem with Cs3 previously. Not sure why the file size is so high. I don't want to have to down sample everything in other programs, would kind of defeat the purpose of proofing out the program in the first place. I'm wondering if the extra file size is related to metadata?

    What preset are you using? How many images, and how large are they? how much vector art?
    The first thing to do is to remove all unused swatches and styles from the document, then do a "save as" to remove the excess undo information, then try again.
    And next time you should ask this type of question in the InDesign forum for your platform. This area is for discussing new features users would like to see. :)
    Peter

  • Projector and dir file size grow 7X unexpectedly - dcr remains the same.

    I’m updating a Shockwave project that is also available
    for download (so size matters and I’ve got a dcr and exe of
    the same project). Last year the file sizes were as follows: dir =
    933kb, dcr = 203kb, exe = 4,857kb … all reasonable. I started
    with last year’s file, eliminated numerous redundant scripts
    and cast members (including an unused font), combined the
    functionality of scripts that were similar, streamlined the
    operation of other scripts, updated some internal data, replaced
    the one and only bmp with a new one for this year (same size),
    saved and compacted … and for all my effort to clean up this
    year’s version I get the following: dir = 33.9Mb, dcr =
    224kb, exe = 37.5Mb The xtras are an obvious suspect but I went
    down the list and they’re the same as last year, the only
    outside xtra being POM (which hasn’t changed since 2006) I
    recompiled last year’s project and the sizes were still
    reasonable, so Director isn’t broke. Anyone know what's up?
    PS: I made a dummy copy of this year's movie, elminated
    everything (all sprites, all cast members, all xtras), save and
    compact, and the dir file is still 33Mb?!?!?
    PPS: Well, I copied everything into a fresh document, spent
    about an hour making sure scripts not attached to sprites didn't
    get left behind, re-attached the required xtras, and now I'm back
    down to a 4.4Mb projector but I'm not sure why.

    Thanks Mike. The odd thing is the results above were after a
    “save and compact” (as a matter of habit I always
    compact). Even with everything stripped out of the file I
    couldn’t get Director to jettison whatever garbage had gotten
    lodged in. On the plus side, moving the cast and score to a fresh
    document not only cured the problem but also allowed me to
    eliminate some legacy xtras that were no longer being used (this
    project has been updated yearly since 2002).
    PS: Flash's memory and file size audit report is really nice
    for trouble shooting this kind of problem, it would be nice if
    Director gets the same feature.

  • How do I completely crop a PDF so that the cropped data is removed and the file size is reduced?

    How do I completely crop a PDF so that the cropped data is removed and the total file size is reduced?
    When I use the "Crop" function, the cropped data still remains in the file and there is no reduction in file size. I need a way to truly crop a PDF using Acrobat software.

    When you export, try to get the full file path or else you will have to do a lot of manual searching.
    If you downloaded the picture from Messages, the picture is stored in your User Library/Messages. to make your User Library visible, hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Messages/Attachments. 
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.4. I have also been informed that if you drag the user library to Finder it will remain visible.

Maybe you are looking for

  • IPhone 5 drops calls as fast as my confidence in Verizon

    I've been a happy Verizon wireless subscriber for roughly the past 7 years. I've always had LG flip phones, and in that time have had perhaps 2 dropped calls. In July 2013, I upgraded to an Apple iPhone 5 16GB in black. As each day passes, and my iPh

  • MATMAS01 IDOC not reaching to SAP XI via report program.

    Dear Experts, WE are facing small challenge. I searched on SDN on scenarios: IDOC not reaching to SAP XI. But could not find exact solution t oour scenario. Problem: MATMAS01 IDOC is not reaching to SAP XI via report program and is in status of 03 on

  • In T code CV02N to add work station application MS Power point

    Hello, I want to add MS power point presentation work station application in T code CV02N. I have configured data carrier type and trying to configur workstation application in network but don't know what to put for below fields 1.Path with program n

  • How to connect to External Web Service? Error: ICM_HTTP_CONNECTION_FAILED

    Hi all, I have created an External Web Service, and I am trying to call the web service from SAP. I watched some tutorial and did everything like them, but I am getting this error: SOAP:1,023 SRT: Processing error in Internet Communication Framework:

  • How to replace Apple ID?

    I use my company email address as a Apple ID , since I updated my version to 7.04, I wish to change my Apple ID to my outlook email address to created icloud email. But both of the email address still showing as Apple ID in my phone.. How can delete