Doubt in skinning of dialog property

Hi
I have applied global skinning for dialog property, i have applied new close icon for dialog proprty
whenever i hover/click that close icon  it is showing the default close icon even i have applied new image for that
what can be applied in css file to change this
currently am using the below code in css file
af|dialog::close-icon-style,
af|dialog::close-icon,
af|dialog::focus,
af|dialog::click,
af|dialog::hover,
af|dialog::close-icon-style-region{
background-image: url("../images/btn_close_popup.png");
width:13px;
height:20px;  
Help me in this ASAP
Thanks

Hi pavan.
something is definitely wrong with your code: You have an internal table for display with fields from rpca 2 and additional some more fields. I do not see a field ORT01 for CITY or PSTLZ for POSTAL CODE, at least to in table GLPCA from where the data are extracted.
You must fill PSTLZ and ORT01 (if it is for the supplier):
     SELECT SINGLE * FROM LFA1
         WHERE LIFNR = <glpca>-LIFNR AND
         SPRAS = SY-LANGU.
     IF SY-SUBRC eq 0.
        <glpca>-name1 = lfa1-name1.
        <glpca>-adrnr = lfa1-adrnr.
        <glpca>-stras = lfa1-stras.
**** add here: ***
  select single ort01 pstlz
    into corresponding fields of <glpca>
    from adrc
    where adrnr = <glpca>-adrnr.
     ENDIF.
Make sure that fields ORT01 and PSTLZ are defined for internal table i_glpca.
Regards,
Clemens

Similar Messages

  • How to force updatedisplaylist in a skin when custom property changes

    Hi Folks,
    I have created a custom component based on a Spark Button.  In that custom component I have added a single, public, bindable property - let's call it Fred.
    I also have a custom skin, based on the Spark Button skin.  It's basically just like the delivered skin, just a bit different graphics stuff.  I have applied the custom skin to the custom button component.  So far, so good.  However...
    When a user action causes the Fred property to change on a custom button instance, I need my custom skin to re-draw something.  It appears that I need the skin's updateDisplayList function to fire.  Unfortunately, it appears that the only time that it fires is when "real" properties are changed, like 'left' or 'width'.  How can I get the custom skin to updateDisplayList when this fake, custom property changes?
    p.s. - the custom skin can 'read' the custom Fred property just fine.  And, if I set the Fred property and then 'mouse over' the custom button instance, the updateDisplayList fires...too late of course, but it does fire.
    I have read the docs, but there is not much written about updateDisplayList, or when it fires, or how to make it fire.
    Thanks,
    -David

    Good question...in my skin's 'creationComplete' event I call a function in the skin.  That function 'evaluates' the host component's Fred propertey, and based on what it finds, it draws some stuff:
    protected function doSpecialDrawing():void
         var hostFred:String = hostComponent.Fred;
         if (hostFred == "certain_value")
              //set some property in one of the path objects in my skin to a certain value
         else if (hostFred == "other_value")
              //set some property in one of the path objects in my skin to some other value
    When I created the skin, I did not anticipate the need to dynamically respond to setting the Fred property/value.
    I've placed a call to the 'doSpecialDrawing' function inside the skin's updateDisplayList, but unfortunately, the updateDisplayList does not seem to get called in real-time when I set the Fred property in a custom button instance.
    I'm all ears here... still a beginner/novice with Flex...
    Thanks,
    -David

  • How to create a multi value property

    Hello,
    I've defined a new property to use with the FAQ form, and set it to a multi value enabled (Multi-Valued checkbox on, Property Renderer set to multivalued).
    I've added a new Combo Box object to the form using Form Builder, and assign the property to it.
    However, I'm able to choose only one value while creating a new FAQ.
    What should I do in order to make it a multi value selection box (without programming) ?
    Thanks
    Eli

    Hi,
    You have to use the PortalApp.xml file
    In that file you have to create the properties and can have n options, it will not require programming.
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config/>
      <components>
        <component name="Welcome">
          <component-config>
            <property name="ClassName" value="com.sap.tutorial.Welcome.Welcome"/>
          </component-config>
          <component-profile>
            <property name="colorName" value="Blue">
              <property name="personalization" value="dialog"/>
              <property name="type" value="select[Red,Orange,Green,Blue,Yellow,Purple,Violet]"/>
              <property name="plainDescription" value="Favorite Color"/>
            </property>
            <property name="location" value="Pune">
              <property name="personalization" value="dialog"/>
              <property name="plainDescription" value="Country of Residence"/>
            </property>
            <property name="petsName" value="Tommy">
              <property name="personalization" value="dialog"/>
              <property name="plainDescription" value="Pets Name"/>
            </property>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    Regards,
    Dhruv Shah

  • How to get the iView Property value in NWDS

    Hi all,
    I my requirement I need to get some of the iView Property Value in NWDS.
    Can anybody help me for this?
    Helpful answers will appreciate.
    Thanks & regards,
    Kathiresan R

    Steps
    1. Define the properties in portalapp.xml
    <component-profile>
    <property name="user" value="asterix">
      <property name="personalization" value="dialog"/>
      <property name="plainDescription" value="User name"/>
    </property>
    </component-profile>
    2. Within the doContent(request is a signature in doContent) method of your AbstractPortalComponent please
    add the following code to access the property:
    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
        IPortalComponentProfile profile = request.getComponentContext().getProfile();
        String Name = profile.getProperty("user");

  • Can't Use Any Other Skins - Only the Ones That Came with DW

    Hello Everyone,
    I am a little frustrated, as I would think some of you may be.
    I love Dreamweaver, but here's the problem I'm dealing with right now:
    I am inserting videos in some webpages, and DW does a good and quick job of it right out of the box... if you use the Supplied Skins.
    I have made some custom skins and it would be fantastic if DW would let me use them.
    I put them in the folder with the included skins, and I can choose them from the skin selector dialog box, But they don't work in Live View, or when loaded into a browser.
    It's not just my custom skins either, I tried using the skins that came with Flash CS4, both AS2 & AS3 with the same results.
    Any Ideas??
    Thank you in advance, your support is much appreciated!

    Hello PZ,
    Thanks for the reply and link!
    I've seen this tutorial before and tried it, but I had some problems, which I think is a missprint in the tutorial itself... maybe you can help clarify.
    The tutorial gives two code blocks, a before and an after.
    Problem:
    The after codeblock seems to be missing an opening tag, and I don't know how to fix it.
    Before:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="160" height="120" id="FLVPlayer">
      <param name="movie" value="FLVPlayer_Progressive.swf" />
      <param name="salign" value="lt" />
      <param name="quality" value="high" />
      <param name="scale" value="noscale" />
      <param name="FlashVars" value=" &MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=../videos/cow01&autoPlay=false&autoRewind=false" />
      <embed src="FLVPlayer_Progressive.swf" flashvars=" &MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=../videos/cow01&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="160" height="120" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />         
    </object>
    Notice the first line:   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:
    And the After:
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="180" height="167" id="FLVPlayer">
      <param name="movie" value="FLVPlayer_Progressive.swf" />
      <param name="salign" value="lt" />
      <param name="quality" value="high" />
      <param name="scale" value="noscale" />
      <param name="FlashVars" value=" &MM_ComponentVersion=1&skinName=farmSkin_small&streamName=../videos/cow01&autoPlay=false&autoRewind=false" />
      <embed src="FLVPlayer_Progressive.swf" flashvars=" &MM_ComponentVersion=1&skinName=farmSkin_small&streamName=../videos/cow01&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="180" height="167" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    Notice this first line: codebase="http:
    It appears that a tag is missing, right?
    How would you fix this?
    Also, when I just try and fix the paths to see the skin that I want to use, that doesn't work either 
    Thanks Again !!   AM

  • Custom Personalization Dialog for JSP Dynpage

    Hi,
    i have a JSP Dynpage Component with the bean. i want to allow the user to personalize the iView when they click the "Personalize" in the iView Tray. So i have implemented doEdit() in the JSP Dynpage class and setting a JSP in the doEdit(). But in the portal the iView is not bringing any custom personalization JSP when i click "Personalize" in the iVIew Tray Drop Down Menu.
    doEdit() method wont work for JSP Dynpage ? is it only for Abs Portal Component ?
    Thanks,
    Saravanan

    Hi Saravanan,
    Hi Saravanan,
    JSPDynPage is more elaborate version of the DynPag. It creates a JSP file and, optionally, a Bean class.
    This means that the doProcessBeforeOutput methods are slightly different and there is an additional JSP file and an optional Bean class file. There are obviously other differences (such as the differences in the portalapp.xml file).
    Just check with a sample Portalapp.xml file:
    Ensure all the entries are made.
    <application>
      <application-config>
        <property name="releasable" value="true"/>
      </application-config>
      <components>
        <component name="BeginEPDevelopment">
          <component-config>
            <property name="ClassName" value="com.yourcompany.BeginEPDevelopment"/>
          </component-config>
          <component-profile>
            <property name="diplayHistory" value="10">
              <property name="plainDescription" value="BlogEntries"/>
              <property name="personalization" value="dialog"/>
            </property>
            <property name="diplayStyle" value="list">
              <property name="type" value="select[list,entries]"/>
              <property name="personalization" value="dialog"/>
            </property>
          </component-profile>
        </component>
      </components>
      <services>
        <service name="BeginEPDevelopmentService">
          <service-config>
            <property name="startup" value="true"/>
            <property name="className" value="com.yourcompany.BeginEPDevelopmentService"/>
          </service-config>
          <service-profile>
            <property name="BlogComments" value="Display"/>
          </service-profile>
        </service>
      </services>
    </application>
    Hope it helps you.
    Regards,
    Ponneswari.

  • Change owner of a dialog box.

    I have a JFrameA that open up a JDialogA. When the dialog is close, I just hide the dialog instead of disposing it. JFrameA can open up JFrameB. JFrameB can open up JDialogA, but since the dialog was show(), it owner is still JFrameA. JFrameA pop in front when JDialogA is close. Is there anyway to change the owner of JDialogA without having to create a new one????

    Pfft. Probably premature optimization -- have you timed how long it takes to create a new dialog box as opposed to creating a new one? If it makes a difference (which I doubt) then create one dialog box per frame.

  • Personalization: Property with type="Date" doesnt work

    Hi,
    I am trying to personalize a property whose type is Date.
    <property name="DoB" value="19820117">
                <property name="Personalization" value="dialog"/>
                <property name="type" value="date"/>
    </property>
    Though i get the calendar icon and am able to <b>personalize</b> the property, the value doesn't reflect when i try to write it using response.write(). Its always "19820117".
    What could be the issue? I have another property with type=String and it works as expected.
    Thanks,
    Shruti

    Hi
    did u import util.date() in the component.
    did u write correct functionality in development for date.
    send test mail i will send one word doc related to this
    Regards
    Sunil
    [email protected]

  • Need Assistance with Flash Player Skin

    I want to use the better looking skins under the Project
    heading rather than the three skins that are the default skins in
    the initial player selection. When I select one called glass, it
    and the one of the mandatory skins both show up in the player
    window when viewed from the htm file.
    How can this be avoided?

    Hi jkb242
    While I am certainly no speaking for anyone else here, I'm a
    bit confused by what you are referring to. Particularly where you
    say:
    it and the one of the mandatory skins both show up in the player
    window when viewed from the htm file. .
    I'm assuming here you are saying you clicked the Project menu
    followed by Skin... and you have selected the "Glass" skin from the
    Skin Editor dialog. But I'm totally lost by what you mean when you
    say
    When I select one called glass, it and the one of the mandatory
    skins both show up in the player window when viewed from the htm
    file..
    By chance can you either post a link to the output file so we
    can see first hand? Or at least a screen capture image of what it
    is you are seeing?
    Cheers... Rick

  • Object Show 'Help' Option Property

    Has anyone used the Help Option that is available as a property on iViews and Pages?
    Where is this link configured or where can I find where this feature is documented?
    Thanks,
    Marc

    Hi Andrew
    The iView Property: <b>URL to Help</b>, unlike EP6 SP2 has been deprecated in NW04.  So what are your options:
    1) For a custom developed portal component use the
    doHelp(IPortalComponentRequest request, IPortalComponentResponse response)
    method and write the help link to the response
    2) If you would like to change this for a standard SAP iView then you will need to change the portalapp.xml file for the iView.
    <component-profile>
    <property name="com.sap.portal.iview.HelpURL" value="http://www.sap.com">
    <property name="personalization" value="no-dialog"/> <property name="category" value="MyCategory"/>
    </property>
    </component-profile>
    As pointed out in this <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=35230">message</a> by Gregor!
    Cheers
    Ankit

  • Problems with "Open other project" in menu builder

    Hi everyone,
    I have a series of projects that I want to link together
    using the menu builder of the "Skin Editor" dialog.
    I create my menu items, and for each item choose "Open other
    project" in the "On click" dropdown. I then choose the project that
    I want the menu item to open. For this example, lets say I chose a
    project named "Viewing_Patients"
    However, when I publish the project, run it, and then use the
    menu to open the next project, it just opens up a browser window
    trying to access the URL "
    http://Viewing_Patients.htm/
    Why is that?
    To check my sanity, I created a Click Box in one of the
    project's slide where I chose the exact same configuration - "Open
    other project" for the "On success" dropdown, and the
    "Viewing_Patients" project as the project to open when the box is
    clicked.
    And this works fine (it opens the "Viewing_Patients" project)
    Why is my menu failing but not my click box?
    Thanks very much in advance for any help!
    - eriiki - tubbs -

    Hello Slothrop206,
    Try the following steps:
    1) Change your Action to be "Open URL or file"
    2) Key in the relative URL to the movie you are attempting to
    link. If it is in the same directory, simply key in the file name
    of the .swf you are attempting to load.
    3) Publish and test.
    Let us know if this works for you.

  • BO XI 3.1 SP2 upgrade to SP3 Problem

    Hi All,
    I'm trying to upgrade our current BO XI 3.1 SP2 installation towards SP3.
    The server it is running on has the following OS: Windows 2003 SP2 (32bit)
    When performing the update, all goes well untill the point in the installation where it says "updating component registration"
    immediatly when the installer enters this phase, I receive the following error:
    Error 2908: Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}
    Cancel - retry - ignore
    When chosing ignore I receive a new error:
    Error 1935: An error occured during the installation of assembly component  {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}
    OK
    When clicking OK, the installer rolls back and the update isn't performed.
    note that when the installation is performed with the BO Admin user, I receive both error messages, when running the update with any other local admin user, only the second error (assembly component..) comes up.
    Would anyone have an idea on how to solve this ?
    Best Regards,
    Tim Van Caeyzeele

    Thanks for the info Jonathan, good to know where the log files are
    I restarted the installation (with the same end result) and noticed that the log file is created once I click cancel to abort the installation.
    The log file is 65MB big
    After a huge search in the log file I found the latest entries before the rollback, actually the point where it fails:
    MSI (s) (C0:30) [11:23:24:044]: Executing op: ComponentRegister(ComponentId={73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6},KeyPath=<\CrystalDecisions.Enterprise.Shared,FileVersion="12.3.0.601",version="12.0.1100.0",culture="neutral",publicKeyToken="692FBEA5521E1304",State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    1: {EEC13875-F4CB-416F-ADC0-1EDA01A85632} 2: {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6} 3: <\CrystalDecisions.Enterprise.Shared,FileVersion="12.3.0.601",version="12.0.1100.0",culture="neutral",publicKeyToken="692FBEA5521E1304"
    MSI (s) (C0:30) [11:23:24:044]: MSCOREE not loaded loading copy from system32
    MSI (s) (C0:30) [11:23:24:262]: Note: 1: 1935 2:  3: 0x80131700 4:  5: CreateAssemblyNameObject 6: CrystalDecisions.Enterprise.Shared,FileVersion="12.3.0.601",version="12.0.1100.0",culture="neutral",publicKeyToken="692FBEA5521E1304"
    MSI (s) (C0:30) [11:23:24:278]: Transforming table Error.
    MSI (c) (DC:84) [11:23:24:278]: Transforming table Error.
    Info 2867. The error dialog property is not set
    MSI (c) (DC:84) [11:23:24:278]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:37:59:019]: Transforming table Error.
    MSI (s) (C0:30) [11:37:59:019]: Product: SAP BusinessObjects Enterprise XI 3.1 SP3 Update -- Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:37:59:019]: Note: 1: 1935 2:  3: 0x80131700 4:  5: CreateAssemblyNameObject 6: CrystalDecisions.Enterprise.Shared,FileVersion="12.3.0.601",version="12.0.1100.0",culture="neutral",publicKeyToken="692FBEA5521E1304"
    MSI (s) (C0:30) [11:37:59:035]: Transforming table Error.
    MSI (c) (DC:84) [11:37:59:035]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:37:59:597]: Transforming table Error.
    MSI (s) (C0:30) [11:37:59:597]: Product: SAP BusinessObjects Enterprise XI 3.1 SP3 Update -- Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:37:59:597]: Note: 1: 1935 2:  3: 0x80131700 4:  5: CreateAssemblyNameObject 6: CrystalDecisions.Enterprise.Shared,FileVersion="12.3.0.601",version="12.0.1100.0",culture="neutral",publicKeyToken="692FBEA5521E1304"
    MSI (s) (C0:30) [11:37:59:597]: Transforming table Error.
    MSI (c) (DC:84) [11:37:59:597]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:38:00:175]: Transforming table Error.
    MSI (s) (C0:30) [11:38:00:175]: Product: SAP BusinessObjects Enterprise XI 3.1 SP3 Update -- Error 2908. Could not register component {73DDBFD1-3CEC-4DE2-AD1F-5D9354AE44D6}.
    MSI (s) (C0:30) [11:38:00:175]: Transforming table Error.
    MSI (c) (DC:84) [11:38:00:175]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Are you sure you want to cancel?
    I notice that the keypath doesn't point to a location on the server, contrary to all other omponents that hold a keypath like:
    MSI (s) (C0:30) [11:23:24:044]: Executing op: ComponentRegister(ComponentId={FD575BFC-FBD5-46A6-A54F-413053DBB91D},KeyPath=G:\BOXI31\common\4.0\managed\,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    1: {EEC13875-F4CB-416F-ADC0-1EDA01A85632} 2: {FD575BFC-FBD5-46A6-A54F-413053DBB91D} 3: G:\BOXI31\common\4.0\managed\
    Edited by: Tim Van Caeyzeele on Jul 16, 2010 11:57 AM

  • How to get the path of the folder?

    hello everybody,
    I want to retrive the path of folder. how can i do? i used File I/O > Adv file fun > File dialog and set the file dialog property to "Folder". but I cannot get the path included with folder name. Can somebody help me? thanks in advance..

    Did you select "File or Folder" for the file dialog?
    and
    Did you click on the Current Folder button when selecting the folder?
    R
    Message Edited by JoeLabView on 09-03-2008 07:56 AM
    Attachments:
    fileFolder.PNG ‏11 KB
    currentFolder.PNG ‏6 KB

  • How to publish a swf WITHOUT an embedded player

    Hi all,
    I'm making some online content for a course, and it needs to be compatible with the pre-existing courseware. It can play swf, but it automatically wants to put it's OWN player on (including cc capability), and that's being thwarted by the player that Captivate puts on.  Any ideas how to prevent that would be much appreciated. Thanks.
    Prof paul

    Open the Captivate project and from the Project > Skin Editor dialog deselect the option to Show Playback Control.
    Rod Ward
    http://www.infosemantics.com.au/troubleshoot-adobe-captivate

  • Having trouble using applescript to save pdf as excel spreadsheet

    I have been trying to use applescript to create an automator action to convert some downloaded PDF's to .xlsx format.  After reviewing a good bit of the SDK documentation, I came up with the following scripting:
    tell application "Adobe Acrobat Pro"
                                  open theFile
                                  save front document to file theNewFile using conversion "com.adobe.acrobat.xlsx"
      close front document
    end tell
    This script works fine when I use the "com.adobe.acrobat.plain-text" conversion or the png or jpeg conversion. However, I cannot get it to work with "com.adobe.acrobat.xlsx" or "com.adobe.acrobat.spreadsheet".  Note that although I didn't copy the code here that sets theNewFile variable, I have been changing it to the appropriate file extension when changing conversion strings.
    When I execute the script using one of the problem conversion strings, Acrobat opens the file successfully, but it just sits there, as if it does not understand the save command at all.
    I guess I should mention that the whole goal here is to actually convert the PDF's to CSV eventually.  The next step was going to be to open the file in Excel and save as CSV.  If anyone knows a *free* way to go straight from PDF to CSV using Applescript/Automator without having to go through all these other programs, I would be very appreciative for the suggestion.  This conversion is just a small part of a very lengthy workflow but it is causing me the most trouble.

    Hello Jonathan,
    Ok i have only one final question.
    Do you know how to work in photoshop, don't you? Ok i think yes.
    Well i have 2 ways to do that, i did one action from photoshop that will get the image inside folder and will convert this image in pdf. Abouve the line of script
    that you have to attach to folder action and the action for Photoshop.
    About the action for Photoshop give me your email address and I send you, or do it your self. You have to do this: open one image in JPG, go to action, go new set, put your name of set, put the name of action if you like you can change the name, go print with preview, print and set save as PDF close your file and stop the action.
    Now that you have to do is put all your files inside your folder and leave the Photoshop do it for you, ok?
    Good Luck
    Hack
    property speak_alert : false -- if true, the script will speak the alert. If false, the script will display an alert dialog
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    property copychecksindicator : false
    property itemcheck_delaytime : 2
    property foldercheck_delaytime : 3
    property speciallabelindex : 7
    on adding folder items to this_folder after receiving added_items
    if copychecksindicator is true then
    set the added_items to my checkaddeditems(the added_items)
    if the added_items is {} then return "no vaild items"
    end if
    tell application "Finder"
    activate
    set this_folder to choose folder with prompt "pdf"
    set these_files to every file of folder this_folder
    end tell
    tell application "Finder"
    repeat with i from 1 to number of items in these_files
    set this_path to (item i of these_files) as string
    tell application "Adobe Photoshop CS2"
    launch
    open file (this_path as string)
    set this_files to current document
    do action "Jpg" from "Jpg para Pdf"
    end tell
    end repeat
    end tell
    end adding folder items to

Maybe you are looking for

  • How to track changes made in a jsf form element.

    I am in a page and editing some form elements. I click on some other link which will take me to another page. Before moving to another page I want to check if there are some unsaved data in the page. If some form elements are edited, I want to throw

  • Macbook Pro with Retina Display crash 3 times on the first day

    This is my first Mac computer and it's not a cheap one. I upgraded the spec on the laptop so it took a while for it to ship. But within the first day, I got three crash already. I google on the issues and it seems like I'm not the only one who having

  • Oracle 9i speed problem

    Hy everybody! Our firm have a one big problem with oracle 9i database. Problem is with speed functioning. We have an aplication maded in Visual basic, and we geting data from oracle 9i So we have instaled 9i. Before we had oracle 8i. Now when we inst

  • Problems updating

    I have tried to update iTunes from 11.1.3.8 to 11.1.4 but it will not install.  I get a runtime error message R6034 and iTunes error7 (windows 1114).  I also had to restore my PC to a prevoius date to be able to get rid of these messages.  Anyone els

  • Re: Installation of Windows XP on Satellite X200-23G - No HDD

    I tried installing Windows XP on my Satellite X200-23g, once i got installed but as desktop was seen... blue screen of death. Error occur and it went into restarting cycle... so i again installed VISTA from reconvery cd. Now when i try to install XP