Open url, type in a form and repeat in safari

I'm very new to scripting so bare with me. I'm trying to open a url, select a form or dialogue box ( not sure what they're called) enter text into it, click the submit button, and repeat in a set number of minutes.
So far I've been able to open a window in safari and go to the url I want.
I don't know how to select the field I want and to enter the text in it.
Thanks in advance.

Really all depends completely on the page in which you're dealing with. No one page is exactly alike. That being said, the below script will open up Google and search for the text it asks you for:
set searchText to text returned of ¬
(display dialog "Search Google for what:" default answer "search string")
tell application "Safari"
activate
make new document with properties {URL:"http://www.google.com"}
my pageCheck()
do JavaScript "
document.getElementsByTagName('input')[" & 2 & "].value='" & searchText & "';
document.forms[0].submit();" in document 1
end tell
on goSleepy(x)
do shell script "sleep " & x
end goSleepy
on pageCheck()
goSleepy(2)
repeat 5 times
set theState to readyState()
if theState is "complete" then return true
goSleepy(1)
end repeat
return false
end pageCheck
on readyState()
tell application "Safari" to ¬
do JavaScript "document.readyState" in document 1
end readyState
Javascript is the way to go to achieve what you're looking for. But, there are MANY different ways to approach TONS of different pages across the internet!! Hope this helps...

Similar Messages

  • "error opening url to submit this form"

    Hi,
    I develop AcroForm PDF file using Acrobat. file Contain so many fields and Submit button.
    when I was click on Submit button than I got the Error message
    Error opening url to submit this form
    I set the return type XFDF on button.
    How can I fix this bug?

    To which URL are you trying to submit it?

  • Can anyone help with "Error opening URL to submit this form"?

    I am running Adobe Reader 11 and I am on Windows 8. I cannot get a form completed for a client in their portal.  Thanks.

    I'm pretty sure it's Adobe Reader. It says it on the top of the page.
    Here's the info I am getting in the error message, through Javascript Debugger anyway:
    Acrobat EScript Built-in Functions Version 11.0
    Acrobat SOAP 11.0
    RaiseError: Error opening URL to submit this form
    Doc.submitForm:2:Field btnSubmit:Mouse Up
    ===> Error opening URL to submit this form

  • I am trying to open a file in pdf form and I keep getting "there was

    I am trying to open a file in pdf form and I keep getting ...there was a problem reading this document....any suggestions???

    Hi,
    Thanks for reporting the issue; we would like to reproduce it at our end. Please give in the below information to investigate on this,
    1. The Linux distribution (Version of Linux) you are using.
    2. Are you opening the pdf from shared location? If yes, then how is the shared location mounted.
    It would help if you can send in the pdf you are trying to open. Please email the same to vaibhavp at adobe dot com or attach it on the forum.
    Thanks,
    Vaibhav

  • Filling in a PDF Form, but get "Error opening URL to submit this form" when I try to submit

    I was able to fill in the form with Adobe Reader, but when I tried to Submit the form another box popped up that said "Error opening URL to submit this form." What can I do to fix this?

    Nothing. Report it to the form's authors.

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    if v_id > 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • URL Problem Oracle 10g Forms and Reports

    Hello Room,
    As this question is related to forms and reports both, I have posted it here. I have a system which needs to be deployed in Local Lan Network and also the same Local Lan user should be able to access the same application via internet. In Addition there are also suppliers, customers who dosen't have oracle installed but will be accessing forms and reports via the url through internet which will be a natted url to our public IP. I have loaded Oracle 11g on windows 7 and all my network clients are on windows 7. I have not loaded forms and reports 10g on server, but only database 11g is installed on server. My problem is listed in points below:-
    1. Do I need to install forms and reports on server to achieve the above scenario ? or the local network installation of forms and reports on all client PC's will do ?
    2. To start OC4J instance, shall i start it only on server through batch file while booting server, or it needs to be started on all client PC's to start work from client end ?
    3. When i run forms from my client PC I get local url http://127.0.0.1/ to reach forms servlet which end up in http://localpc/.... from cookie redirect, whether this needs to be http://server/...... on all client PC's to reach the forms servlet ?
    4. If I have to start url http://server/ instead of http://127.0.0.1/... automatically while running every form to reach forms servlet, how to achieve this ?
    5. There are reports to be run from forms and parameters needs to be passed in reports from forms 10g. So in web.show_document shall i refer to absolute url for local acccess or http://server url as the same user can go to internet to access the data. ?
    6. if I load forms and reports 10g on server, do I need to install forms and reports on client end seperately to gain access in local network ?
    7. My forms and reports folders are located on server which are shared for access.
    8. What will be the scenario in case of suppliers and customers who does not have anything installed on their PC and will access forms and reports through internet ?
    I want to minimize my work. Please suggest me how to proceed about accessing forms, passing url from forms to reports in web.show_document, and Internet access url ?
    Your help is highly appreciated. Thank you in advance.

    I have tried to explain you in decent way several times that I am not lazy and there are reasons that I do not want to read pdf, because I have already read that all ! In the future please do not respond to my thread. I am not asking for your personal time. If you do not understand my efforts. Just ignore it. I have read all the white papers of Oracle and give me your email id, I will send you all the code which I have read or downloaded. You should know that the knowledge diminish as the technology change. And that does not mean every user in the forum is stupid and as wise as you are. I repeat to state that I have 15 years of experience in Oracle forms 6i._ including Oracle 7,8,9i. This is the first time I am ever visiting oracle forums since past several years. I was the first person to use oracle 7 in my city where people were not knowing what oracle is. At that time I was knowing that the password for scott is tiger which even the reputed institutes in my city was not knowing. at that time I was also knowing that one of the person from oracle made a mistake in indexing the rowid. I think this should be enough to you for now.

  • ABAP WebDynpro, Interactive Form, and Repeating Subforms

    Hi Everyone,
    I have a very simple Interactive Form called from ABAP WebDynpro. 
    Main_View Context:
    Node u2013 FORM.
         Cardinality 1..1
         Selection 0..1
         Initialization Lead Selection u2013 X
    Node u2013 SPFLI
         Dictionary Structure - SPFLI
         Cardinality 0..n
         Selection 0..1
         Initialization Lead Selection u2013 X
    Attributes from SPFLI u2013 CARRID and CONNID
    View contains an Interactive Form and a u201CSaveu201D button.
    Form = Z_TABLE_TEST_FORM, Interface = Z_TABLE_TEST_INT u2013 created through forward navigation in Layout so uses XML interface.
    Button u201CSaveu201D has the following code:
    METHOD onactionsave.
      DATA lo_nd_form     TYPE REF TO if_wd_context_node.
      DATA lo_nd_spfli    TYPE REF TO if_wd_context_node.
      DATA lo_el_spfli    TYPE REF TO if_wd_context_element.
      DATA ls_spfli       TYPE wd_this->element_spfli.
      DATA ls_element_set TYPE wdr_context_element_set.
      lo_nd_form = wd_context->get_child_node( name = wd_this->wdctx_form ).
      lo_nd_spfli = lo_nd_form->get_child_node( name = wd_this->wdctx_spfli ).
      ls_element_set = lo_nd_spfli->get_elements(  ).
      IF lo_nd_spfli IS NOT INITIAL.
        lo_el_spfli = lo_nd_spfli->get_element(  ).
        IF lo_el_spfli IS NOT INITIAL.
          lo_el_spfli->get_static_attributes(
            IMPORTING
              static_attributes = ls_spfli ).
        ENDIF.
      ENDIF.
    ENDMETHOD.
    On the Interactive Form, u201CPage1u201D is a main page.  u201CTableParentu201D is a SubForm, flowed layout, in accessibility tab set to u201CTableu201D, and is bound to u201C$record.SPFLIu201D.
    u201CDATAu201D is a SubForm under "TableParent", Positioned layout, in accessibility tab set to u201CBody Rowu201D, and is bound to u201CDATA[*]u201D.
    Carrid and Connid are both Text Fields bound to Carrid and Connid, under "DATA".
    I also added the Insert/Remove/Reposition buttons, but deleted the two reposition buttons.
    The idea was to be able to add 4-5 Carrid/Connid pairs.
    When running this, as configured above, then none of the data entered in the form makes it through to the Elements.  If the context is changed to make the Cardinality 1..n, then a single Element is added u2013 but not the remainder.
    What needs to be done to get this to work?
    Many thanks
    Jack

    Hi Reema,
    None.  For all other fields, they are bound to the context, so the transfer is automatic.
    These repeating fields are also bound to the context, but it appears that an element needs to be created for every repeating form.  How can this be done from the form?
    Cheers
    Jack

  • I tried to submit an interactive PDF form,  but received a message: Error opening URL to submit the

    I tried to submit an interactive PDF form,  but received a message: Error opening URL to submit the form. My form is created in InDesign cs6 and exported to interactive PDF with text fields. any one has some tips to deal wiith this?

    Did you get this resolved? I am doing the same thing, passing in a url to the submitForm method via cURL. I am submitting as FDF, and specifying the #FDF at end of URL.
    Currently working against a localhost url, which is allowed and trusted in acrobat to rule out the enhanced security of the reader.
    Any ideas?

  • Problems opening URL in QTX

    I'm not able to open any video from URL in Quicktime X. I've read every help file I can find and I can't seem to get it to work. It completely freezes when I put a URL in and click open. Any help is appreciated.

    Absolutely, thanks for responding: here is one of the URLs I've been trying to connect to: http://bglive-a.bitgravity.com/twit/live/high. I open QTX, go to open URL, type in the URL and click open and then it freezes until I force quit and it sends an error report.
    Best.
    Jeremy
    Message was edited by: jeremyjaytaylor

  • How To Start Forms and Reports From Start Command

    Hi All,
    How to start Oracle Forms and Reports in Oracle8i My OS is Windows 2000.Please tell the procedure to get into forms and reports.
    Otherwise we have to install other software for Forms and Reports.
    Thanks
    Sujan

    Sujan,
    what does the database have to do with starting Forms and Reports ? If you are on Wondows2000 then navigate to the \bin directory if the Oracle Home you installed Oracle9iDS to. Type ifbld90 for Forms and rwbuilder for Reports design environment.
    If your ability to start Forms and Reports from the command line is your only exit criteria in evaluating software for a project , how far will you go with it?
    Frank

  • Crash when creating advanced action with "open URL"

    Hi there,
    my crash problem (captivate 5.5, win 7 64 bit, adobe PP CS6 installed):
    On one slide of my project, I have a slide video and a button at a certain point. First I created an advanced action (open URL in a new window and pause slide video). Then I saved the action and assigned it to the button. Til here, all was ok.
    Then, I wanted to change the URL in the advanced action.
    When I opened the created action, the "open URL"-parameter disappeared, but the table row was shown empy:
    Then I wanted to assign a new URL. After creating a new "open URL"-paramter I wanted to save the changes. And then captivate crashed with this fatal error:
    And from this time, every time I want to change - or even create a new action with the above mentioned parameters - captivate crashes.
    can anyone reproduce this error? Is this a bug (or a feature ;-), or did I something wrong?
    Thanks
    Markus

    Hi Aditya,
    thanks for your post.
    2. Create a new project and try the same thing
    I created a new project....same problem...
    If you face the same channel, then try recreating the Adobe Captivate preferences. Please follow the steps mentioned here :
    1. Close Adobe Captivate.
    2. Locate the preference folder:
            Windows Vista and Windows 7: C:\Users\[user name]\AppData\Local\Adobe\Adobe Captivate 5.5 folder
    3. Rename the preference folder.
    I didn't found a preference folder in the captivate 5.5 folder. Here is my captivate 5.5 folder:
    what to do now?? Now I am at a loss...

  • Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Once the user has entered the URL they want to add to the form. You can use the loadXML function to implement some special text in a label...
    var linkValue = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><exData contentType=\"text/html\" xmlns=\"http://www.xfa.org/schema/xfa-template/2.8/\"><body xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:xfa=\"http://www.xfa.org/schema/xfa-data/1.0/\" xfa:APIVersion=\"Acroform:2.7.0.0\" xfa:spec=\"2.1\"><p style=\"font-weight:bold;text-decoration:none;letter-spacing:0in\">The new link the user have entered is:<a href=\"" + textfield.rawValue + "\">textfield.rawValue</a></p></body></exData>";
      this.resolveNode("lblURL").value.exData.loadXML(linkValue, 1, 1);

  • The boxes where I would type in search terms and URL are GONE! So is the BACK BUTTON. HELP!

    I downloaded software to convert jpg files to pdf's, and it worked. however, I think it installed Incredimail, and I suspect that it installed Ask.com - neither of which I wanted. It was just after that that my back arrow and my boxes where i type in search terms and urls DISAPPEARED! Firefox is compatible with some important websites and has features that i need. NEED.

    Make sure that you do not run Firefox in Full Screen mode with all toolbars hidden.
    * Press F11 to toggle full screen mode (Firefox/File > Full Screen)
    If the menu bar is hidden then press the F10 key or hold down the Alt key, that should make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" (Linux, Windows)
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization
    * https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Photoshop cs6 running extremely slow on opening a file. have reset prefs and set type to none.

    Photoshop cs6 running extremely slow on opening a file. have reset prefs and set type to none. have to force quit  most of the time.

    I'm experiencing the same trouble.  Photoshop takes 5 minutes to open then runs fine.
    I recently bought a new iMac AND updated to Adobe Master Collection CS6.  My concern is that PhotoShop now takes 5 minutes to open. The Photoshop desktop pops up immediately, but the moment you click on a tool or try to open a file (no matter the size) results in the spinning wheel for five minutes before you can do anything.  After that, Photoshop appears to work fine.
    What I’ve done:
    Ran Adobe updater
    Reset Photoshop Preferences
    Validated all fonts and removed any trouble fonts
    Ran the font test
    Set font preview size to none
    Cleared the Photoshop type cache and system cache
    Disabled Symantec Endpoint
    Tried running with the GPU processor on/off and in basic
    Tried opening Photoshop with optional third party plug-ins turned off (still took five minutes but this time I didn’t even get the Photoshop desktop view until AFTER the five minutes)
    I’m wondering since I migrated the files form my old computer (and older versions of Master Collection) did something get corrupted.
    System Info
    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64
    Operating System: Mac OS 10.9.4
    System architecture: Intel CPU Family:6, Model:60, Stepping:3 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 32768 MB
    Free memory: 21330 MB
    Memory available to Photoshop: 30850 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 (Apr 25 2014 22:04:25)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 2047 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GTX 780M OpenGL Engine
    Display: 1
    Main Display
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=1440, right=2560
    Video Renderer ID: 16918308
    Video Card Memory: 2048 MB
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 931.0G, 713.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
    adbeape.framework adbeape 3.3.8.19346   66.1025012
    AdbeScriptUIFlex.framework AdbeScriptUIFlex 6.2.29.18602 66.490082
    adobe_caps.framework adobe_caps 6.0.29.0   1.276181
    AdobeACE.framework AdobeACE 2.19.18.20743   66.507768
    AdobeAGM.framework AdobeAGM 4.26.20.20743   66.507768
    AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
    AdobeAXEDOMCore.framework AdobeAXEDOMCore 3.7.101.18636 66.26830
    AdobeBIB.framework AdobeBIB 1.2.02.20743   66.507768
    AdobeBIBUtils.framework AdobeBIBUtils 1.1.01   66.507768
    AdobeCoolType.framework AdobeCoolType 5.10.33.20743 66.507768
    AdobeCrashReporter.framework AdobeCrashReporter 6.0.20120720  
    AdobeExtendScript.framework AdobeExtendScript 4.2.12.18602 66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
    AdobeLinguistic.framework      17206  
    AdobeMPS.framework AdobeMPS 5.8.0.19463   66.495174
    AdobeOwl.framework AdobeOwl   5.0.4   79.517869
    AdobePDFL.framework AdobePDFL   10.0.1.18562   66.419471
    AdobePDFSettings.framework AdobePDFSettings 1.4  
    AdobePIP.framework AdobePIP 7.0.0.1686  
    AdobeScCore.framework AdobeScCore 4.2.12.18602   66.490082
    AdobeUpdater.framework AdobeUpdater 6.0.0.1452   "52.338651"
    AdobeXMP.framework AdobeXMPCore 66.145661   66.145661
    AdobeXMPFiles.framework AdobeXMPFiles 66.145661   66.145661
    AdobeXMPScript.framework AdobeXMPScript 66.145661   66.145661
    ahclient.framework ahclient 1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
    aif_ocl.framework AdobeAIF   3.0.00   62.490293
    aif_ogl.framework AdobeAIF   3.0.00   62.490293
    AlignmentLib.framework xcode   1.0.0.1  
    amtlib.framework amtlib   6.0.0.75  
    boost_date_time.framework boost_date_time 6.0.0.0  
    boost_signals.framework boost_signals 6.0.0.0  
    boost_system.framework boost_system 6.0.0.0  
    boost_threads.framework boost_threads 6.0.0.0  
    Cg.framework   NVIDIA Cg     
    CIT.framework CIT   2.1.0.20577   146758
    data_flow.framework AdobeAIF   3.0.00   62.490293
    dvaaudiodevice.framework dvaaudiodevice 6.0.0.0  
    dvacore.framework dvacore   6.0.0.0  
    dvamarshal.framework dvamarshal 6.0.0.0  
    dvamediatypes.framework dvamediatypes 6.0.0.0  
    dvaplayer.framework dvaplayer 6.0.0.0  
    dvatransport.framework dvatransport 6.0.0.0  
    dvaunittesting.framework dvaunittesting 6.0.0.0  
    dynamiclink.framework dynamiclink 6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
    filter_graph.framework AdobeAIF   3.0.00   62.490293
    hydra_filters.framework AdobeAIF   3.0.00   62.490293
    ICUConverter.framework ICUConverter 3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61 "gtlib_3.0" "." "16615"
    image_compiler.framework AdobeAIF   3.0.00   62.490293
    image_flow.framework AdobeAIF   3.0.00   62.490293
    image_runtime.framework AdobeAIF   3.0.00   62.490293
    LogSession.framework LogSession 2.1.2.1681  
    mediacoreif.framework mediacoreif 6.0.0.0  
    PlugPlug.framework PlugPlug 3.0.0.383  
    UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24 "6.0.0.24"
    wrservices.framework        
    Required plug-ins:
       3D Studio 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.4 (199), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.4 (199), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0.6 x001  ©2002-2013 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.6 x001 ©2003-2013 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.6 x001  ©1997-2013 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.6 x001  ©2001-2013 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
    Measurement Core 13.0.6 x001 ©1993-2013 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
    Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Multiprocessor Support 13.0.6 x001 ©1990-2013 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PCX.plugin”
    Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Photoshop 3D Engine 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.6 x001 ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
    Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2013 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Summation 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
    Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Wavefront|OBJ 13.0.6 x001 ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins:
       Alien Skin Blow Up 3 Blow Up 3 3.0.0.672 20633 Copyright © 2011 Alien Skin Software, LLC - from the file “Alien Skin Blow Up 3 Automation.8li.plugin”
       Analog Efex Pro 1.0.11.180, Copyright ©2000-2014, Google - from the file “Analog Efex Pro.plugin”
       Analog Efex Pro 2 2.0.4.288, Copyright ©2000-2014, Google - from the file “Analog Efex Pro 2.plugin”
    BackgroundFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “BackgroundFilter.plugin”
       Blow Up Blow Up 3 3.0.0.672 20633 Copyright © 2011 Alien Skin Software, LLC - from the file “Alien Skin Blow Up 3 Photoshop.8bf.plugin”
       Color Efex Pro 4 4.3.16.288, Copyright ©2000-2014, Google - from the file “Color Efex Pro 4.plugin”
       Dfine 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “Dfine2.plugin”
    FineStructuresFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “FineStructuresFilter.plugin”
       HDR Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “HDR Efex Pro 2.plugin”
       Hidden Topaz Labs Denoise - from the file “TopazRemaskAutomate.plugin”
    HotPixelsFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “HotPixelsFilter.plugin”
       Merge to HDR Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “HDR Efex Pro 2 Automation.plugin”
       Nik Collection Selective Tool 2.1.21.288, Copyright ©2000-2014, Google - from the file “SelectivePalette.plugin”
    ShadowsFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “ShadowsFilter.plugin”
       Sharpener Pro 3: (1) RAW Presharpener 3.1.16.288, Copyright ©2000-2014, Google - from the file “SHP3RPS.plugin”
    Sharpener Pro 3: (2) Output Sharpener 3.1.16.288, Copyright ©2000-2014, Google - from the file “SHP3OS.plugin”
       Silver Efex Pro 2 2.2.16.288, Copyright ©2000-2014, Google - from the file “Silver Efex Pro 2.plugin”
    SkinFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “SkinFilter.plugin”
    SkyFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “SkyFilter.plugin”
       StrongNoiseFilter 2.2.16.288, Copyright ©2000-2014, Google - from the file “StrongNoiseFilter.plugin”
       Topaz Adjust 5 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_adjust5.plugin”
       Topaz B&W Effects 2 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_BW2_Effects.plugin”
       Topaz Clean 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_clean3.plugin”
       Topaz DeJpeg 4 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_dejpeg4.plugin”
       Topaz DeNoise 5 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_denoise5.plugin”
       Topaz Detail 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_detail3.plugin”
       Topaz InFocus CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_infocus.plugin”
       Topaz Lens Effects CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_Lens_Effects.plugin”
       Topaz ReMask 3 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_remask3.plugin”
       Topaz Simplify 4 CS3 (10.0) ©1993-2007 Adobe Systems Incorporated - from the file “Topaz_simplify4.plugin”
       Viveza 2 2.1.16.288, Copyright ©2000-2014, Google - from the file “Viveza2.plugin”
    WhiteWindowWorkaround 1.0.5, Copyright 2013-2014 - from the file “WhiteWindowWorkaround.plugin”
    Plug-ins that failed to load: NONE
    Flash:
       Gallery Wrapper
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

Maybe you are looking for