VideoStudio :: Avoiding Re-linking Checking
Nov 3, 2010
Picture this:
I have a project: project.vsp
I have a file: d:file.avi
I click on "project.vsp" the program starts and i should just be able to render it.
However
The file ("d:file.avi") is frequently rerendered. It has the same resolution, and duration, but the content is new.
Every time i click on "project.vsp" I am told that d:file.avi is missing (even though it isn't) and I have to relink it or skip.
Isn't there some way to just get the program to load the file without bugging me?
It seems if i go to preferences and uncheck the relink setting, the program will instead just skip the file and not load it - which is not desirable..
View 9 Replies
ADVERTISEMENT
Mar 2, 2012
I prefer using the proxy workflow for fullhd editing because it allows fast timeline scrolling. My video rushes are all on external disks. Creating a project and proxies is no problem (takes some time). The problem however is, when I re-open VS with a project for which I created the proxies before, while the related external disk is not active (removed), I still get the tumbnails in the VS library, but I lose the proxies even after the external disk is being restarted. The strange thing is that the proxies (.upx files) are still in my proxy folder (local disk) when opened in Windows, but the VS proxy file manager doesn't see them anymore. Is this normal?
View 2 Replies
View Related
Aug 7, 2011
I've several hundred video clips from my Samsung R10 HD camcorder ( H264 - 1080 25 fps) that I wish to link into one continuous file. I'm not bothered about transisitons or any other editing.
Ideally, I would prefer it to be lossless, but when the clips are placed into X3, it appears they have to be rendered. However, if I'm forced to re render, I cant find a 1080 H264 setting in MP4 format with 25 fps?
View 14 Replies
View Related
Oct 7, 2012
I'm noticing Jaggies in a rendering done with Image Based Light at the edges of bright reflections. Obviously I'd rather not have such jaggies.
I have the feeling that the problem is because the light is so bright that the rendering is ending up with a clipped result at edges between extreme bright and dark.
Click this and view at 100% original size to see them.
View 16 Replies
View Related
Feb 5, 2014
I can't quite get the effect I am looking for. I have a flat plane mapped with a standard reflective material that has a transparency map. I'd like the transparent areas of the map to disappear and not have reflections. I'd also like my lights to be excluded from the reflections. I tried to exclude my light group using the "local exclude" button in the reflection map, but nothing changed. I've also done tests unchecking each box withing the material editor to see where this can be controlled.
View 4 Replies
View Related
Sep 3, 2007
What are some of the things I can do to prevent rasterization of vector images when I create them in CorelDraw? Do transparency and gradients cause rasterization?
View 3 Replies
View Related
Sep 9, 2013
In order to avoid duplicate event handlers, I did like the following...
Document doc = Application.DocumentManager.MdiActiveDocument;try { doc.BeginDocumentClose -= new DocumentBeginCloseEventHandler(MyEventHandler); }catch { // Do nothing }doc.BeginDocumentClose += new DocumentBeginCloseEventHandler(MyEventHandler);
The above worked greatly with AutoCAD 2007. But yesterday I migrated my code into AutoCAD 2010 (with Object ARX 2010).
Unfortunately, it seems like AutoCAD 2010 catches before my code catches it. I guess I could just have a global boolean value that checks the status of event attachment.
View 7 Replies
View Related
Oct 15, 2007
I used CS2 to edit my photos but I notice that when i flatten the image and save it, the images saved has some quality loss in it. It really has started to annoy me and I cnt edit my images. Please tell me a way to reduce this quality loss. I have to save the images in JPEG as I have to post them on the internet.
and i hv also noticed that sme colors change when i save the image..like the saved image is a bit darker than what i see in photoshop...
View 1 Replies
View Related
Dec 3, 2012
I need to sort the BOM (structured) while avoiding three parts. So I attempted manually locking the three parts in the BOM through the user interface and then running the following code
' Set a reference to the assembly document. ' This assumes an assembly document is active. Dim oDoc As AssemblyDocument oDoc = ThisApplication.ActiveDocument
' Set a reference to the BOM Dim oBOM As BOM oBOM = oDoc.ComponentDefinition.BOM
' Make sure that the structured view is enabled. 'Set a reference to the "Structured" BOMView Dim oBOMView As BOMView oBOMView = oBOM.BOMViews.Item("Structured")
'The following line works correctly Call oBOMView.Sort("Part Number",True) 'Re-Number the BOM Call oBOMView.Renumber(3, 1) 'Re-Sort Items 'Call oBOMView.Sort("Item",True)
The above code is bits and pieces that I have combined from the internet. The only problem with it is that sort works fine on some files while on others it skips a few e.g. 1,2,5,6,7......
Is there any way we can sort the BOM while avoiding all the locked parts.
View 5 Replies
View Related
Feb 3, 2013
when I try to cut out a freeform selection, it blurs the edges around the remaining image. Since I want to be able to piece together the images later, I want to avoid this. How?
View 1 Replies
View Related
Dec 12, 2012
When using mesh smooth from AutoLisp, is there a way to avoid the dialog that comes up when the object is a non primitive 3d solid?
View 8 Replies
View Related
Oct 6, 2013
Just grabbed Scott's book from amazon and can't wait to get a better understanding about some of the tools I've been using. In the meantime I just noticed that I have some white trails or fine lines in an image I'm working on that appear after I have been moving things around and deleting sections etc.
It's no problem on a little image like this to run around with the brush to tidy it up and then fill white/transparent, but I'm wondering if there is there a setting or an order of working that avoids making the lines in the first place?I have filled the background in black to show the trails...
View 9 Replies
View Related
Feb 28, 2012
Problem: How to enlarge (100 times) image of multiple intersecting low resolution contour lines wile avoiding pixelation?
Simple answer: It can't be done.
Second thoughts: Well, under some circumstances it can be done... sort of. For example if lines are orthogonal to begin with then simple re-sample to nearest neighbor algorithm will do fine. If lines are simple enough, then tracing them with pen tool and recreating the original lines at higher resolution by stroking the paths with a brush will do also. Also if original lines are smooth and thick enough then some re-sampling, blurring and leveling can work (anisotropic diffusion filter may work) but will produce smoothing artifacts at corners.
From what I can see the problem boils down to creatively converting the original lines to vectors (paths / shapes) and avoiding the whole messiness of raster anti-aliasing. But here we face additional problems: Adobe trace engine is not smart enough to recognize geometric shapes, intersecting lines, straight edges, orthogonal lines and mathematical curves - just try to trace a font and you will end up with a baggy monster. Additionally, it appears that in Photoshop center-line trace is not possible and you are limited to outlines.
View 9 Replies
View Related
Dec 25, 2013
I have a list of Layer Names in a text file. How can i check the Layer Names in the autocad drawing file with the list and log all the errors in a notepad.
View 2 Replies
View Related
May 3, 2011
This might be more of an Acrobat question, but is there an easy way to check the resolution of an image that was done in Illustrator and is now sent to you as a PDF?
View 5 Replies
View Related
Aug 26, 2012
I have created a 15 page document in CorelDraw X5, I want to do a spell check of complete document in one go, how to do it?
View 1 Replies
View Related
May 27, 2012
I am not fully conversant with the optimization function however I have leaned that this can be used for checking FEA tests on designs.
View 4 Replies
View Related
Nov 21, 2012
If you make alterations to a model, and then switch to vault menu, your model is red with an asterix (requires saving). If you click check in on this, you get the message that it needs saving, click ok. It appears that it has worked but all the buttons on the toolbar are frozen. if you click the big I all the ribbon greys out and you need to restart Inventor. The only button that still works is Suite Workflows.
I have SP1.1 installed as well as the vault hot fix.
View 5 Replies
View Related
Jan 22, 2011
When can I expect hyphenation and spell checking for selectable language sin Xara Designer 6 Pro? I am doing a lot of Flyers and some text based graphics with Xara and this is the one feature I am still missing. If it's getting to complicated I switch to Corel Ventura Publisher which has not been maintained since ages, but is still a good piece of software. By teh way: Why does Xara/Magix not simply buy Ventura from Corel an include into their packages.
View 3 Replies
View Related
Jun 12, 2013
Having problem when using Inventor to check in a (large->slow) file while closing vault at the same time?
One of my colegues had a drawing file lose some of his changes when he checked in. we could not see a reason why, as the file was in vault with the correct time stamp. the file was the same as the previous check in.
This morning i have had a similar problem, where by i had made changes before checking in last night and when i opened the file in the morning the changes where not there.
I looked on my c drive in old versions (before i did anything else to overwrite it!) and low and behold the changes there!
The only thing i remember doing that was not normal was to close Vault while this large file was in the process of checking in through inventor.
View 7 Replies
View Related
Dec 9, 2011
I am using Inventor 2009 and have always been told not to check out files from the Vault directly. Rather to use Inventor when checking them in or out. What is the reason for this and has that changed with current versions?
View 1 Replies
View Related
Feb 8, 2013
I have Machine.iam with all children checked out, except for company-library-parts and Content Centre parts.
After changes to non library parts and checking in machine.iam (with 1 or more company librarie .iams in it) Inventor says: machine.iam and (x) dependent files must be saved.before they can be checked in.save and continue?
Answering Yes -> Inventor says: One or more documents have been modified but save was unsuccessful. You must save the document prior to check in. (but I did save before check in!). Only option is to press cancel..
All filenames of library.iams in the vaultlist in inventor are turned red with an * behind the filename stating they have changed.(?) Somehow inventor thinks the library.iam haved changed in this machine.iam..
If i do this again with all included children checked out, but not the library files, the result is the same.
I tried to find out what is wrong with these library-parts (all library.iams (?)) so I opened a few of these library.iam (with the librarie.ipj) and the update button is greyed out so there are no changes..
We “solve” this now by closing the machine.iam, inventor then asks: save changes?, press Yes, an new window pops up: file “machine.iam” is checked out to you. Do you want to check it in now?, press Yes, a new window pops up asking which files you want to check in: machine.iam and all checked out parts in it, press OK and all will be checked in.
But this only works with files that are already in the vault, not with new drawings of iams.
We used to have the problem after saving an part or assembly -> Inventor would ask after pressing close: do you want to save, as if the first save didn’t work.. Now we have a bigger problem..
Also sometimes checking out include children only includes all direct children and not also children of children.
View 2 Replies
View Related
Sep 6, 2012
after rotating a line to make it diagonal, how do you check the degree that it is diagonal so it can be replicated with other lines? It does't show this in Info or Transform Panels.
View 3 Replies
View Related
Mar 31, 2013
When I open Elements 7 on the left side it starts looking for subscription information but it never stops looking. I have to close the program and restart to get in. Thisd is extremely annoying. Why does it do that? I have a legal registered program. How do I get it to stop this?
View 1 Replies
View Related
Aug 8, 2013
I have a lot of custom libraries for purchased items for my projects. When I bring them into my assemblies I cannot turn on or off surface planes or make any changes.
I get the message that the file is not checked out to me. How can I make it so they are always checked out to me. The libraries are mine on my system.
View 9 Replies
View Related
Aug 14, 2012
I have some commands in which I add a button to the context menu in certain situations. Depending on the situation the button may be added or removed.
I'm alternating between using iterating through the definitions on the object they belong and if I have access to the it such as events that expose the commandbar object I iterate through it's buttons. If I don't I use a try/catch on the ControlDefinitions. Iterating through that causes an unacceptable pause.
I've always thought using exceptions to test objects is expensive but the delay breaks the users flow due to the pause.
What is the correct way to test for this?
I also run into this situation because I have different addins that add different sets of controls from a common set of dlls depending on the use context. Try/Catch works but is that the recommended way to test for things. I often need to test for the existance of things such as parameters (I have some plugins which will recreate sets of needed user parameters and some have hundreds if they don't exist already) and try/catch seems to be the best method.
View 4 Replies
View Related
Aug 8, 2013
we are a large manufacturing organisation and currently are using Inventor 2014 for our product design and day to day production drawing. We purchased Inventor 2014 recently for its BIM transfer capabilities. It would appear however that we can only view the outcome of the transferred files fron Inventor within Revit its self.
As we do not require Revit for any production work, purchasing a Revit licence is not an option. I recently downloaded the trial version of Revit Architecture to review the transfer files but the trial licence is now ready to expire.
View 3 Replies
View Related
Jun 3, 2012
Yesterday, I upgraded from LR 4.0 to 4.1. Ever since that moment, when I try to launch it, Lightroom displays a progress bar with message: "Checking Catalog Point Curves". The progress bar advances to about 10% and then stops. I waited for about 20 minutes and it did not move at all. I had to force-quit. I tried that for a couple of times - same results.
Why did Adobe decide to start a new mode of UPDATING the old version instead of REPLACING the old version with the new one, like it used to be? As it was before, I could simply get back to using the older version. Now, there is no going back!
Do you even know what "Checking Catalog Point Curves" means?
View 2 Replies
View Related
Jun 4, 2013
Installed Product desgin suite 2014. I can create a new inventor dwg file and place a base view of an assembly into it. I then attempt to check it in and it causes Inventor to not respond and eventually crash. When I reopen the dwg from my working folder and attempt to check it in again it gives me an error saying that the file already exists.
View 1 Replies
View Related
Jul 17, 2012
I am looking to check the hiddenline status of a part in a drawing. The drawing is made from an assembly. I dont want to take all the segments from the view and check for each of them. I want a way I can just grab the entities that are made from an occurence.
I was hopping to use the drawingcurve(modelobject), but I dont know what to use as the modelobject! is it the edge, edges, component definition... Here some of the code that is not working.
Dim _portePattern As OccurrencePattern = oassbly.ComponentDefinition.OccurrencePatterns.Item("Pattern Porte")
Dim _PoigneeOcc As ComponentOccurrence
Dim _PorteOcc As ComponentOccurrence
Dim PatEle As OccurrencePatternElement
Dim _poigneeDef As ComponentDefinition
Dim _poigneeSFbody As SurfaceBody
Dim _poigneeEdges As Edges
[code]....
View 1 Replies
View Related
Jul 5, 2012
I have a .DWF underlay that I am tracing over an aerial. I need to create hatches for several areas, and tried to PEDIT the lines and arcs into a polyline. Several segments, however, were not "connected" to the adjacent segments even though I'd meticulously snapped to endpoints to draw the lines.
Is there a command or LISP routine to check for connectivity before I attempt PEDIT so I can fix the gaps first?
View 1 Replies
View Related