Lightroom :: What Are Translated Strings Files

May 11, 2012

What are translated strings files?  Do I have to keep them? There seem to be lots!  As far as I see they are in foreign (to me) lanquages.  Can I get rid of them safely?

View 6 Replies


ADVERTISEMENT

Revit :: Cannot Render In Cloud - Files Could Not Be Uploaded / Translated

Feb 24, 2013

Using Revit Architecture 2013 with Update 1 on a Windows 7 32 bit system. I've rendered successfully in the past ( a month ago, as I recall) and then, as I continued working on hte model, the ability was gone.
 
I receive either the files could not be uploaded or the files could not be translated errors each time. It's quite frustrating. I love this product, but I am in grief becuase of this.
 
I've tried all the suggested remedies in the book: Logged in and out from Revit, cleared the firefox cookies and cache (used ccleaner) logged in and out of the 360 account on the web and said my prayers. Several times. I even uninstalled and reinstalled Revit on a different computer, to no avail.
 
Since other models render perfectly, I suspect a problem with the model.

View 1 Replies View Related

Lightroom :: Embed Long Text Strings To Image Metadata?

Mar 20, 2012

I would like to embed long text strings to image metadata, in order to copy and paste memories written and related to these images. As an example, I'm keeping a sailing logbook and I would like to add the daily entries to pictures but I have run into problems when sharing images elsewhere. The string length exceeds the metadata standard lengths.
 
Which standard metadata fields allow longest text strings that I could use for my logbook entries without the fear of losing them when exporting or sharing them elsewhere?

View 1 Replies View Related

Photoshop :: System Error - Wrong Parameter (translated)

Nov 2, 2013

Whenever i try to start Adobe Photoshop Album 2,0 i recieve this error and the program shuts down instantly. I dont get this error with any other program.
 
I run Windows XP Professional.

View 1 Replies View Related

Revit :: Rendering In Cloud Returns - The File Could Not Be Translated

Nov 4, 2013

When attempting to launch the Render in Cloud feature in Revit 2014, the following error message is displayed:

Render in Cloud

A Problem occurred.

The file could not be translated.-1

View 5 Replies View Related

AutoCAD Inventor :: Editing Strings In ILogic

May 30, 2013

I'm struggling a little with editing strings in iLogic. I have sets of part numbers that vary in length, but I'd like the part number to appear in another custom property with the last 6 characters trimmed off. 

e.g.

Part Numbers:                                       12345_WXXXX

                                                              123456789_WXXXX

                                                              123_WXXXX

Desired Values in custom field:            12345

                                                              123456789

                                                              123

I can write a line of code that keeps the last 6 characters but I can't get it to trim off the last six, because I don't know how many characters will be in the code before the last 6.                  

View 4 Replies View Related

AutoCad :: Change Text Strings In Several Drawings

Oct 5, 2011

Using AutoCAD 2010.

Is there a way to change text strings in several drawings? A search and replace routine that would do several AutoCAD Drawings at once.

View 1 Replies View Related

AutoCAD Inventor :: Creating Strings For Tower Crane

Oct 28, 2012

I'm making a tower crane for a project and I need to have strings that are attached to the top of the tower and the end of the boom and another that attaches to the top of the tower and the rear boom.  I used the cable and harness tool, but it didn't seem to account for the presences of the cables I made when I ran a stress analysis, which I need to do.  

How would I create a string or an object that would function similarly?

View 1 Replies View Related

AutoCad :: Sum Of Numbers In Text Strings But In Dynamic Block

Oct 19, 2013

How can one add numbers in text strings that are in seperate blocks or dynamic blocks with pull down menus? I can get a sum of numbers in a text string to add up, but once it is in a block or dynamic block with pull down menus they don't all add up.

How can one bcount dynamic blocks with pull downs?

View 0 Replies View Related

AutoCAD 2010 :: Remove Character Formatting For All Of Text Strings At Once?

Oct 30, 2012

I am working with tables that are linked to data from an excel file.After I create a table I dettach it from the excel file. I do not want the excel file to control the table.

I then need to update the text format of all the text in the table. I've noticed that the text strings are still formatted based on how the excel file was formatted.

The only way to remove this is to click on the cell, highlight the text, right click, and then select Remove Character Formatting. Unfortunately I have to do this for each text string.

Is there a way to remove the character formatting for all of the text strings at once?

Even better, is there a way to format the table so that it does not change the text style based on what is in the excel file but instead based on AutoCAD's text styles?

View 9 Replies View Related

Revit :: Adjust Length Of Tick Marks Used In Dimension Strings?

Jun 15, 2012

Is there a way to adjust the length of the tick marks used in dimension strings?  I'd like something other than the supplied Diagonal 1/8" or Diagonal 3/64" options.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Selecting Text Strings Of The Same Value

Apr 22, 2013

A code that scans all through the drawing and selects the texts of the same value regardless of the layer, color, style, ...etc..

Just selecting duplicates for highlighting nothing more.

View 9 Replies View Related

AutoCad :: Global Attribute Edit - Changes All Text Strings That Match

Dec 1, 2011

I am jumping 8 versions to 2012. I've located this command but it changes the all text strings that match? I tried naming the block but that didn't work.

Gobal edit – Modify > Object > Attribute> Global. Command is –ATTEDIT –

a. Editattribute one at a time > enter N

b. Editonly visible on screen > enter N

c. Enterblock name specification > enter

d. Enterattribute tag specification > enter

e. Enterattribute value specification > enter

f. Enter string to change > enter text makingsure it is case sensitive

g. Enternew string > enter text

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Associative List With Strings And Spaces

Aug 16, 2013

I'm making a program that reads a property file that follows the format:

"key=value"  for each line on the text file.

One specific line has the key "file" and the value is some file path that includes a space.file=C:/my folder/my file.txt
 
Now I can extract what the key and value is for any given line in the file.However, I want to put all of the data into an Associative List so that I will not need to keep opening the file each time I search for information. I've been using the cons function in order to create a dotted list, which is successful.  However I have an issue when I add this dotted list to the end of my associative list.

Suppose I have a key and a value already stored inside variables.  Below I have two lines of code, first the dotted list portion is printed, and works as expected.  The second line adds that dotted list to the associative list:

(princ "Cons: ")(princ (cons key val)) (princ "") ;Prints (file . C:/my folder/my file.txt)(setq assocList (append assocList (cons key val))) ;Error message here.
 
The error that I receive says "; error: bad list: "C:/my folder/my file.txt"..Here is the change:

(setq assocList (append assocList (list (cons key val))))

 Now, the dotted list is inserted properly and looks like this after printing the whole associative list: ((version . 1.0.1) (file . C:my foldermy file.txt))

View 1 Replies View Related

AutoCAD 2013 :: Batch Erase Same Blocks And Strings In Multi-drawings

Oct 8, 2013

I have 200+ page drawings and need to open each dwg to erase same block and text strings. Any way to batch erase same blocks and strings in multi-pages?

View 7 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert List With String Or Lists Of Strings To Text

May 22, 2013

Someday the light bulb is going off and I will understand mapcar and lambda. However.....I have a program that reads an excel file sheets. Sometimes the sheet only has 1 column, sometimes 2 or more.

I need to convert the saved values from the sheet to a list with the text spaced evenly. Unfortunately the text lengths vary. I would like a subroutine to pass the list to and return a list of strings with text aligned with padded spaces allowing for the longest text in each column. I am using the new list in a dialog box with fixed_width_font=true (so columns align).

Example 1-

(setq List1 (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4"))
(AlignText List1)
returns
"Col1-Line1"
"Col1-Line2"
"Col1-Line3-longer"
"Col1-Line4"

so no padding needed

Example 2 -

(setq List2 (list (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4")))
(AlignText List1)
returns
"Col1-Line1        Col2-Line1-longer"
"Col1-Line2        Col2-Line2       "
"Col1-Line3-longer Col2-Line3      "
"Col1-Line4        Col2-Line4      "

 Example 3 -

(setq List3 (list (list "Col1-Line1" "Col1-Line2-longer" "Col1-Line3" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4") (list "Col3-Line1-longer" "Col3-Line2" "Col1-Line3" "Col3-Line4")))
returns
"Col1-Line1        Col2-Line1-longer Col3-Line1-longer"
"Col1-Line2-longer Col2-Line2       Col3-Line2       "
"Col1-Line3-longer Col2-Line3      Col1-Line3       "
"Col1-Line4        Col2-Line4      Col3-Line4       "

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Passing Excel Cell Content (Text Strings)?

Oct 23, 2012

How can I pass the contents of a cell value (text string) to Acad? I want the user to click on a cell, then have lisp use the string as the name of a block to insert.

View 4 Replies View Related

AutoCAD Inventor :: Create List Of Text Strings To Select From Defining Material Thickness?

Nov 7, 2011

Im trying to create a list of text strings to select from defining material thickness and then plug that selection into a global form custom iproperty called "MaterialDescription".. Also, is it possible to access and pre-enter field text edit items in iLogic?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Return A List Of Strings Of Layout Tabs In Drawing

Mar 6, 2013

(layoutlist) ... returns a list of strings of the layout tabs in the drawing.I've used this ages... Isn't it a core lisp function, or is it coming from express tools or somewhere else?

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Select Multiple Instances Of Text (dtext) With Different Strings

Apr 23, 2012

I am trying to select multiple instances of text (dtext) with different strings but want to change all of the fomats to the same settngs.  I have searched high and low on the web to no avail.  I am using AutoCAD 2012.

For example:  I want the routine to find all instances of "AA", "AB", "AC", "AD", "BA", "BB", "BC", "BD", etc... all the way up to "ZD".

Next I want all of those text entities to change to the following text formats:

Text Style = STANDARD_96Layer = F-ANNO-CKTText Justification = MIDDLE CENTERText Width = .8

Getting this to work with just finding one string at a time with the ssget function seems simple enough, but it's getting it to work with multiple strings that I can't get past.

View 8 Replies View Related

AutoCad :: How To Draw Cross Section Of Timber Winder Stairs As Strings Change Angle

Jun 1, 2012

Just learning 2D CAD and trying to draw a cross section of a timber winder stairs as the strings change angle (I think) at the winder section. Looking at 3nr winding steps.

Setting out a standard stairs is okay, so I have the floor to floor height.

View 4 Replies View Related

Lightroom :: Will Current Plugins For Sigma DP1/2 RAW Files Work With Files From DP1/2 Merrill Cameras

Oct 24, 2012

Will the current plugins for Sigma DP1/2 RAW files work with files from the DP1/2 Merrill cameras? And if not, is Adobe developing plugins for these cameras?

View 2 Replies View Related

Lightroom :: Scrambling Raw Files - Affected Raw Files Open Fine In Other Programs?

Mar 27, 2014

After many years of using LR this is the first time I've encountered this issue (see 1st screenshot below). LR is scrambling my files. The affected raw files open fine in other programs, including adobe photoshop cc (see 2nd screenshot).

View 15 Replies View Related

Lightroom :: Nikon D600 - Deleting Files And Saving Files Brings Up Error Message?

Feb 25, 2013

Deleting files and saving files brings up an error message. Files can't be deleted from lightroom which makes editing a nightmare. Also Saving Files (raw of jpeg), brings up an error message everytime.

View 1 Replies View Related

Lightroom :: Old Files Are Automatically Removed From Program Files Folder

Mar 12, 2012

Following previous LR upgrades (3.2, 3.3, 3.4, 3.5 and 3.6), old files were automatically removed from the Program Files folder. However, I just upgrades from 3.6 to 4.0 and notice that the old files are still on my hard drive in the 3.6 folder. Do I need to keep these files or can I UNINSTALL LR 3.6?

View 5 Replies View Related

Lightroom :: How To Export Retouched Files To Hard Drive Files

Jun 22, 2013

When I try to export retouched files to hard drive files my Mac crashes and has to be force quitted. I thought this maybe a L'room 4 problem so I bought L'room 5 and it's still happening. What can I do?

View 3 Replies View Related

Lightroom :: Crash In Develop Module RAW Files With Sidecar Files

Jan 12, 2012

The issue probably has to do with the differences in settings. I am using the 64 bit version of Windows 7.I imported a group of pictures with the XMP sidecar files generated with Lightroom v3.  All the image files, a mixture of Canon Mark 5D II RAW and jpg files from my point & shoot UFO camera, imported without issue picking up all my tagging and GPS settings. When importing you are put into the Library module and from the Library module I could click on any RAW or jpg file, look at the meta data and view full screen.
 
I then entered the Develop module with a jpg picture selected and none of my settings made it across. The process was set to 2012.  I was able to try out the new adjustments and all worked very well.I then selected a RAW file while still in the Develop module and all hell broke loose.
 
I got a tip window pop up, the film strip went orange, the rest of the app screen then became greyed out and then behind tip pop up a crash window containing this information appeared:

Problem signature:
Problem Event Name: APPCRASH
Application Name: lightroom.exe
Application Version: 4.0.0.1
Application Timestamp: 4ef2621d
Fault Module Name: MSVCR100.dll
Fault Module Version: 10.0.40219.1
Fault Module Timestamp: 4d5f034a
Exception Code: c000041d
Exception Offset: 000000000003c1be
[code]....
 
There was no other path but to have the app close after that.  Now since Lightroom has left off with the RAW file in the develop module when I restart the app it starts in the develop module with that same RAW image selected and I crash before I can change to a jpg.   I am probably going to have to delete and recreated the data file to use the app again
 
After the all this I went back and checked to see how I had the catalog settings in LR 3 set because there were no sidecar files for the jpg images.  I did not have the option to write settings to jpg and tif files but did have write settings to sidecar set.  So I have a bit of a mystery why I have no sidecar files for jpg files when I should have based on the way the settings were.  This probably explains why I had no issues at all with them in LR 4.
 
I am going to get LR 4 working again and then import the same batch of pictures without any sidecar files and see if I have any issues.  I will report back soon.

View 4 Replies View Related

Lightroom :: Selectively Remove DAT Cache Files For Certain Image Files?

Feb 2, 2013

I'm using LR 4.3, and would like to know how to determine which .dat cache files are associated with a certain folder of images. I don't know programming code, and, when I open a .dat cache file, I cannot determine which image file it goes with.
 
I've noticed that when I remove a folder from Lightroom, the cache files for the images in that folder remain, because the size of the cache doesn't change.  I know I can flush the cache, but I don't want to have to reload tons of .dat files already present in the cache.

View 12 Replies View Related

Lightroom :: Retrieve Printable Files From Catalog Files?

Feb 21, 2014

I recently lost some original files to a hard drive failure.  Is there a way for me to retrieve some printable files from LR catalog files?

View 1 Replies View Related

Lightroom :: Replace Source Files With Updated Files

Oct 5, 2012

Lightroom 3.6 and Windows 7.Imported 164 source files that are in a specific collection. Updated the metadata. Now need to replace the source files with these updated files. Sounded like sync folders is what I should do. how do I get the collect in a folder so I can use the sync folder process?

View 6 Replies View Related

Lightroom :: Transfer Files From Aperture 2 To LR4 Without Losing Raw Files

Sep 10, 2012

I need to transfer my files from Aperture 2 to Lightroom 4 without losing the raw files. When I did it on my laptop they are now all Jpegs. I don't want this to happen on my desktop.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved