The DAM Forum
Welcome, Guest. Please login or register.
June 18, 2013, 02:03:28 PM

Login with username, password and session length
Search:     Advanced search
Jan 9, 2012
John Beardsworth's new Lightroom site
Lightroom Solutions
27968 Posts in 5116 Topics by 2914 Members
Latest Member: imthedamstar
* Home Help Search Login Register
+  The DAM Forum
|-+  Software Discussions
| |-+  Import From Camera
| | |-+  Error after opening inDesign file from Bridge
« previous next »
Pages: [1] Print
Author Topic: Error after opening inDesign file from Bridge  (Read 8393 times)
riverside
Newbie
*
Posts: 7


View Profile
« on: January 26, 2006, 04:54:15 AM »

just installed IFC - haven't used it yet but it is on Tools menu OK and appears to load OK
When I open an inDesign file from Bridge I now get a Script error window as follows.....

Error in c:\.........\ImportCamera_BR.jsx
Line 25: if ( BridgeTalk.appName = "bridge") {
appName is read only

Logged
onlyme
Newbie
*
Posts: 24


View Profile
« Reply #1 on: January 26, 2006, 06:48:31 AM »

I'm getting the same thing, both on launching InDesign and in selecting files to open via Bridge.  Doesn't seem to stop anything working in InDesign, but a bit irritating nonetheless  Sad
Logged
riverside
Newbie
*
Posts: 7


View Profile
« Reply #2 on: January 26, 2006, 09:30:16 AM »

on running IFC script I get a message....

the updated metadata will be written to a sidecar file rather than the original RAW file

the script and Bridge then Hang and have to be stopped using CRT ALT DEL

The renamed files appear to arrive OK at destination folder

Also, on running Illustrator I get Script error...

error in c:\.............\ImportCamera_BR.jsx
Line 39: ImportCamera.store = ScriptStore.open)"$$$ImportCameraStorage");
undefined is not an object

Logged
riverside
Newbie
*
Posts: 7


View Profile
« Reply #3 on: January 26, 2006, 09:47:35 AM »

update..

as long as I stay away from 'preserve orignal filename' and 'rename files as linked set' I seem to be OK

I had thought it might be because the source folder contained the Bridge Cache files but, apart from them getting renamed too it seems OK
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #4 on: January 26, 2006, 09:59:38 AM »

Interesting...
Are you saying that using "Preserve Filename" generates a Bridge hang?

Also, I have been getting that same InDesign error.  It's a minor annoyance, but it should not happen nonetheless.

Peter
Logged
riverside
Newbie
*
Posts: 7


View Profile
« Reply #5 on: January 26, 2006, 10:11:13 AM »

it would appear that, if source contains both NEF and JPG files and preserve original name is selected, IFC gives message that metadata will be written to sidecar file but it then hangs.  If only nefs it seems to work OK
Logged
cysunza
Newbie
*
Posts: 2


View Profile
« Reply #6 on: March 01, 2006, 12:34:22 PM »

Interesting...
Are you saying that using "Preserve Filename" generates a Bridge hang?

Also, I have been getting that same InDesign error.  It's a minor annoyance, but it should not happen nonetheless.

Peter

Hi to all from Mexico,

I get more or less the same error, when I open not just InDesign C2 also opening Illustrator CS2, vurioslly no error when open Photoshop

InDesing error "Error in /Library/Application Suport/Adobe/StartupScripts/IportCamera_BR.jsx
Line 25: if(BridgeTalk.appName = "bridge") {appName is read only"

Illustrator Error: "Error in ...smae path
Line 39: ImportCamera.store = ScriptStore.open("$$$ImportCameraStorage"); undefined is not an object"

By the way it doesn't matter if Bridge is open or not, same errors

Anyone out ther know if ther's a solution... everything seams to be ok, my app's at least are working...
My best for all of you

Carlos Ysunza
Ysunza Santiago
Visual Communication & Automation
ysunzasantiago.com
Logged
SeanD
Newbie
*
Posts: 35


View Profile
« Reply #7 on: March 01, 2006, 04:35:21 PM »

Same thing happened when opening GoLive CS2. All the CS programs access the same startup scripts folder, so this is why you're seeing this. A minor annoyance, as Peter said. Though, as he also pointed out, it should not be happening at all. There should be something in the IFC script that tells the other programs to ignore it.

--Sean
Logged
nkoss
Newbie
*
Posts: 13


View Profile
« Reply #8 on: January 15, 2007, 07:11:24 PM »

Has a fix ever been found for this annoyance???
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #9 on: January 27, 2007, 04:01:13 PM »

Unfortunately not.  I had hopes that the script would get improved since release, but, alas, it did not. 

Fortunately, ImageIngesterPro came along, and does a much better job of everything.

I suggest ditching IFC and going with ImageIngester Pro.
Peter
Logged
Nicholas
Newbie
*
Posts: 1


View Profile
« Reply #10 on: May 09, 2007, 06:32:17 PM »

I have developed a solution for this problem.

Issue
-----
Script errors when starting Illustrator and InDesign after installing Import From Camera script. Specifically, the following message is seen when starting InDesign:

  Error in c:\Program Files\...\ImportCamera_BR.jsx
  Line 25: if (BridgeTalk.appName = "bridge") {
  appName is read only

And in Illustrator:

  Error in c:\Program Files\...\ImportCamera_BR.jsx
  Line 39: ImportCamera.store = ScriptStore.open("$$$ImportCameraStorage");
  undefined is not an object

Analysis
--------
There is an elementary programming error in Line 25 which is identified in the first error.  What I believe the programmer is trying to ask is if BridgeTalk.appName is equal to "bridge".  Sadly, he or she has assigned the string "bridge" to BridgeTalk.appName and is testing the result of the assignment with the if.  The parser is correctly catching the invalid assignment to the read only field appName.

The second error is more obscure.  I think is is being caused by the first error.  Why the first error is not being picked up in Illustrator mystifies me.  However, correcting the first error makes this one go away so I'm happy!

Fix
---
In Line 25, change the = between BridgeTalk.appName and "bridge" to ==, that is two equals signs together.  This is the comparison operator intended.

To do this, locate the script file ImportCamera_BR.jsx and double click it.  This should open it in the script editor.  In the main code panel, scroll down to line 25, locate the = sign and type another next to it.

Use File\Save and then exit the editor.

Probably best to restart the CS2 apps concerned including Bridge.

Start Illustrator and InDesign and confirm the messages have gone away.

We're done.
Logged
peterkrogh
Administrator
Hero Member
*****
Posts: 5682


View Profile
« Reply #11 on: May 09, 2007, 07:57:18 PM »

thanks Nicolas.
Peter
Logged
Pages: [1] Print 
« previous next »
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!