Is there a linux script for packaging HTML5 extensions

I am looking for a way to package an HTML5 extension in a linux environment. The available downloads don't seem to include a linux compatible executable.
http://labs.adobe.com/downloads/extensionbuilder3.html

You can use the following in a script if you don't mind exposing your
password:
java weblogic.Admin t3://myhost:myport SHUTDOWN system <password> <seconds>
Guy
In weblogic.developer.interest.environment Gaurav Khanna <[email protected]> wrote:
Hi,
Is there a stop script for weblogc 4.5.1 on NT?? There is one for starting
the server.
Thanks

Similar Messages

  • Is there an updatedcrossrefs script for InDesign CS6

    Running Mac Pro/2.66 GHz—Quad-Core Intel Xeon/Snow Leopard/
    OS/Mac OS X Version 10.6.2/2.66 GHz
    I converted a CS3 InDesign that uses the script "updatedcrossrefs.js", to CS6 InDesign. This file uses hyperlinks on the TOC and Index.
    I tried using the same script for CS3 InDesign in CS6 InDesign but it does not work.
    This is the error message "Could not catch page. Check destination names and existence."
    Is there an updated script for CS6?

    Sorry did not know I was using bold. My co-worker found this script however, she does not work here anymore. But here is the script. I know nothing about scripts except how to use them. Sorry.
    // Updatecrossrefs.js
    // Updates cross references made with hyperlinks
    // the hyperlink destination is where the reference refers to
    // the hyperlink sourcetext is the text that will be updated (like see xx)
    // If a book is open, the book will be handled,
    // if no book is open, the active document will be handled.
    // Made by Teus de Jong, last version April 10, 2006
    // Revisions by Dave Saunders January 22, 2006 and March 20, 2006
    // Thanks Dave!
    // Added unique naming mechanism for sources -- October, 2008
    if (app.books.length == 0){
              if (app.documents.length == 0){
                        errorExit('No documents are open');
              } else {
                        nrofdocs = 1;
                        doc = app.activeDocument;
    } else {
              nrofdocs = app.books[0].bookContents.length;
              for (i = nrofdocs - 1; i > -1; i--) {
                        if (app.books[0].bookContents[i].status != BookContentStatus.documentIsOpen)
                                  app.open(File(app.books[0].bookContents[i].fullName));
              doc = app.open(app.books[0].bookContents[0].fullName);
    for (d = 1; d <= nrofdocs; d++){
              for (i = 0; i < doc.hyperlinks.length; i++){
                        hyper = doc.hyperlinks[i];
                          // leave ID's own internal markers alone
                        if (hyper.name.substring(0, 1) == '.'){continue}
                          // leave hyperlinks to URLs alone
                          try {
                                  if (hyper.destination.constructor.name == 'HyperlinkURLDestination'){continue}
                        } catch (e) {
                                  hyper.showSource();
                                  errorExit('Selected hyperlink has undefined destination');
                        s = hyper.source.name;
                        // added October, 2008
                        // sometimes ID's unique name mechanism for sources fails; make sure the source has
                        // the same name as the hyperlink + '_src'
                        if (s != hyper.name + '_src')
                                  hyper.source.name = hyper.name + '_src';
                        if (hyper.destination.constructor.name == 'HyperlinkTextDestination'){
                                  s = getParentPageName(hyper.destination.destinationText);
                         } else {
                                   // try/catch added to allow for hyperlinks that have lost their destination -- Dave
                                   try {
                                              s = hyper.destination.destinationPage.name;
                                    } catch (e) { continue }
                        if (s != ''){
                                  // Check to see if update needed; saves a lot of time when processing large books -- Dave
                                  if (hyper.source.sourceText.contents != s) {
                                            hyper.source.sourceText.contents = s;
              if (d >= nrofdocs){
                        break;
              doc = app.open(app.books[0].bookContents[d].fullName);
    function getParentPageName(txt){
              try { 
                        var myFrame = getParentTextFrame(txt);
                        var pag = myFrame.parent;
                        while (pag.constructor.name != 'Page'){
                                  // in case the reference is in an inline, the parent of the frame is a character
                                  if (pag.constructor.name == 'Character'){
                                            pag = getParentTextFrame(pag);
                                  // in case the chain goes sour, back out
                                  if (pag.constructor.name == 'Application'){
                                            throw 'Error';
                                  pag = pag.parent;
                        return(pag.name);
              catch (e) {
                        alert('Could not catch page.\nCheck destination names and existence.');
                        return('');
    function getParentTextFrame(x){
              if(app.version == 3){
                        return(x.parentTextFrame);
              else {
                        return(x.parentTextFrames[0]);
    function errorExit(s){
              alert(s);
              exit();

  • Is there an availability script for dreamweaver?

    Hi for my site i like to build an avalabilty page. Its a Site where you can rent a house.
    I have something like this in mind:
    http://www.vakantievillamydream.com/en/availability.html
    I hope its possible?
    Regards Brian

    thank you snake eyez,
    I found one. But the problem ive got now is confusing. I see a lot of text and i dont know why that is.
    Hope you can help
    http://www.hureninparamaribo.nl/contact.htm
    regards Brian
    Date: Thu, 17 May 2012 09:46:45 -0600
    From: [email protected]
    To: [email protected]
    Subject: Is there an availability script for dreamweaver?
        Re: Is there an availability script for dreamweaver?
        created by SnakEyez02 in Dreamweaver - View the full discussion
    It's possible as long as you know how to program.  DW has nothing built in to make these.  If you don't have the knowledge I would recommend outsourcing it or going to a place like Hotscripts.com and look for one in your server language.  None really come to mind or jump out at me, but many are free or have free trials so that you can see what works best for you.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4416249#4416249
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4416249#4416249. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Is there a stop script for weblogc 4.5.1 on NT

    Hi,
    Is there a stop script for weblogc 4.5.1 on NT?? There is one for starting
    the server.
    Thanks

    You can use the following in a script if you don't mind exposing your
    password:
    java weblogic.Admin t3://myhost:myport SHUTDOWN system <password> <seconds>
    Guy
    In weblogic.developer.interest.environment Gaurav Khanna <[email protected]> wrote:
    Hi,
    Is there a stop script for weblogc 4.5.1 on NT?? There is one for starting
    the server.
    Thanks

  • Linux script for PGP encryption

    Hello,
    We are trying to do PGP encryption by giving the OS command in the File adapter. Can somebody provide me the exact linux script that we should use to do PGP encryption?
    Note: We have XI-3.0 on LINUX.
    Promise points for helpful answers.
    Regards,
    Raji.

    Hi Rajashree
    PGP Encryption is used to support the transmission of sensitive data to / from third party systems via XI.
    Adapter modules are developed to encrypt the file using PGP.
    We had a similar requirement where we used PGP encryption.The module was developed using Cryptix OpenPGP which is a Java implementation of the OpenPGP standard.When the module is called in the adapter, it uses the PGP key provided by the party that will receive the encrypted message. This module should be called prior to calling the Sap adapter
    Logic Flow/Processing:
    1.Read the XML payload and message for getting the needed data.
    2.Read the key to be used in the encryption and log the key to be used and the beginning of the encryption.
    3.Call the PGP encryption and compression method.
    4.Log whether encryption has been successful.
    5.Set as payload the message content encrypted, and the principal data.
    6.If any error occurs, logs an exception in PGP adapter module and the error reason.
    7.Return the message.
    Go through This links
    Is there any FTP API available from SAP?
    Send Text file to FTP in binary mode with PGP encryption
    http://www.webmethods.com/meta/default/folder/0000007429
    Converting IDOC to XML
    XI implementation
    http://www1.webmethods.com/PDF/webMethods_for_SAP-wp.pdf
    Current versions found at http://www.cryptix.org and http://www.bouncycastle.org.
    http://www.bouncycastle.org/documentation.html
    If you want to use the unix script on windows then you need cygwin. Take the shell executable and cygwin.dll and copy them to another machine and try out.
    Else you write an .exe or a batch file where you will give your PGP command to encrypt and decrypt and execute it from the OS level in your adapter. Check my answer in this thread:
    Re: PGP Encription
    Might be useful.
    PGP Encription
    Re: PGP Encription
    \Re: triggering encryption script with XI
    Pls rewards if useful

  • Hi is there a TextCleanup script for Indeisgn CC?

    I am looking for a TextCleanup Script for Indesign CC, any help would be greatly appreciated.

    There are tons of scripts to do this.
    For example,
    http://www.kahrel.plus.com/indesign/clean_space.htmlhttp://
    Remove spurious space | Peter Kahrel
    You may look in the web:

  • I want to have pages speak with more than one voice. Is there a command / script for this.

    This may seem strange but I teach ESL and want my students to practice listening exercises.
    What I want is to prepare a dialog and have it speak in two different voices like a normal conversation between a man and woman.
    Is there some script or command that I can insert into my text document that will basically change the voice from one person to another.
    Ex: How are you Jim? (in allison voice)
            Fine thanks. (in Fred voice)
    BTW: I recently found that there is a command [[slnc 3500]] that causes the computer to wait an amount (in milleseconds) between phrases, but have not found any other commands.
    Thanks for your help!

    Let's say you have a TextEdit document, that contains clusters of passages:
    [Allison]How are you, Jim?
    [Fred]Fine, thanks.
    The best you can hope for without considerable complexity, expense, or both is to fall back on the Automator application on OS X. You can create a very simple Automator Service that speaks selected text in the chosen voice. This Service can be tied to a unique keyboard shortcut, and each voice can have its own unique keyboard shortcut that provides a voice start/stop speaking capability for longer text passages.
    Once the individual Automator Services for Allison and Fred voices are saved, the student can triple-click on a sentence or paragraph. I have embedded the [voices] at the beginning of the sentence, and added a feature to the Automator Service that tests the [voice]. Select the [Allison] sentence and use Fred's keyboard shortcut and nothing is spoken.
    Automator is found in your /Applications folder. It is the robot with the pipe. When you first launch Automator, it will prompt you for a new document. Select new document and then double-click the Service gear. In the left Automator panel, are Libraries of actions. Select the Text category. Immediately to the right, will be a column of Text related actions. Locate, single-click, and drag the Filter Paragraphs action to the much larger workflow window and release it. Locate the Text action Speak Text, and drag/drop it below the Filter Paragraphs workflow item. Make certain that these are configured to reflect the following completed Allison Service workflow. You should now have the following (single-click to enlarge the image):
    Save this via Automator > File > Save... and name it just Allison, or Allison-voice. From the Automator File menu, close the Allison Service workflow. Now, following the above instructions, repeat this process to make the Fred Service with Automator > File > New.
    Copy the above TextEdit text into a new TextEdit document. Select the [Allison] line, and then see if the Allison Service is available under TextEdit > Services > Allison. If it is, select it and listen. If no Allison Service appears here — select from the Dock, System Preferences, and then the Keyboard preference. Select Shortcuts > Services and then scroll the right list of Services to find Text > Allison. It is probably selected, but deselect, and then reselect it. It should now appear under the TextEdit > Services menu. In the following Screenshot, you will see the Allison Service activated and assigned a control-A key to activate the voice on the selected text in your document. Repeat this process for the Fred voice Service, with a different keyboard shortcut than Allison.
    It is a good idea to be aware of reserved keyboard shortcuts.
    OS X
    Pages ’09
    Pages v5.
    Voices
    If you want to fine tune Allison's (or Fred's) speaking rate, you can do this in the Dictation & Speech > Text to Speech preference panel. If you check the Speak selected text when the key is pressed item, you can start and stop Allison speaking the selected document text in longer text passages. Since the default system voice uses Control+S, you probably want another short-cut specific to Allison. I chose Control+Q. Once Allison is speaking, press Control+Q to pause, and Control+Q to resume speech to the end, or until encountering [Fred]. When you configure Fred, you will need a separate Text to Speech shortcut for that voice.
    In Summary, you now have two different voices that are initiated as Voice Services with two unique keyboard shortcuts. The individual voices can be paused or resumed once initial Voice Service is started. For a given voice, the student selects the voice specific text passage, and presses the associated keyboard shortcut for that voice. If the passage is a larger paragraph, the student may pause the voice with its unique pause/resume keyboard shortcut. If a student doesn't select a passage of text and presses the voice's pause/resume key, it will start speaking until it runs out of text. An undesirable side-effect.
    You should have sufficient guidance above to create and activate two voices as you initially described.

  • Location.href not working in firefox. Is there any alternative script for that?

    window. location.href not working when i try to submit an ajax form.
    I am a programmer. This code works on all browser except firefox.
    Any solution for this? or any alternative code for location.href?

    A good place to ask advice about web development is at the mozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the mozillaZine forum site in order to post at that forum.

  • CUE script for dial your extension at any time

    I am looking for a script which shows me how to allow people to enter an extension at any time without pressing an option key. How is this done?

    From my experience most IVRs just have a prompt such as "if you know your party's extension you may dial it at any time; for sales press 1, for support press 2, etc". Then you collect digits until they quit entering and then you figure out if they entered just one digit (that means its a menu choice) or more (they're dialing an extension). Ordinarily, the menu choices are things like dial-by-name or transferring to some specific extension where it doesn't make sense to additionally collect digits to do a dial-by-extension. I guess the exception might be if it was a (maybe partial) company directory prompt (e.g. 'john at extension 123; jane at extension 124;...') where you might want that. You'd essentially still collect a single digit while playing the prompt (i.e. play the prompt in a get digit string step); then once one has been created you could Goto the section that collects additional digits since then you know that they're dialing by extension.
    So it sort of depends on your requirements, but, to be honest, I haven't heard of anyone ask for the ability to dial by extension during each of the sub-menu choices.

  • How to create installation scripts in packaged application

    can u tel me How to create installation scripts for packaged application.
    also tell me , i have to first install scripts and then supporting objects or
    supporting objects first then installation scripts..

    Hi,
    Depending upon your usecase there are different ways to implement this logic.
    Check this for example (Read my answer in this post):
    https://forums.sdn.sap.com/thread.jspa?threadID=349151
    Also check these senarios:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddcc9bb211d72e10000000a1553f6/frameset.htm
    Also the delegation may be interesting for you:
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/44b742cafec96ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • Deployment scripts for ALDSP

    Hi,
    Are there sample deployment scripts for ALDSP which I can use? I have to deploy the application in an clustered environment. Please point me to the link if they are available.
    Thank you.

    ALDSP applications are packaged as an EAR. See Weblogic server documentation regarding options for deploying an EAR on a cluster.
    ALDSP applications get configured run-time settings from the admin server <domainHome>/.liquiddata/<appName>LDConfig.xml - if you wish to overwrite those settings at the same time you (re)deploy your application, you can overwrite that file before starting the server.

  • Linux driver for GF4 Ti 4400

    I bought a new computer a couple of months ago. Equipped with the MSI GeForce4 Ti 4400 128 MB DDR graphics card. It works fine in Win XP, but when I boot in Redhat linux 8.0 things get nasty! The X server dies a couple of times and finally comes alive in a low resolution and few coluors with the vesa driver. The nv driver kills the X-server. So I tried to search the CD¶ that came with the board for linux drivers, but could not find any linux SW at all!
    OK. No problem. Just go to MSI website and download it there, I thougt. The product description for my card clearly stated that there were linux drivers for MSI GF4 Ti 4400 DDR. Following the link under "related" named "drivers" I thought I would find something to cure my flickering screen in a resolution so low it is barely readable. But no. Nothing. Only different microsoft drivers for their OS.
    So where are the needed drivers for my card under linux? Any ideas would be gratefully appriciated.

    Quote
    Originally posted by wonkanoby
    http://www.nvidia.com you will find loads of them
    Thanks wonkanoby!

  • Apple Script for deleting podcasts

    I subscribe to a lot of podcasts, but I don't want to keep them in my iTunes library after I'm done listening to them. Is there an Apple Script for automatically deleting podcasts? Thanks.

    Thanks - once I'm in Automator and select Music, I don't see any options for finding Podcasts. Any suggestions which item/step I should select next in Automator? Thanks.

  • Popup Script for Save, edit & Delete Records

    Hi Friends,
    I developed an application, has got buttons like Save, edit, delete particular records. Is there any Java script for the above, to show popup Screens, like the   confirm java script
    <SCRIPT LANGUAGE="javascript">
    <!--
    function CONFIRM(){if (!confirm
    ("Are you Sure to  Edit Record?Ok=Yes,Cancel=No "))
    history.go(-1);return " "}
    document.writeln(CONFIRM())
    <!-- END -->
    </SCRIPT>
    pls mail me any sample code & Relevant weblogs regarding this.
    Regards
    CSM Reddy

    Hi,
    The following code will work... i have tested it.
    <b>test.jsp</b>
    <%@ page language="java" %>
    <html>
         <head>
              <title>
                   TestForm
              </title>
         </head>
         <script type="text/javascript">
    function confirmSAVE() {
    var save = confirm("Do u really want to save")
    if (save){
    alert("edit confirmed")
    window.document.myForm.action="test.jsp"
    window.document.myForm.submit()
    else
    alert("edit cancelled")
    function confirmDelete() {
    var del = confirm("Do u really want to delete")
    if (del){
    alert("del confirmed")
    window.document.myForm.action="test.jsp"
    window.document.myForm.submit()
    else
    alert("del cancelled")
    </script>
         <form name="myForm">
         <body>
              <table>
              <tr>
              <td colspan="2" align="center"><input type="button" style="background-color: #ffffff" name=save onclick="confirmSAVE()" value="SAVE">
              </td>
              <td colspan="2" align="center"><input type="button" style="background-color: #ffffff" name=delete onclick="confirmDelete()" value="DELETE">
              </td>          
              </tr>
              </table>
         </body>
         </form>
    </html>
    When you confirm edit or delete, the same test page will be displayed.
    Regards,
    Uma
    Message was edited by: Uma Maheswari

  • Naming convention for packages and classes

    Hi all,
    Is there any naming conventions for packages and classes which uses a design pattern ?. If yes what are the conventions used for business delegate,session facade, service locator,DAO and any other patterns.
    rgds
    Anto Paul

    Hi,
    that is a good question and one we have considered also. We dont yet cover the naming conventions for classes based on patterns but maybe will in the future. Currently, in the blueprints apps we tend to do some things like naminga class
    -AccountDAO etc for DAOs
    -For servicelocator we have a class called ServiceLocator viewable at https://adventurebuilder.dev.java.net/source/browse/adventurebuilder/ws/components/servicelocator/src/java/com/sun/j2ee/blueprints/servicelocator/web/ServiceLocator.java?rev=1.4&content-type=text/vnd.viewcvs-markup
    -for session facade, its a bit trickier since the name is so long and we cant add "SessionFacade" to the end of each facade class. I think in general we put "Facade" in the name, usually near the end
    -For Business Delegat, again it seems too long to add to each class name. So in the past we have added
    a "BD" to the names of the delegates. Some examples are at http://java.sun.com/blueprints/patterns/BusinessDelegate.html
    -For transfer objects we usually add a TO to the end of the name. Some examples at http://java.sun.com/blueprints/patterns/TransferObject.html
    Seems like something we could get a bit more consistent about.
    hope that helps,
    Sean

Maybe you are looking for

  • Music bought through i tunes does not show up on my iphone after syncing

    Help please.  Music I have bought through i tunes on my computer will not sync with my i phone 4.   The music shows up in my music list, which i added to a playlist on my computer but cannot get the same to show up in my ipod on the phone.   any sugg

  • Windows 7 32-bit not booting after installation... Mac Pro 2,1 Quad Core 2.66

    I am trying to install Windows 7 Home Premium 32 bit on my 2006 Mac Pro (Upgraded to 2,1 firmware). However after the installation has been completed and the computer restarts it just reboots back to the start of the Windows set up installation proce

  • Help needed please for a newbie

    hi all i recently recoded some fottage on my mobile phone and the resulting file is a mp4 now when i put the mp4 into adobe it only recognises it as a audio file i want to be able to use the file in adobe for editing and the like so how do i get adob

  • How to run the application process

    Dear all, I create an application on demand and when I called it it seems to return nothing. How I can run only the process ? Thanks Eric

  • Why different systems between Japan and other SEA region?

    Hello Just curious that why people maintain seperate systems for Asia (excluding SEA and JP), Japan, SEA (South East Asia), even though now all is unicode enabled? Still, why again different systems between Japan (dedicated) and other SEA countires?