Export Problem Solved (new problem)
I had posted earlier about export problem it was a silly mistake as i had kept hide extention on dats y it happened
Now problem is when i export the exported video has some pixcels and it hangs in between dunno wats wrong
What's a pixcel?
Pixel?
All video has pixels.
Seriously, your question is completely incomprehensible.
Similar Messages
-
Problem with Export Project as New Library
Getting some behavior from Aperture that I do not understand.
I am running Aperture 3.5.1 on OSX 10.9.1 on both a MacPro and a MacBookPro(Retina).
Both machines are believed to be completely up-to-date software-wise (no indication in App store that software updates are available. i don't know how else to look.).
I imported (Nikon D800) raw images from an SD card to MacBookPro Aperture Library (which contains few images), performed adjustments (and "shared" some with my SmugMug account).
Then I selected the Project that contained my images, chose File, Export, Project as New Library (in order to move the adjusted images to my MacPro, where my "real" Aperture Library resides). (first time i have attempted such a workflow). I selected all 3 options (Copy originals . . ., Copy previews . . ., Show alert) and clicked Export Library.
I copied the resulting file to my MacPro. After choosing File, Import, Library (in Aperture on the MacPro), I see it "Merging", and then the project in question appears in the Library on the MacPro.
The problem is that each image has a message at the top of the Adjustments pane: "This photo was adjusted using an earlier version of Apple's RAW processing", and they all come into the receiving library with no adjustments, and no previews - not even the built-in preview that a raw file should carry (the images show in the viewer as _really_ flat, gray - very strange, i have never seen this appearance before, though I routeinely use raw format).
Trying to troubleshoot, I went back to the MacBookPro and closed Aperture, then double-clicked the Library on the desktop that had resulted from the export process (containing only one project).
Same situation. All of the images think they were processed on older raw processor (even though this library is being opened on the same computer that did the processing).
Any ideas? Is this a bug, or have I misunderstood the point of exporting Projects?There have been two problems, reported, when exporting projects as library:
In earlier versions of Aperture the exported library did not include all images, if images had been imported from Photo Stream. I cannot reproduce this bug any longer with Aperture 3.5.1.
The export could go wrong, if the aperture library needed repairing.
Have you tried the Aperture Library First Aid Tools,to fix a possible library curruption?
See this link: Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
Before trying to rebuild, make sure, your backup of your Aperture library is current and in a working condition.
I see a progress bar and the .exporting library is created in the desired location.
Finally I decided to watch a project closely as it was being exported as a library and I noticed that the file size jumps up an down. I'm not an expert on how export works, but it would appear that each exported photo is overwriting the previous one.
What is the desired location? Are you exporting to your internal system drive or to an external drive? If external, how is the drive formatted? Such overwriting of files could be caused by incompatible filesystems creating conflicting pathnames. Make sure, the destination is a filesystem formatted MacOS X Extended (Journaled).
-- Léonie -
Hi
I'm fairly new to CS4 and have picked up an audio export problem, more than likely with a setting of sorts. For some reason when I export to MPEG2 -DVD via the Media Encoder, the video portion is fine as well as any audio that has been placed and edited on tracks audio 1 and 2 in PP. However, if there is additional audio placed on tracks 3 or 4 for example (say a music MP3 overlay) then this does not come out ... only audio placed on tracks 1 and 2 in PP come out. I have checked the obvious like making sure the tracks aren't muted etc but to no avail. Also tried changing from PCM audio to MPEG ... Stereo to 5.1 mixdown ... nothing doing.
Any help would be greatly appreciated.
Thanks and regards
Videoman 1
SAThanks Harm ... got SnagIt and with a few helpful YouTube tutorials ... am in business. Hunt and John, also thanks ... the other method equally as good. Now, I have attempted to attach my screen shot which should display my CS4 timeline and associated audio monitor windows above. By the way, this was for a wedding and as indicated, you will notice an MP3 lying in audio track 3 which as mentioned is my problem as it is not audible after render via Media Encoder. But remember, the moment I slip this MP3 up into audio track 1 or 2 above ... problem solved. I know there must be something small like a setting gone wrong or incorrect. As mentioned, any help would greatly appreciated.
Thanks to you all.
Regards Paul ( Vryheid, South Africa ) -
Hi Expert , crystal report export problem. system not responding
Hi,
crystal report export problem. system not responding.
Thanks
Rajkumar GuptaDear Raj,
Please try this
Try
Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
rptDoc.Load(rptPath)
rptView.ShowExportButton = True
rptView.ReportSource = rptDoc
For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
Next
For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
oSubReport = rptObject
rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
Next
End If
Next
Next
'Setting Paper
Dim rawKind As Integer = 0
Dim printSet As New System.Drawing.Printing.PrinterSettings
For i As Integer = 0 To printSet.PaperSizes.Count - 1
If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
Exit For
End If
Next
Dim MyTest As New SaveFileDialog
rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
rptDoc.ExportToStream(ExportFormatType.Excel)
'rptDoc.SaveAs("C:\TBKING.xls", True)
'''How to export the report
Try
Dim CrExportOptions As ExportOptions
Dim CrDiskFileDestinationOptions As New _
DiskFileDestinationOptions()
Dim rename As String
rename = rptName.Replace(".rpt", "")
Dim CrFormatTypeOptions As New ExcelFormatOptions
CrDiskFileDestinationOptions.DiskFileName = _
"c:\Report\" & rename & "_Export_File.xls"
CrExportOptions = rptDoc.ExportOptions
With CrExportOptions
.ExportDestinationType = ExportDestinationType.DiskFile
.ExportFormatType = ExportFormatType.Excel
.DestinationOptions = CrDiskFileDestinationOptions
.FormatOptions = CrFormatTypeOptions
End With
rptDoc.Export()
Catch ex As Exception
MsgBox(ex.ToString)
End Try
'' end by kevin shah
rptView.Show()
rptView.ShowExportButton = True
Dim oFrm As New System.Windows.Forms.Form
rptView.DisplayGroupTree = True
rptView.Dock = System.Windows.Forms.DockStyle.Fill
rptView.Location = New System.Drawing.Point(0, 0)
oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
oFrm.Controls.Add(rptView)
oFrm.Name = "Report Viewer"
oFrm.Text = "Report Viewer11"
oFrm.ResumeLayout(True)
oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
oFrm.TopMost = True
oFrm.ShowDialog()
Catch ex As Exception
objMain.objApplication.MessageBox(ex.Message)
End Try
By pressing this button XLS file be generated on C:\report\
Hope this will resolved the issue
Thanks
Kevin -
Export Problem in LR 3.5
Hi folks,
I have been working with LR 2.7 for a while now and was happy with it.
PC - Win XP - LR3.5
Photo's stored on external hard disk (K:)
The RAW captures of a Nikon 3100 I recently won were not being recognized/imported by LR 2.7 and I installed the 3.5 version to see if it was any better. I would have to buy it anyway by the time I switch to Win7. In 3.5 the Raw files were imported, the settings of 2.7 were nicely taken over but now and I cannot export the files I have worked on to the K: drive of the external hard drive as I used to do with 2.7.
I get the message 'The folder could not be found' though it is set in the Export Window and I am looking at it in Win Explorer.
The original RAW captures are on the D: drive but that was always the case with 2.7 as well... I am doing it exactly as I used to with 2.7.
I tried with a photo from an older folder of my usual camera and everything works fine there.
The problem seems to be only with the Nikon files. Now I start wondering if there is something with raw format of this Nikon camera that is putting LR in a twist...
Anybody any ideas to help me out?
Thanks and grts
Nil@ web-weaver:
Of course they go to a different folder and they also get different
titels/names once processed in LR. The originals are always RAW (NEF) and I
export them as jpg or tiff files depending on what more I will do to them.
@ ssprengel:
I get the message when I have renamed the file in the export window, set
the folder it has to go to and hit export.
In the 2.7 version I got it already when I tried to import.
As I said, this only happens with the Nikon (NEF) RAW files. With the
Olympus (ORF) RAW files I have no problem at all and had no problem in LR
2.7 either.
I cannot see anything wrong in the Export panel nor in Preferences.
Plug in is Metadata Wrangler and has been updated to the latest version >
no joy...
I tried import/export with jpg files and no problem there.
Yesss! Got it! What I had overlooked was a question mark next to the folder
in Library (sooo small). A rightclick and telling LR where it was solved
the problem. Strange, though, as it has never done this before... the main
folder and the path are still the same as the ones that work perfectly with
Olympus exports... just a different subfolder named Nikon and another named
Test... Also strange that if I started off with jpg, it was no problem
either...
Anyway, thanks a lot for shaking my senses for me
Nil
2011/12/10 web-weaver <[email protected]>
Re: Export Problem in LR 3.5 created by web-weaver<http://forums.adobe.com/people/web-weaver>in
Photoshop Lightroom - View the full discussion<http://forums.adobe.com/message/4075999#4075999> -
I am suddenly having a problem when I export to a folder on my computer from LR3. I do this all the time and I don't know what has gone wrong. Today I exported a group of files to a folder on my computer which was going to be used to burn a cd and also to upload to a website. I burned the disk and checked it and the photos are horribly dark and have really muddy shadows. I then uploaded to a website and although the photos weren't quite as dark, they were very pixelated with a lot of strange color banding. I tried exporting to a new folder and the same thing happened. It should be noted that I did several prints today from lightroom and they came out perfectly matching my calibrated screen. As a further test I created a folder on my website and uploaded one photo directly from LR and then added the same photo, but uploaded it from the exported folder on my desktop. Here is a link to the gallery: http://www.kathleenjohnstonphotography.com/Clients/test/19929113_DQ86Pb You can see the huge difference in the two photos.
Does anyone have any idea of what is going on?
I appreciate your help.
KathyLightroom can do some peculiar things if your monitor is not properly calibrated, or simply has no profile assigned to it. ATI Catalyst and graphics drivers can be a nightmare to update, usually requiring uninstall of multiple drivers, and then reinstallation of the update files in a very specific order. I'm glad you were able to sort it out with X-Rite tech support. Suggestion: Do NOT install any updates for your ATI graphics drivers or Catalyst software when prompted by a Windows 7 update. This has been known to cause multiple problems and even loss of certain display card functions for the reasons I mentioned.
Concerning the low res or pixeleated export image files, this is simply due to using a low JPEG Quality setting. As I suggested try using a Quality setting of 60 or higher, sRGB Color Space, and Standard or Low Sharpening setting.
Example for 850 Long Edge export size (680 x 850). This insures both landscape and portrait images export with the same dimensions.
Double-click picture to see full-size. -
Export problems- it's renaming my MOVs to strange things and they're huge!
Hey guys,
strange fcp export problem. I have a 10 minute anim compressed fcp project, 1920x1080, 30fps on a top-of-the-range macbook pro with external terabyte HD. I did a test export a couple of days ago, because our deadline is really soon, and that all worked fine - a 10 minute quicktime, 100% anim codec, was 26GB. That was fine. I did another test clip, just a spinning bitmap for 10 mins, from AfterEffects with similar, succesful, results and file sizes.
Now, however, when I export, it comes out as 60GB, and FCP changes the filename to something which is the first half of the filename I chose, and a strange number for the second half which is different each time I try it. Something like "filena#CF342.mov", for example. This file seems to have video in it OK, but it's 3 times the size, and the data rate is much higher, too high to play back.
The only changes I've made since my successful test are replacing many of the low res previews with hi res versions, and adding 1 minute to the end. And I changed my QMaster setup, not sure if that's anything to do with it.
Anyone got any ideas? I'm getting pretty worried.....
thanks in advance....Thanks for the quick reply! No, don't think that's the problem. The new render doesn't have an alpha channel - it's Animation 100% Millions (not Millions+), and I don't think that would add more than 25% to the file size anyway. It also wouldn't account for the strange renaming of filenames. And the increase in length is only 10%. The file size has tripled!
The final delivery format was going to be animation, 1920x280, because it's going to projected on a 30m wide cinema screen and live TV tomorrow night but our playback solution (while it handles the test files ok) can't handle the data rate of these strange new files: it's 800mb/s, which is pretty ridiculous.
The renaming of the files suggests (to me at least) some kind of bug/error, but it doesn't report any kinda error in either fcp or quicktime.
Plan B is to recompress the strange big file using h264 which gives an ok quality and is 10% of the size. Reason I'd like to do it animation is I need to do several versions with different gamma, so I need to do further processing on the rendered file after it's dumped from FCP.
Any thoughts? I'd like to get to the bottom of this.
one thought - I didn't tick "recompress all files" and some of the source DOES have alpha - would it be taking the alpha channel even though I didn't ask for it? -
Quicktime export problem - failed(10)
Hi there.
Quicktime V7.1 has suddenly stopped working on my computer. Whenever I try to export, a few seconds after it displays 'calculating time', I get the message Failed(10).
This seems to be irrespective of the format of the original video or the format and compression I attempt to export to. So far, I have only attempted Quicktime native codecs. Nor does changing the file name or exporting to a different drive help.
I have uninstalled Flip4Mac as I understand it can be troublesome and I have reinstalled Quicktime 7.1 and restarted.
No change. Same problem. Please help! Do I have to reinstall the OS?
Thanks if you can help.
Ben.Bummer.
Double check your "Pro" status using the QuickTime Sys Prefs.
Try a different user account. This helps isolate "users" folder issues.
Don't muck with a bunch of changes unless you want to make even more troubles. Leave things as they are and report back.
Try exporting to another (new) folder on your user account Desktop.
If exporting to an external drive make sure it is recognized by Disk Utility app and is properly formatted to receive large files.
Check "permissions". DU can help there, too. -
Lightroom 4.1 export problem
Lightroom 4.1 will not export a deleloped image. I have the metadata to new file set to automatic and I get no error mesage. All my new exported files are the same as the original. I need a detailed discription of what boxes need to be checked or unchecked and where to find them. Something as simple as saving changes so that I might use them in another app should not be so difficult- version 2.7 worked fine so what's up with 4.1?
Still no luck... I just purchased a licence for my demo version- I was hoping not to have to do a 1.1Gb download and/or redo my my catalog- is this required?
Date: Sun, 17 Jun 2012 00:37:57 -0600
From: [email protected]
To: [email protected]
Subject: Lightroom 4.1 export problem
Re: Lightroom 4.1 export problem
created by ssprengel in Photoshop Lightroom - View the full discussion
Are you saying that LR4 is exporting over the top of your exiting images, or that it is not exporting anything? To test whether you can export anything, try exporting to a subfolder under your originals, instead of new names in the original images folder, which I think is what you’re saying you’re attempting: On the Export panel, all the way at the top, make sure to set Export To: to Hard Drive. Set the Export Location – Export To: value to Same folder as original photo. Put a checkmark next to Export Location – Put in Subfolder Enter in “output” into the Export Location - Put in Subfolder: textbox. Uncheck the Add to this Catalog unless you really want to include the output of this experimental export in the catalog. Set Export Location - Existing Files to Ask what to do, so LR will indicate if it’s trying to overwrite the same files, again, which it should if the output subfolder is empty. Uncheck the File Naming – Rename To: so the files aren’t renamed. At the bottom change Post-Processing – After Export to Show in Explorer Click the Export button and see what happens. It should do the export then open up Windows Explorer on the output folder you specified. Before doing any of this, it might be wise to make a screenshot of your current Export settings, the Export To and File Naming sections at least, which you can both post here and use to reset things back from what I’ve specified, above.
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4498854#4498854
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4498854#4498854. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in Photoshop Lightroom by email or at Adobe Forums
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746. -
bei using interactive functions in inDesign CS5 and then exporting to pdf, I am able to see exactly everithing I wanted in AcrobatPro, but not in Adobe Reader. What can I do, so that anybody who uses Reader can see it too? Anybody knows?? Thanks
Re: PDF Export Problems
created by Jeffrey_Smith <http://forums.adobe.com/people/Jeffrey_Smith> in
InDesign - View the full discussion
<http://forums.adobe.com/message/4271659#4271659>
What is it that you can not see in Reader: button behavior, rollover effect,
hyperlink, etc. ?
Wow, I am impressed about the fast reaction:-)
The interactive function I am using (unfortunately in German inDesign) is
"button" > Action: by letting go (?). It's a file with some 100 pages and
some 500 links. Exported as pdf interactive...
The effect In AcrobatPro: when clicking on the thumbnail the original
picture shows in a separate window without closing the original file. After
closing the new window, I could continue in the multipage file...
This is not happening in Adobe Reader. It says: the link was not found, and
here and then, when shown in e new window, the multipage file is closed...
Hope this helps..
Thanks Jaro
PS
I did reply on the forum directly, but no success. There trying via mail.
Hope it works:-) -
Hello!
I wan to export a model to import the model on an other system.
But if I click on the Export button just another popup will be opened: "Exporting..." and nothing happens.
Regards
ArminHi,
I have the same export problem as Armin and I haven't solved it yet. The CE 7.1 SP5 system runs on Windows Server 2003 and the browser is IE7. If I access Visual Composer remotely from another machine also with IE7 the export works! Thus, it is not a problem of the server but of the client. Maybe it has something to do with the MS XML parser or the SVG viewer together with IE7?
Please post if anybody has a solution for this.
Regards,
Kevin
Edited by: Kevin Irmscher on Jun 16, 2008 10:08 AM -
I have an external hard drive to which I export my encoded CS4 video files once I have finished editing. The problem is that, in doing so, space seems to be used also on my C drive. I need to find and delete these files on my C drive once my PP project files are rendered to my external drive. I have looked in temp files but they not there. Can anyone advise me on this?
That's done it S.V. Many thanks!
Lewis B.
Date: Mon, 13 Sep 2010 11:13:53 -0600
From: [email protected]
To: [email protected]
Subject: CS4 Export Problem
I'm a newbie so don't take my word as gospel buuuuttt....
If you're using Vista you might be making the same mistake as me. Go edit>preferences>media, hover the mouse over the media cache files location (i.e. C:\yadayada) and TYPE that into the bar at the top of the my computer. Don't click through and try and find it, TYPE it like you would an internet address in a web browser.
Silly Vista.
> -
Excel export problem using craxddrt
Hi,
I'm using craxddrt v.11.5 in our intranet application to export rpt.reports to different formats. My code works well with PDF and text exports, but when it comes to Excel after the .Export(false) method executes the browser window just goes into idle then the session finally expires. I never catch any error. I have tried several export options with no prevail.
I suspect the Excel export is missing some info to complete and it is trying to prompt me, but no visible prompt gets displayed/answered so it just expires.
Could anyone help me out. I've spent several days researching and fixing the code and ran out of ideas.
Sincerely
Steve KomaromiHi Steve, Is there some reason you are posting this question over and over again?
Try looking at your same post: Excel export problem using craxddrt
Also, RDC is legacy product. Look for you answer where you posted the exact same question in the legacy forum. -
FCP quicktime conversion export problem
issue exporting still image instead of video
FCP quicktime conversion export problem
within the last 2 weeks i have exported from FCP studio 7.0.3 as quicktime conversion, the settings are:
export as QuickTime Conversion:
> Options> quality> set to Best>
Standard Video Compression Settings
Compression Type: H.264
Motion:
Frame Rate: Current fps
Key Frames: Every 24 frames
check Frame Reordering
Compressor:
Quality: Best
Encodeing: Best (Multi-pass)
Data Rate:
Automatic
Filter… none
Size>
Dimensions:
NTSC 720x486 16:9
>ok
Sound: (don't change anything)
Format: Integer (Little Endian)
Sample rate: 48.000kHz
Sample size: 16-bit
Channels: (L R)
>Export
the results i get a odd. - the video exports fine, except for the beginning titles, instead a still frame image from somewhere else in the video occupies that intro, until the first transition- in this case- dip to white, then the rest of the video is fine. the portion of the beginning that does not show are composed of: livetype text credits in V2 - in which i have done a manual opacity fade up and down - so the livetype text fades in, over matte color solid in V1. in the exported video -i do not see any of this, all i see is a seemingly random still from somewhere else in the video. i can however hear the audio as it is supposed be.
cant figure out why this is happening. anybody know?
i think the livetype files are 1920 x 1080.
my FCP sequence is 720 p
this has only recently started happening and doesn't seem to be consistent.
im wondering if it has to do with the live type files, or the white solid?…
or the conversion settings above?Alistair
Earlybird is exporting H264 ... the Key Frames setting is determining the GOP length. This value should really be determined based on the complexity of the video, to my understanding, the actual frame rate has no bearing on it. If you have very complex fast moving content then a low Key Frame rate is advisable to ensure good image quality (although it will adversely affect the filesize) whereas if you have slow moving or static content (like an interview subject) then a higher Key Frame rate will still produce a good image but at a smaler filesize. The default of 24 should be pretty much fine as a catchall starting point.
Earlybird
Corrupted render files (and render references) can be a pain because FCP will use those files and references in place of the original media when building the export. And so it should as it does't want to waste time re-rendering sections that are apparently already rendered. Unfortuantely, as noted, if the render file has gone bad and/or starts referencing the wrong media then you'll get these wierd flashes of completely unexpeced and unwanted footage showing up where it shouldn't be. When you trash those files then QT / FCP will just go back and re-reference the original media ... so it's usually a worthwhile step to take just in case thats the problem. The worse case scenario is that it only that doesn't work and you spend some time unecessarily re-rendering.
As to why these files go bad? That I don't know. Why do Preferences get corrupted? That I don't know either but it definitely happens :-(
Cheers
Andy -
I have an exporting problem. I tried to export a little over 2 minute video in 1080p at 29 fps. I know that this setting has worked on all of my previous videos until now. When I tried deleting the files I believed caused the problem, the error still occur. Is there any way to fix this?
rachelb
Thanks for the follow up with further details.
1. Please review the following Adobe document on Complying error for export
"Error compiling movie" during render or export
2. Please confirm error @
Encoding Menus
Encoding Media
Compiling
Actual Burn Process
3. Best to make a copy of the problem project and work from that for the troubleshooting..File Menu/Save a Copy, with different name for copy or copies.
3. Expand the Timeline with the -+ slider above the Timeline to get a better view of the Timeline content.
a. look for obvious flaws in the Timeline tracks content -
b. Explore for less obvious flaws
....Target the transitions...have you dealt with trimmed versus untrimmed clip where the transition is being made?
....Target the audio, looking for gaps
....Target the Timeline in general looking for debris, fragments of clips that you previously deleted
....Check Timeline menu marker placements....no stop marker after the last item on the Timeline
....Check Movie Menu customization area for overlapping buttons, presenting with red frames around the overlapping buttons
c. When you have your disc in the burner tray, what does the burn dialog Quality area show for Space Required and Bitrate.
d. What is the video compression for your .mp4? Have you set a 4:3 project for a 4:3 source or a 16:9 project for a 16:9 source?
Let us start here and then decide what next.
Thank you.
ATR
Add On...If you are working with version 13, have you updated to 13.1 using an opened project's Help Menu/Update? If not, please do so.
Also, determine if it makes a difference to the outcome with or without the Intel HD Graphics 2000 and Higher preference disabled. See
Edit Menu/Preferences/General.
Maybe you are looking for
-
How do I add a subtitle to a table of contents?
I was assigned the role of building an Indesign template to possibly replace the MS word one we currently use but I have never touched this software before. With lots of googling I have fumbled my way through it a bit but I can't seem to figure this
-
Hi everyone, I just change from MS office to iWork and I encounter a problem. In MS word, there is a tool, a paintbrush thing, where u can highlight some text, remember its format ( font, size, color etc), and when u highlight another piece of text,
-
Who to unlock an i pod tuch when not remembering pass code
how to unlock an i pod tuch when not remembering the pass code does any body know???????
-
I have two queries The first query. SELECT wu.work_unit_id, sw.fdca_staff_id, wu.opcode, wu.fld_opcode, wu.aa_id, wu.maf_id, wu.status_date, wu.start_date, wu.complete_date, wu.shared_assignment, wu.mce_mod_date FROM Work_unit wu,Polygon P,Staff_Poly
-
Ver33 Unresponsive Script popup is NON FUNCTIONAL
My continuing problems with getting FF to Restore Session are here: https://support.mozilla.org/en-US/questions/1022861?esab=a&s=&r=0&as=s Using Safari to send this. FF is locked up again... Went Not Responding on yet another tab. This one said "wait