Any Prerequisites to run panels in CS4?

I have developed a set of actions and then used the Configurator to develop two panels that front-end the actions.  The panels simply call the actions and nothing more.
I have begun distributing these in a set that is installed with two install routines (One for mac, one for windows).  In most cases everything works great but I have a persistent problem with some folks not able to load the panels. 
After installing they get the message "Please close all panels or restart Photoshop..."  They do this and yet the panels still don't show up, just this message. 
I originally thought that maybe AIR may be required to run the panels but in an earlier post Jeffrey Tranberry stated that AIR is not required to run them.
I have not been able to determine any common issue among those that can't open the panels. 
Does anyone know if there are any prerequisites to running panels in Photoshop CS4?  No problem developing the panels but running them seems to be a problem on some machines.
Any help is appreciated....
Thanks
Rob

hello anil sir,
long back i asked about plugin downloading.
now i downloaded "plugin-1_1_3_005-win.exe" and put it in my tomcat directory.and i also have a .cab file called jinstall-113-win32.cab.
in the embed tag what html file name i should give and what path? there exactly
"http://java.sun.com/products/plugin/1.1.3/plugin-install.html\"
path is there. what should i give there in my case?
again i am asking you, please dont hesitate to answer.
my entire plugin ie .exe file in
http://www.handpaintedgreetings.com/hpg directory.
and the jinstall-113-win32.cab is also in the same directory.
is the following is correct:
please do the modification if it is wrong.
<OBJECT classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\" width=\"405\"
codebase="http://www.handpaintedgreetings.com/hpg/jinstall-113-win32.cab#Versin=1,1,3,0">
<PARAM name=\"java_code\" value=\"caforclient\">
<PARAM name=\"java_codebase\" value=\"http://www.handpaintedgreetings.com\">"
<PARAM name=\"type\" value=\"application/x-java-applet;version=1.1.3\">
<PARAM NAME=\"username\" VALUE="+id+">
<PARAM NAME=\"myoption\" VALUE="+op+">
<COMMENT>
<EMBED type=\"application/x-java-applet;version=1.1.3\" width=\"405\" height=\"315\" align=\"top\" pluginspage=\"http://www.handpaintedgreetings.com/hpg/plugin-install.html\" java_code=\"caforclient\" java_codebase=\"http://www.handpaintedgreetings.com\" >
<NOEMBED> //here lies my problem (from where this "plugin-install.html" file i need to pick it up and put it in tomcat)
</COMMENT>
Plugin tag OBJECT or EMBED not supported by browser.
</NOEMBED></EMBED>
</OBJECT>
thanks and regards
by
sambareddy.

Similar Messages

  • Running Illustrator on CS4. Would like to insert photo image into body of type. Would appreciate any guidance. Thank you

    Running Illustrator on CS4. Would like to insert photo image into body of type. Would appreciate any guidance. Thank you

    Use a clipping mask.
    Illustrator Help | Clipping masks

  • Is Adobe AIR needed to run panels?

    I notice in the User Guide that Adobe AIR is needed to run the Adobe Configurator 1.0.  Is this only required at the time you develop panels or is AIR runtime needed on a machine on which you install an already developed panel?
    Any help is appreciated.
    Thanks..
    Rob

    No. AIR is not required to run panels. In fact, you cannot run AIR projects as a panel in Photoshop CS4. You can use AIR to create a standalone app to control creative suite applications using SwtichBoard. http://labs.adobe.com/wiki/index.php/SwitchBoard

  • Custom File Info Panel CS2- CS4

    I have a Custom File Info Panel that has been created in Adobe Photoshop CS2 and works in CS3.  I am having trouble figuring out how to get it to work in CS4.  Is there a way to port the Custom File Info Panel into CS4 without entirely recreating it?
    I am seeing references to FileInfo SDK and creating a new Flex UI but I can't seem to find a definitive method on this pre-CS4 File Info Panel to the new UI - and I am in unfamiliar territory.
    Any assistance or points in the proper direction would be most helpful.
    UPDATE:  Answering at least some of my own questions, I have followed the procedure here:
    http://blogs.adobe.com/gunar/2008/11/customizing_metadata_ui_in_cs4.html
    I am still having some trouble with a couple of the unique properties but I expect that they will be typos... I hope...
    Any good reference information is still welcome.

    Thank you for suggesting the PS Scripting forum but I think the next stop might be the XMP SDK Forum as there are a few similar questions there such as http://forums.adobe.com/thread/540397.  But before I go impolitely cross-posting...
    I've had some success and it appears that my custom file info metadata edited and saved in CS2 is now visible in CS4 and the reverse is also true - metadata edited and saved in CS4 is visible in CS2.  This was built using the Generic Panel from the SDK according to the instructions shown at the link in my original post.
    The only problem is that the external application that relies on the custom metadata doesn't see the CS4 version of the metadata.  I suspect that this is just some general namespace issue.  Perhaps if an XMP expert would be willing to comment on the conversion of the Custom Info Panel based on the following single portion of the metadata to see if I am doing it correctly - I would very much appreciate it.
    In the CS2 Custom Info Panel XML I have this field:
    <panel title="$$$/CustomPanels/XYZ/PanelName=XYZCorp Graphics MetaData" version="1" type="custom_panel">
      group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text(name: '$$$/CustomPanels/XYZ/fullName=Full Name/Title of Graphic', font: font_big_right, vertical: align_center);
      cat_container_edit_text(xmp_ns_prefix: 'xyzcorp', xmp_namespace: 'xyzcorp', xmp_path: 'FullName', container_type: seq_struct, horizontal: align_fill);
      mru_popup(xmp_ns_prefix: 'twcable', xmp_path: 'FullName', no_check: true, vertical: align_top, container_type: seq_struct, mru_append: true);
      <!-- many more fields -->
    </panel>
    In my CS4 properties.xml the corresponding field:
    <xmp_definitions xmlns:ui="http://ns.adobe.com/xmp/fileinfo/ui/">
    <xmp_schema prefix="custom" namespace="xyzcorp" label="$$$/Custom/Schema/Label=XYZCorp Graphics MetaData" description="$$$/Custom/Schema/Description=CS4 Version of XYZCorp MetaData Custom Panel.">
        <!-- simple properties -->
       <xmp_property name="FullName" category="external" label="$$$/Custom/Property/FullName_Label=Full Name/Title of Graphic:" type="seq" element_type="text"/>
    <!-- many other properties -->
    <ui:separator/>
    </xmp_schema>
    </xmp_definitions>
    It seems that the following CS2 => CS4 translations should be true:
    "xmp_namespace" => xmp_schema namespace property (in this case "xyzcorp")
    "xmp_path" => xmp_property name property (for this one property, "FullName")
    is there another translation that I am missing?  I am betting it has something to do with the CS2 "xmp_ns_prefix" but I am not entirely sure how to map this.  Also perhaps something in manifest.xml (though it didn't seem like it)?
    Many thank you's to anyone that can offer words of wisdom.
    j

  • Anyone upgrade to Snow Leopard and runs CS3 or CS4?

    Hi all. I'm looking to upgrade my Mac from tiger to snow leopard, but I wanted to make sure there weren't any problems beforehand. Has anyone upgraded to Snow Leopard? Have you had any problems running CS3 or CS4 since?
    Thanks.

    Works fine for me on a 2008 unibody MBP. Only a couple bugs that I can live -- neither affect workflow or CS4 functionality.
    A) As with Leopard, some programs have an issue with closing. About half the time when you close Ai or Dw the program closes fine -- then it tells you it crashed. A bit annoying, but I just go ahead and send the error report, dosent affect much, although if you've changed any preferences they might get lost. Adobe's prob gotten several hundred crash reports from me on that one :∫
    B) Occasionally when you switch from one app to another and you try to go back it only will switch only when you click the icon on the bottom -- otherwise the app you want will just switch back to the other app -- I think it's a snow leopard bug, but seems to affect Flash and AE. Very rarely however.
    I've been using Snow Leopard w/ CS4 since release day for prob 14 hours a day 6 days a week and these are my observations.
    Go for it dude, you'll love 10.6 -- Use CCC before that way if it's not functioning properly you can aways go back.
    It should be noted, I have not tested any third party plug-ins yet. After Effects by itself 9.0.2 has no issues that I can tell.

  • We are running aperture from cs4 and it keeps freezing the computer we running it on snow lepard

    We are running aperture from cs4 and it keeps freezing the computer . we running it on snow lepard help please!

    Hello,
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • Any prerequisites for using javascripts (JS) in SAP BPC 7.5NW (SP5)

    Hi,
    I keep getting evalution and parsing errors, every time I use a JS in my conversion files. It simple standard JS, like:
    js:parseInt(%external%)
    js:%external%.substring(2,5)
    etc
    Are there any prerequisites for using javascripts ??
    Is there anywhere I can debug these JS withing SAP BW ?
    Thank you,
    Joergen

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

  • My first generation AppleTV will not sync with iTunes anymore.  I get an error message that says: "The Apple TV is not responding Check that any firewall software running on this comptuter has been set to allow communication on port 3689"  firewall is off

    My first generation AppleTV will not sync with iTunes anymore.  I get an error message that says: "The Apple TV is not responding Check that any firewall software running on this comptuter has been set to allow communication on port 3689"  firewall is turned off.. Any ideas?

    Thanks Rudegar,
    I only synch and do not stream off of my 1st Gen AppleTV
    I will try with ethernet but will be a pain in the butt if i can not fix it with wifi for long term fix
    I may end up trying to do a named IP address vs DHCP for this appleTV (not sure if i can do both and do not want to remove DHCP as i have a bunch of sensors and other devices that I prefer to dynamically add to the network via DHCP vs. assign each one
    Will keep working on other fix options (factory reset, etc.)
    Thanks again

  • Is there any way to run abap program in dialog process with process chain?

    Hi.
    I just want to run custom abap program in every 30min.
    so I made process chain and connect abap program.
    but it returns NOTHING when background running.
    the program has ABSOLUETLY no problem when it's running DIALOG process.
    custom program is modified from sap standard program for my use.
    so complicated and hard to read that I cann't figure out what's problem in backgound job and even hard to debug in background process.
    is there any way to run abap program in dialog process in every 30 min.?
    or call BSP page or call function.
    any solution will be helpful that excuting PROGRAM or FUNCTION or BSP PAGE in schedule job and should running dialog process.
    thanks.
    Lee.

    Hi,
    did you try using sm36 transaction?
    1Give these values in Gereral data
    Create one sample job "SAMPLE JOB"
    Priority "A"
    Execu target - Your application server
    2Click start conditon
    schedule according to ur requirements.
    3.Click Step button
    Give your ABAP program name.
    fill variants if it has any variants.
    if it is useful assign points
    Regard,
    Senthil Kumar.P

  • Any Prerequisite for adding MRP Area?

    Hi Gurus,
    I need to add MRP area data to a large number of materials. I tried testing for some material . For some materials I am able to add the data. For other I am not able to add.
    Is there any prerequisite for adding MRP area to a material?
    Can some suggest any BAPI to add/ update MRP area for a material?
    I am basically a ABAPer and don't have much Idea about MRP area. Please suggest any link where I can learn overview about MRP area.
    Thanks in Advance,
    KG

    hi,
    the prerequisities for MRP area are
    1> ACTIVATE MRP AREA
    2> DEFINE MRP AREAS.u will find the settings under the menu path:
    SPRO > IMG > MATERIAL MANAGEMENT > CONSUMPTION BASED PLANNING > MASTER DATA > MRP AREAS
    or u can find it under the menu path:
    SPRO > IMG > PRODUCTION > MATERIAL REQUIREMENT PLANNING > MASTER DATA > MRP AREAS.
    regards
    jash
    Edited by: diptasya jash on Apr 30, 2009 11:35 AM

  • In SMO there is any option for run both ExecuteNonQuery and ExecuteWithResults.?

    In SMO there is any option for run both ExecuteNonQuery and ExecuteWithResults query at simultaneously?

    Hello,
    First, in a client session nothing can run "simultaneously", all statements are executed in sequence. And what should
    it be good for to run ExecuteNonQuery +
    ExecuteWithResults; both executes the SQL batch, the only difference is, ExecuteWithResults returns a result?
    But if you like, start one by one.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Are there any known issues running MAC OS X 10.8.5 on my IMAC and MAC OS X 10.6.8 on my MAC Server?

    Are there any known issues running MAC OS X 10.8.5 on my IMAC and MAC OS X 10.6.8 on my MAC Server?

    To answer the obvious question. No. None that I've seen. But it may depend on what you mean exactly?
    Connecting to file sharing service - None that I've seen
    Connecting to Open Directory (assuming proper configuration) - None that I've seen
    Using the Server's Mail Service (assuming proper configuration) - None that I've seen
    I can say the same about anything else the Server may or may not be offering.

  • How to solve this. It happens even when firewall is disabled. Apple TV: "Check that any firewall software running on this computer has been set to allow communication on port 3689" alert in Windows

    How to fix this. Happens even when firewall is disabled.  (Apple TV 1st generation)
    Apple TV: "Check that any firewall software running on this computer has been set to allow communication on port 3689" alert in Windows

    After a few hours the same issue started again. (Port 3689 error) I checked my router settings and it shows ATV asd connected to my netrwork. ATV also shows in iTunes devices. It asll works till I try to sync. Then the error pops up
    I tired restoring ATV to factory settings. Even backed iTunes up to version 8 and every combonation therein. I started an older Gateway running Vista 64bit and it syncs fine with ATV although it's slow and I have to transfer movies  from my Win 7 to tyhe Vista machiner.
    I cannot find any reason for this issue. Can anybody solve this before it dribves me crazy? (Crazier)

  • I have Mac OSX Lion 10.7.4, Quickbooks Pro 2010, Parallels Desktop 7 for Mac, Operating in Windows 7.  Are there any recommendations for running Quickbooks Pro 2010?

    I have Mac OSX Lion 10.7.4, Quickbooks Pro 2010, Parallels Desktop 7 for Mac, Operating in Windows 7.  Quicbooks Pro 2010 is not responding or opening currently. Quickbooks does not support Parallels anymore.  I hear Apple Bootcamp is an opton.  Are there any recommendations for running Quickbooks Pro 2010 on Mac?

    QuickBooks Pro 2010 for Mac is not supported in Lion. QB Pro 2011 will work, but I just got an email today that 2011 will not be updated to work in Mountain Lion. QB Pro 2012 will be updated for ML.
    Be aware that the Mac version of QuickBooks is shamefully lacking in features compared to the Windows version. I do use the Mac version, but it has more features than I need for a small business, so it doesn't affect me. No one knows why Intuit seems to hate Mac users, but they show it every day.
    If QB Pro 2012 for Mac can be downloaded as a demo, I would strongly suggest testing with it before making a final decision. You will be able to import the Windows data, but possibly not all of it, depending on the Windows version features you use.
    Boot Camp allows you to install Windows on its own, bootable partition. When you boot to it, you are of course running Windows in every sense of the word. Just on Mac hardware rather than typical PC gear. Your Windows version of QB will work there without issue. The problem is having to boot back and forth between Windows and OS X, depending on what software it is you need to use at the time.

  • My mac won't wake up from a sleep and I have to unplug it to reboot as the power button doesn't function as well.  Any suggestions?  Running Lion 10.7.4 and sending all reports in.

    My mac won't wake up from a sleep and I have to unplug it to reboot as the power button doesn't function as well.  Any suggestions?  Running Lion 10.7.4 and sending all reports in to Apple.

    First things first:
    Update your profile (equipent, OSX, etc)
    In Lion MS office2004 is not compatible, are you stIll using it?
    Do the SMC RESET and do the PRAM reset.

Maybe you are looking for

  • Unable to download OS X Mavericks

    I have tried numerous times to download Mac OS X Mavericks, but nothing happens. Seems I am not the only one. I am on currently on Mac OS X 10.6.8

  • Plsql_native_library_dir trap in 10.2.0.4

    In 10.2.0.4 and also in previous versions, plsql_native_library_dir is not set by default. Older versions work with it well (I guess plsql is only interpreted then). But 10.2.0.4 can sometimes show an error message during plsql compilation that plsql

  • Muliple forms on a single page???

    Hello guys, I have 3 tables, all of these tables have one column(p_id) in common to maintain one-one relationship btw 1st n 2nd table and in the same way 1st and the 3rd table. Using the 1st table I am creating a form on the 1st page, and I have crea

  • RELEASE STRATEGY IN BI CONTENT

    Hi ! Do we have Release Strategy or work flow in BI Content of BW  Release 3.5 ? I have to display a history of purchasing requisitions and orders that was uploaded from SRM. Thanks !!! Zelda

  • HTML tag checkers don't recognize my title tags, H1 tags, etc

    Hi, I am trying to check my title tags, meta tags, etc to make sure they are recognized by google crawlers. Every HTML checker site I use says I am missing all the tags for title, keyword, H1, description etc Yet when I view source on my site http://