Getting Action Script 3 to work in Action script 1 template?

Hi all,
I'm creating an interactive Flash project based on an AS1 template, but a lot of my effects (scenes in separate swf files) are action script 3.0. I am working with Flash CS5, which can run everything in the AS1 template, but I wasn't sure how to get the Action Script 3.0 swfs to play in it. Any recommendations? Some of the effects and interactions are pretty basic (eyes following cursor, rain, etc.) but I haven't been able to find the Action Script 1 equivalents of these effects and I wasn't sure if there was a way to get this to work.
Thanks
J

Hey, thanks so much for your reply!
I'm sorry, but I'm having a little trouble following your suggestion - do you mean I would need to reprogram and change all the AS 1 code to be AS 3? Or how would I create an AS 2 SWF Container swf? The piece is a website, there's already an AS 1 container (index) file loading the other swfs. So would I make a CONTAINER #1 (Actionscript 2) --> CONTAINER #2 (Action Script 1)--> Other swfs? What would be simplest?

Similar Messages

  • Why can't I get actions to work? BAFFLED

    Hi, I'm a graphic designer, really not up to speed in the web world. I made myself an idiosyncratic little website using edge animate, learning from the built it lessons (I would appreciate any feedback concerning as I'm stumbling around here, if anyone can be bothered )
    I wanted to add an email link to the end of it, also, some kind of 'skip to the end' feature that appears from the beginning, and eventually a link to a portfolio site. But I can't get ANY actions to work.
    However, when I make a new file, I can do all these things. I can draw a rectangle, and make it clickable so that it jumps to the end, or opens an external site. It does this as expected, when I 'preview in browser'. But my main animation that I've spent hours mucking around with, does nothing. Mouse clicks do absolutely nothing...
    So, I'm baffled, and any help would be appreciated greatly.
    Here's my site, its a simple html thing with the edge animation embedded. I'd never offer these services for a client, but I thought I might be able to cobble something together for myself. As I said, any feedback would be welcome, as I'm stumbling around a bit. Ok a lot.
    www.antenna.net.nz
    thank you!
    Simon Gregory

    Thanks!
    I'll past the code below, but actually it think this eror relates to a symbol I created when I was trying to get an email link working, and I forgot to delete it. Though it didn't work, I'm not sure it has much to do with WHY I couldn't get actions to work in the first place, as nothing else I tried, very simple things like a link to an external webpage worked either. Yet they did when I attempted it with a new animate project. Not sure.
    the whole project is here as a zipped file.
    http://www.antenna.net.nz/animatebafflement/published.zip
    and here is that code as mentioned. And thanks for your help!
    (function($,Edge,compId){var Composition=Edge.Composition,Symbol=Edge.Symbol;
    //Edge symbol: 'stage'
          Symbol.bindElementAction(compId, symbolName, "${_arrow}", "click", function(sym, e) {
             // insert code for mouse click here
             sym.stop();
    (function(symbolName){     
    })("stage");
       //Edge symbol end:'stage'
       //=========================================================
       //Edge symbol: 'Symbol_1'
       (function(symbolName) {  
          Symbol.bindElementAction(compId, symbolName, "${_email}", "click", function(sym, e) {
             // insert code for mouse click here
             var emailer = window.open("mailto:[email protected]?subject=Are you my designer?");// sym.$("name") resolves an Edge Animate element name to a DOM
          //Edge binding end
       })("Symbol_1");
       //Edge symbol end:'Symbol_1'
    })(jQuery, AdobeEdge, "EDGE-20179367");

  • "Can't get Action from Action Reference"?

    I really can't figure out why I get java.lang.IllegalArgumentException with "Can't get Action from Action Reference: BeanName.actionName" message. I specified all properties in faces-config.xml. Bean and its action names are all checked several times, but I still get that exception. Is it a JSF bug, or my simple mistake? Is there anyone who experienced the same problem?
    I'm using two forms in one page. all components' ids are all different. Only one form generated the exception not regarding the order of the forms. (the one is login form and the other (which doesn't generate exception) is leave-comment form.)
    Here is the form code:
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
    and here is managed-bean part:
    <managed-bean>
         <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>idStr</property-name>
    <null-value/>
    </managed-property>
    <managed-property>
    <property-name>userName</property-name>
    <null-value/>
    </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    Thanks in advance!

    here goes the source code of NotesBean:
    abstract class NotesBean {
         protected static final String SUCCESS = "success";
         protected static final String FAILURE = "failure";
         private String connectionProfile;
         protected NotesBean() {}
         public String getConnectionProfile() {
              return connectionProfile;
         public void setConnectionProfile(String newProfileName) {
              connectionProfile = newProfileName;
         public abstract Action getCreateAction();
         public abstract Action getDeleteAction();
         public abstract Action getUpdateAction();
         protected Connection getConnection() throws NotesException {
              ConnectionProfile profile = ConnectionProfileFactory.getProfile(connectionProfile);
              return DriverManager.getConnection(profile.getUrl(), profile.getProperties());
    }I think everything is ok with the beans, right?
    By the way: shouldn�t the error message be:
    "Can't get Action from Action Reference: UserBean.loginAction"I just examplified the message using somewhat generic name. Sorry for confusion :)
    As a final try, here is the whole JSP code: (ignore korean texts)
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://gleamynode.net/notes" prefix="notes" %>
    <html>
    <head>
         <title>gleamynode.net :: gathering of my mentality</title>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <link rel="stylesheet" HREF="css/gleamynode.css" type="text/css" />
    </head>
    <body>
    <f:use_faces>
    <notes:useNotes>
         <c:choose>
              <c:when test="${empty param['id']}">
                   <notes:getPages var="pages" />
                   <c:forEach var="p" items="${pages}" begin="0" end="0">
                        <c:set var="p" value="${p}" scope="request"/>
                   </c:forEach>
              </c:when>
              <c:otherwise>
                   <notes:getPage var="p" pageId="${param['id']}" />
              </c:otherwise>
         </c:choose>
         <div id="header">
              <h:command_hyperlink href="index.jsp" label="gleamynode.net :: gathering of my mentality"/>
         </div>
         <div id="menu">
              About | Essays | Projects | Others | Links
         </div>
         <div id="content">
              <div id="page">
                   <div id="pageTitle">
                        #${p.id}. ${p.title}
                   </div>
                   <div id="pageContent">
                        ${p.content}
                        <div id="pageTimestamp">
                             ${p.timestamp}
                        </div>
                   </div>
              </div>
              <c:choose>
                   <c:when test="${fn:length(p.comments) > 0}">
                        <div id="comments">
                             <div id="teaser">
                                  ${fn:length(p.comments)} ?? ??? ????
                             </div>
                             <c:forEach var="c" items="${p.comments}">
                                  <div id="commentHeader">
                                       #${c.id}. ${c.userName}
                                  </div>
                                  <div id="commentContent">
                                       ${c.content}
                                       <div id="commentTimestamp">
                                            ${c.timestamp}
                                       </div>
                                  </div>
                             </c:forEach>
                        </div>
                   </c:when>
              </c:choose>
              <div id="commentForm">
                   <jsp:useBean id="CommentBean" class="net.gleamynode.notes.http.faces.CommentBean" scope="request" />
                   <jsp:setProperty name="CommentBean" property="pageIdStr" value="${p.id}"/>
                   <jsp:setProperty name="CommentBean" property="content" value=""/>
                   <div id="teaser">
                   </div>
                   <h:form id="commmentForm" formName="commentForm" >
                        <input type="hidden" name="id" value="${p.id}"/>
                        <h:input_hidden id="pageId" valueRef="CommentBean.pageIdStr"/>
                        <table width="95%">
                             <tr>
                                  <td class="name" width="9%">Name:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userName" valueRef="CommentBean.userName">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">Email:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userEmail" valueRef="CommentBean.userEmail">
                                            <f:attribute name="style" value="width:75%;"/>
                                       </h:input_text>
                                  </td>
                                  <td class="name" width="8%">URL:</td>
                                  <td class="value" width="25%">
                                       <h:input_text id="userURL" valueRef="CommentBean.userURL">
                                            <f:attribute name="style" value="width:100%;"/>
                                       </h:input_text>
                                  </td>
                             </tr>
                             <tr>
                                  <td colspan="6">
                                       <h:input_textarea id="content" valueRef="CommentBean.content">
                                            <f:attribute name="style" value="width:100%; height: 12em;"/>
                                       </h:input_textarea>
                                  </td>
                             </tr>
                             <tr>
                                  <td class="buttons" colspan="6">
                                       <h:command_button id="submit" label="leave a comment" commandName="submit" actionRef="CommentBean.createAction" />
                                  </td>
                             </tr>
                        </table>
                   </h:form>
              </div>
              <div id="loginForm">
                   <div id="teaser">
                   </div>
                   <h:form id="loginForm" formName="loginForm" >
                        Login >
                        <h:input_text id="loginUserName" valueRef="UserBean.userName">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_text>
                        |
                        Password >
                        <h:input_secret id="loginPassword" valueRef="UserBean.password">
                             <f:attribute name="style" value="width:64px;"/>
                        </h:input_secret>
                        |
                        <h:command_button id="loginSubmit" label="login" commandName="loginSubmit" actionRef="UserBean.loginAction" />
                   </h:form>
              </div>
              <div id="copyright">
                   Copyright � 1999~ by Trustin Lee, All Rights Reserved.
              </div>
         </div>
         <div id="footer">
         </div>
    </notes:useNotes>
    </f:use_faces>
    </body>
    </html>and, here is the whole faces-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
              "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
              "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
        <navigation-rule>
            <from-tree-id>/index.jsp</from-tree-id>
            <navigation-case>
                <from-outcome>success</from-outcome>
                <to-tree-id>/index.jsp</to-tree-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>failure</from-outcome>
                <to-tree-id>/failure.jsp</to-tree-id>
            </navigation-case>
        </navigation-rule>
         <managed-bean>
              <managed-bean-name>PageBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.PageBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>title</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
         <managed-bean>
              <managed-bean-name>CommentBean</managed-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.CommentBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>pageIdStr</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>userName</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userEmail</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>userURL</property-name>
                   <null-value/>
              </managed-property>
              <managed-property>
                   <property-name>content</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
        <managed-bean>
             <managed-bean-name>UserBean</manager-bean-name>
              <managed-bean-class>
                   net.gleamynode.notes.http.faces.UserBean
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>idStr</property-name>
                <null-value/>
            </managed-property>
            <managed-property>
                <property-name>userName</property-name>
                <null-value/>
            </managed-property>
              <managed-property>
                   <property-name>password</property-name>
                   <null-value/>
              </managed-property>
         </managed-bean>
    </faces-config>Thank you for your continuous help, Rene! Learned alot from you about JSF :)

  • How to get Actions name

    I want to get Actions name by javascript.
    Can get Actions name at javascript?

    Here is an example of creating a list of all the action sets/names to the desktop.
    #target photoshop
    var actionList = getActionSets();
    var outFile = File("~/desktop/Action List.txt");
    outFile.open("w");
    for(var a in actionList){
       outFile.writeln("Action Set " + actionList[a]);
       var aList = getActions(actionList[a]);
       for(var z in aList) {
          outFile.writeln(aList[z]);
    outFile.close();
    outFile.execute();
    function getActionSets() {
    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
      var i = 1;
      var sets = []; 
      while (true) {
        var ref = new ActionReference();
        ref.putIndex(cTID("ASet"), i);
        var desc;
        var lvl = $.level;
        $.level = 0;
        try {
          desc = executeActionGet(ref);
        } catch (e) {
          break;    // all done
        } finally {
          $.level = lvl;
        if (desc.hasKey(cTID("Nm  "))) {
          var set = {};
          set.index = i;
          set.name = desc.getString(cTID("Nm  "));
          set.toString = function() { return this.name; };
          set.count = desc.getInteger(cTID("NmbC"));
          set.actions = [];
          for (var j = 1; j <= set.count; j++) {
            var ref = new ActionReference();
            ref.putIndex(cTID('Actn'), j);
            ref.putIndex(cTID('ASet'), set.index);
            var adesc = executeActionGet(ref);
            var actName = adesc.getString(cTID('Nm  '));
            set.actions.push(actName);
          sets.push(set);
        i++;
      return sets;
    function getActions(aset) {
    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
      var i = 1;
      var names = [];
      if (!aset) {
        throw "Action set must be specified";
      while (true) {
        var ref = new ActionReference();
        ref.putIndex(cTID("ASet"), i);
        var desc;
        try {
          desc = executeActionGet(ref);
        } catch (e) {
          break;    // all done
        if (desc.hasKey(cTID("Nm  "))) {
          var name = desc.getString(cTID("Nm  "));
          if (name == aset) {
            var count = desc.getInteger(cTID("NmbC"));
            var names = [];
            for (var j = 1; j <= count; j++) {
              var ref = new ActionReference();
              ref.putIndex(cTID('Actn'), j);
              ref.putIndex(cTID('ASet'), i);
              var adesc = executeActionGet(ref);
              var actName = adesc.getString(cTID('Nm  '));
              names.push(actName);
            break;
        i++;
      return names;

  • LiveCycle unable to access Cache Controller. Exception message - Error accessing the cache container - Error on GET action for cache Replicated:UM_CLUSTER_INVALIDATION_CACHE

    The incident starts after all the members are removed from the DCS Stack DefaultCoreGroup view and added back again by WebSphere Application Server. Following exceptions are seen after LiveCycle was added back in again to the view.
    We have a clustered environment with two nodes 2A and 2B. Server 2A crashed and therefore all members on 2B node were removed from the DCS view. Later the new core group view was installed but LiveCycle did resume operations as expected.
    Errors below:
    Exception caught while dealing with cache : Action - Get, ObjectType - UM_CLUSTER_INVALIDATION_CACHE, Exception message - Error accessing the cache container - Error on GET action for cache Replicated:UM_CLUSTER_INVALIDATION_CACHE
    ServiceRegist W   Cache get failed for service EncryptionService Reason: Error accessing the cache container - Error on GET action for cache
    Error accessing the cache container - Error on GET action for cache Local:SERVICE_FACTORY_CACHE
    The following message appeared for several different services:
    Cache put failed for service [CredentialService, ReaderExtensionsService,EncryptionService, etc]
    SSOSessionCle W   Error in cleaning stale sessions from the database. These sessions would be deleted in next trigger
                                     java.lang.RuntimeException: com.adobe.livecycle.cache.CacheActionException: Error accessing the cache container - Error on ENTRYSET action for cache Local:UM_ASSERTION_CACHE
      at com.adobe.idp.um.businesslogic.authentication.AssertionCacheManager.removeExpiredResults( AssertionCacheManager.java:125)
      at com.adobe.idp.um.scheduler.SSOSessionCleanupJob.execute(SSOSessionCleanupJob.java:69)
      at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused by: com.adobe.livecycle.cache.CacheActionException: Error accessing the cache container - Error on ENTRYSET action for cache Local:UM_ASSERTION_CACHE
      at com.adobe.livecycle.cache.adapter.GemfireLocalCacheAdapter.entrySet(GemfireLocalCacheAdap ter.java:219)
      at com.adobe.idp.um.businesslogic.authentication.AssertionCacheManager.removeExpiredResults( AssertionCacheManager.java:99)
      ... 3 more
    Caused by: com.gemstone.gemfire.distributed.DistributedSystemDisconnectedException: GemFire on 2B<v1>:9057/51073 started at Sun Aug 17 08:57:23 EDT 2014: Message distribution has terminated, caused by com.gemstone.gemfire.ForcedDisconnectException: This member has been forced out of the distributed system.  Reason='this member is no longer in the view but is initiating connections'
      at com.gemstone.gemfire.distributed.internal.DistributionManager$Stopper.generateCancelledEx ception(DistributionManager.java:746)
      at com.gemstone.gemfire.distributed.internal.InternalDistributedSystem$Stopper.generateCance lledException(InternalDistributedSystem.java:846)
      at com.gemstone.gemfire.internal.cache.GemFireCacheImpl$Stopper.generateCancelledException(G emFireCacheImpl.java:1090)
      at com.gemstone.gemfire.CancelCriterion.checkCancelInProgress(CancelCriterion.java:59)
      at com.gemstone.gemfire.internal.cache.LocalRegion.checkRegionDestroyed(LocalRegion.java:669 4)
      at com.gemstone.gemfire.internal.cache.LocalRegion.checkReadiness(LocalRegion.java:2587)
      at com.gemstone.gemfire.internal.cache.LocalRegion.entries(LocalRegion.java:1815)
      at com.gemstone.gemfire.internal.cache.LocalRegion.entrySet(LocalRegion.java:7941)
      at com.adobe.livecycle.cache.adapter.GemfireLocalCacheAdapter.entrySet(GemfireLocalCacheAdap ter.java:209)
      ... 4 more
    Caused by: com.gemstone.gemfire.ForcedDisconnectException: This member has been forced out of the distributed system.  Reason='this member is no longer in the view but is initiating connections'
      at com.gemstone.org.jgroups.protocols.pbcast.ParticipantGmsImpl.handleLeaveResponse(Particip antGmsImpl.java:106)
      at com.gemstone.org.jgroups.protocols.pbcast.GMS.up(GMS.java:1289)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.VIEW_SYNC.up(VIEW_SYNC.java:202)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:276)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:625)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:187)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:504)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.FD.up(FD.java:438)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.Discovery.up(Discovery.java:258)
      at com.gemstone.org.jgroups.stack.Protocol.passUp(Protocol.java:767)
      at com.gemstone.org.jgroups.protocols.TP.handleIncomingMessage(TP.java:1110)
      at com.gemstone.org.jgroups.protocols.TP.handleIncomingPacket(TP.java:1016)
      at com.gemstone.org.jgroups.protocols.TP.receive(TP.java:923)
      at com.gemstone.org.jgroups.protocols.UDP$UcastReceiver.run(UDP.java:1320)
      at java.lang.Thread.run(Thread.java:773)
    [22/08/14 0:28:10:237 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:29:10:252 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:30:10:268 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:31:10:283 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:32:10:298 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:33:10:313 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:34:10:328 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:35:10:343 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:36:10:358 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:37:10:373 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerException
    [22/08/14 0:38:10:389 EDT] 00000b4f WorkPolicyEva W   Exception thrown in background thread. Cause: java.lang.NullPointerExceptionor
    I have tried looking for the root cause about why LiveCycle was not able to resume normally, didn't find anything related.

    LiveCycle uses Gemfire as distributed cache for cluster members. If you are using TCP Locators (caching based on TCP instead of UDP), below are the possible situations which might lead to “ForcedDisconnectException” :
    - There is time difference between two nodes.
    - These is network connectivity issues.
    - The high CPU usage by the member crashed.
    -Wasil

  • How to get this script to work with different browser

    Do you guys know how to get this script to work with mozilla firefox? 
    do shell script "open -a safari 'https://login.binck.nl/klanten/Login.aspx?ReturnUrl=%2fklanten%2fdefault.aspx'"
    tell application "Safari"
      activate
              tell document 1
                        repeat until ((do JavaScript "location.host") is "login.binck.nl")
                                  delay 1
                        end repeat
      do JavaScript"document.getElementById('ctl00_Content_Gebruikersnaam').value='sim';document.ge tElementById('ctl00_Content_Wachtwoord').value='password';window.open(document. g etElementById('ctl00_Content_LoginButton').href, '_self', 'true');"
              end tell
    end tell
    Thank you so much in advance:)

    That isn't possible. Firefox's AppleScript dictionary doesn't contain anything which can be used to manage JavaScripts.
    (63741)

  • I need code to get Action Column in MPS Planner Workbench Supply form( R 12)

    Hi All,
    I need Code to get Action Column that available in Supply form of  MPS Planner Workbench .
    I need to have it in my report. we don't have Advanced Chain Installed.
    Thank you.

    Dear All,
    Kindly Support...

  • How to get action to checkbox

    hi,
    Can somebody help me to get action to checkbox. As im a beginner in JSP, i finds difficulty in getting the right one.

    action to checkbox? don't think i've ever heard of anyone doing that before. Sounds like the OP needs something but didn't explain the problem well. But if you really do want to call an action when the user clicks a checkbox (sounds like a bad idea to me but whatever) then yeah, you can use JavaScript

  • Albe to get a script working on a local machine. Can't on a Remote Mac using AppleScript

    Ok I was able to get the following code to work on a local Mac
    tell application "FileMaker Pro"
    name of every database
    end tell
    But when I tried to run it on a remote Mac using Applescript
    I got a syntax error of: "Expected class name but found identifier"
    I tried the following
    set RemMac to "eppc://10.1.2.3.4"
    set remoteApp to application "FileMaker Pro" of machine RemMac
    tell remoteApp
    name of every database
    end tell
    That didn't work, any ideas how I can use 1 Mac to check on another Mac's FileMaker's list of open databases
    Thanks

    Thanks Sherry, 
    This looks like it works perfectly
    I am just trying to understand how the times work.
    This is the snippet for a two hour maintenance window
     $a = Set-WmiInstance -Class CCM_ServiceWindow -Namespace 'ROOT\ccm\Policy\Machine\RequestedConfig' -PutType 'CreateOnly' ` -argument  @{PolicySource = 'LOCAL'; PolicyRuleID = 'NONE';  PolicyVersion = '1.0';  Schedules = '1D529B0010080000';  ServiceWindowType = 1;  ServiceWindowID = '8fa8c041-b6fc-4e3a-bd91-494af0e7f20d';  PolicyID = '8fa8c041-b6fc-4e3a-bd91-494af0e7f20d'; ` PolicyInstanceID = '8fa8c041-b6fc-4e3a-bd91-494af0e7f20d'}; $a.ServiceWindowID get-wmiobject -query "SELECT * FROM CCM_ServiceWindow" -namespace "ROOT\ccm\Policy\Machine\RequestedConfig"
    The things change are 'schedules','ServiceWindowID' , 'PolicyID' and 'PolicyInstanceID' and they seem to change, even when the same time is set e.g. create a 2, 3 hour service windows 
    Whilst getting the string is easy to work out using client centre. I am really curios to find out how these values translate to 1,2 and 3 hour service windows. The SDK doesn't shed a great deal of light on the subject (well not that I could find)
    Regards, Martin

  • Getting a script to run in automator

    Thanks to Hiroto I have a script that does what I was looking for. The discussion on it is at http://discussions.apple.com/thread.jspa?threadID=1566429
    I am now trying to put this script into an automator workflow. By itself the script works fine. The automater workflow works by itself. Put the script into automator using the run applescript action and it gets skipped.
    This is what the script looks like inside the automator action. What I do not understand is why virtually the entire script is grayed out. The 1st line and the last two lines are the only ones that show as colored type when compiled in automator, like the rest is being commented out for some reason. When I compile it in the automator window it doesn't give an error.
    on run {input, parameters}
    (* on run
    --main((choose folder with multiple selections allowed) as list)
    main((choose folder) as list)
    end run
    on open aa
    main(aa)
    end open
    on main(aa)
    (* list aa : list of folder aliases *)
    script o
    property ff : {}
    -- confirmation for safety
    set AppleScript's text item delimiters to {ASCII character 0}
    set aa to (aa as Unicode text)'s text items
    set AppleScript's text item delimiters to {""}
    set aa to (choose from list aa default items aa ¬
    with prompt ("You're renaming pdf files in following folder.") ¬
    with multiple selections allowed)
    if aa = false then error number -128
    -- process each folder
    set k to 0
    repeat with a in aa
    set a to a as alias
    -- get pdf file aliases' list (= ff)
    set ff to {}
    tell application "Finder"
    tell item a
    if its class is in {disk, folder} then
    try
    set ff to (files of entire contents whose name ends with ".pdf") as alias list
    on error
    set ff to (files of entire contents whose name ends with ".pdf") as alias as list
    end try
    end if
    end tell
    end tell
    -- process each pdf file
    repeat with f in my ff
    set f to f's contents
    tell application "Adobe Acrobat Pro"
    --open f
    open f with invisible -- open it invisibly (?)
    tell document 1
    set p to count pages
    close
    end tell
    end tell
    tell application "Finder"
    set n to f's name
    set f's name to (n's text 1 thru -5) & "_" & p & ".pdf"
    end tell
    set k to k + 1
    end repeat
    end repeat
    -- decent notice -- remove -- on four lines below to get confirmation window when done
    -- tell application (path to frontmost application as string)
    -- display dialog ("Total of " & k & " pdf file(s) renamed successfully.") ¬
    -- with icon 1 giving up after 5
    -- end tell
    end script
    tell o to run
    end main *)
    return input
    end run
    Now the difference I need to figue out how to adjust for, once the script works in automator, is that the script operates based on the folder selected and performs the desired functions to the enclosed pdf files. The automator action I have acts on the selected files themselves. I will need to also get the script to recognize the selected files rather than the selected folder and contents of this folder.
    Any help would be greatly appreciated,
    John

    Hello
    You may try something like the code below.
    It assumes the input from the previous action is a list of pdf files.
    Hope this may help,
    Hiroto
    --SCRIPT (for Automator Action)
    on run {input, parameters}
    list input : list of alias of pdf files
    record parameters : dummy
    main(input)
    return input
    end run
    on main(aa)
    list aa : list of alias of pdf files
    script o
    property ff : aa
    -- process each pdf file
    repeat with f in my ff
    set f to f's contents
    tell application "Adobe Acrobat Pro"
    --open f
    open f with invisible -- open it invisibly (?)
    tell document 1
    set p to count pages
    close
    end tell
    end tell
    tell application "Finder"
    set n to f's name
    set f's name to (n's text 1 thru -5) & "_" & p & ".pdf"
    end tell
    end repeat
    end script
    tell o to run
    end main
    --END OF SCRIPT

  • Why do i get a Script Alert?

    I created an action to prepare and resize images for a Power Point presentation.
    I use the Image Processor... to do a bulk conversion, but get a Script Alert, "Sorry, i could not process the following files". 
    How ever, the files have been processed and put in my selected location.
    The "Alert" is therefor erroneous.  Is this a bug in the latest update?

    Nobody can know. You have not provided any system information, details about your files, their locations, what your actions do and a gigazillion other things. That being said, there could be equally a gigazillion things triggering such alerts like files being blocked by virus scanners or whatever or simple performance issues on your storage devices causing so much delay that the script wrongly thinks that something didn't work.
    Mylenium

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    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/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion 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.

  • Creating an action for a template

    Hi, I'm in the middle of creating an action for a template I've created but have hit a couple of snags.   The template I have created has a few blank layers that I wish to fill with different images by importing them and clipping them to the blank layer.   My issues: 1) When I run the action I need to specifiy a folder and file location which gets stored in the action - when viewing that particular action will show up the full path of where to find that file - I do not want this. I would like the action to present to 'open' window to me to allow me to select a file of my choosing without having a predefined folder to go to...  2) When opening an image it will open on its own project window. When I select the image and copy + paste it into my template it requires me to select the template project. This action will insert a 'selection 2' action step when recording. Playing this back will cause a failure as it cannot find the project for an unknown reason. Is there a way of specifiying the project window name I wish to go to during recording?  I hope that is clear enough to understand. Hope someone has some solution for me.  Thanks, MJ

    You may want to look at my Phtoshop package "Photo Collage Toolkit"  It has four rules to follow when creating templates and some Photoshop Scripts.  Scripting is much more powerful then actions.  In the package there is a scripts to test templates your developing,  A script to build a template, a script to populate a template with you images, a script to interactivly populate a template with your images, a script to batch populate a template with your images and a script to batch populate a single image template with your images.
    Photo Collage Toolkit UPDATED Aug. 14, 2011 added a modified version of Rags Gardner www.rags-int-inc.com Copyright (c) 2006 CollageBuilder script.
    Documentation and Examples
    Download
    Optional templates 8.5x11 - 16MB
    Optional templates 8x10 - 51KB
    Optional templates 11x14 - 23MB
    Optional templates 12x12 - 12MB
    Optional templates 13x19 - 37MB
    Optional templates 16x16 - 4MB
    Optional templates 16x20 - 91MB
    Optional templates 20x24 - 125KB
    Optional templates Multi-Image - 113MB
    Optional templates One-Image - 106MB
    Optional templates PhotoBoard-11x14 - 231KB 

  • How to get the FTP clients to work?

    This is something that (to me at least) should be trivial but I just can't
    get it to work at all.
    How do you get an FTP client to work?
    I've tried several GUI clients as well as the terminal FTP command and they
    all seem to get stuck entering passive mode - according to the log entries
    they send the command.... And then nothing or a timeout, the following is
    from the terminal FTP command:
    Titania:~ susan$ ftp ftp.apple.com
    Trying 17.254.16.11...
    Connected to ftp.apple.com.
    220 17.254.16.11 FTP server ready
    Name (ftp.apple.com:susan): anonymous
    331 Anonymous login ok, send your complete email address as your password.
    Password:
    230 Anonymous access granted, restrictions apply.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> ls
    501 EPSV: Operation not permitted
    227 Entering Passive Mode (17,254,16,11,223,157).
    200 PORT command successful
    421 Service not available, remote server timed out. Connection closed
    ftp>
    In my System Preferences -> Network panel in the Proxies tab, I have the
    "use Passive FTP mode (PASV) checked.
    I also have checked the FTP firewall option (but I think that is only if I'm
    acting as an FTP server).
    I am connected to the internet via a Netgear wireless router.
    I also have an old Windows laptop that also uses the same wireless router
    and it can FTP quite happily!!!!!
    Any suggestions would be gratefully received.
    Susan

    ejn - thanks for your continued assistance.
    I've tried turning the firewall off but this does not appear to make any difference(*). Also, I have Parallels installed and I'm sharing the internet connection with this (even though Parallels itself is not currently running). Turning this sharing off doesn't seem to change anything either.
    I have noticed some entries in the ifpw.log file that coincide with some of the ftp actions. Given the following terminal session:
    Titania:~ susan$ ftp ftp.apple.com
    Trying 17.254.16.10...
    Connected to ftp.apple.com.
    220 17.254.16.10 FTP server ready
    Name (ftp.apple.com:susan): anonymous
    331 Anonymous login ok, send your complete email address as your password.
    Password:
    230 Anonymous access granted, restrictions apply.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> ls
    501 EPSV: Operation not permitted
    227 Entering Passive Mode (17,254,16,10,245,46).
    200 PORT command successful
    421 Service not available, remote server timed out. Connection closed
    ftp>
    at the time the "200 PORT command successful" is displayed, the ifpw log starts showing:
    Sep 5 09:11:21 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:24 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:27 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:30 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:33 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:36 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    Sep 5 09:11:42 Titania ipfw: 12190 Deny TCP 17.254.16.10:20 192.168.0.5:49162 in via en1
    which makes sense as the system tries to go for an active transfer.
    (*) Actually, while I've been writing this, I've been playing on the terminal as well. I've found the combination of:
    1) turning off the firewall
    2) starting ftp
    3) issuing the 'passive' command to turn off passive mode
    4) issuing 'ls' etc. works
    Looks like I've not been waiting long enough for the ftp client to get sick of trying the passive transfer and switching to an active one with the firewakk turned off!
    Still doesn't answer the question - why does passive mode not work?
    Susan

  • How to get Motion Tracking Mode to work?

    How do I get "Motion Tracking Mode" to work?  I click the icon and nothing happens, its like greyed out.

    scouterbsa
    Here is my check list for you to review regarding using Motion Tracking Mode in Premiere Elements 10 on Windows 7 64 bit.
    1. You need a video and with enough motion in the object in it to track it. Color contrast between the object and its background can be important to success.
    I created a DV AVI 4:3 in which I have a circle moving, and I have used a butterfly Clip Art from Premiere Elements 10 to track to track the circle as it moves in the video. In this example, you see the object only at 0 time.
    2. Select/highlight the clip on the Timeline. And then click on the Motion Tracking Mode icon above the Timeline.
    You should next see the following Motion Tracking dialog asking for a Yes or No to the question "Run
    Auto-Analyzer to track moving objects?" Click No.
    3. At this point, you will see a bounding box on screen. That bounding box should be placed using the mouse cursor on the object
    that is going to be tracked, in this case, the circle. Resize and position the bounding box accordingly.
    4. Once you have the bounding box on the object and resized, click on Track Object at the top right of the monitor.
    The screenshot below shows only the before clicking Track Object at the top right of the monitor.
    When that action is finished the bound box edges will be an orange yellow color. I have skipped over a screenshot
    for the latter.
    5. With the orangel yellow bounding box in place, next drag the Clip Art (in this case, Butterfly 02) from the Clip Art display area toward and into the orange yellow bounding box frame. The orange yellow bounding box frame will turn blue. That is the first sign of success.
    Hit the Enter key of the computer main keyboard and watch the results. The Butterfly should track the circle's
    movement in the clip. The duration of the clip and the continuity of the object's motion in the clip can be  other factors.
    If you do not succeed, try again with a different video clip (one with more movement and color contrast.
    The above is a best case scenario. If it is speech bubbles that you are having problems with as well, we will deal with them next.
    Right now it seems like you are having problems getting started rather than having a problem with a specific Clip Art that you are
    using to track the object in your video.
    We will be watching for your results.
    ATR

  • How do I get my Gear Pro camera work on my IMac?

    How do I get my Gear Pro camera work on my IMac?
    Just bought one of those action cameras - Gear Pro
    However doesn't seem to work yet on my IMac, any suggestions on how to get this going
    Imac is from 2010
    thanks

    http://www.pyleaudio.com/LearnHowTo
    http://www.getsharepod.com/download/
    http://www.pyleaudio.com/ContactUs.aspx

Maybe you are looking for

  • HT204380 Multiple devices on one apple ID?

    I have an iPhone 5 and use facetime, I have bought my children iPod touches for xmas and want them to also be able to use FaceTime, how will I link 3 people to the same account and be able to facetime each other? Is this possible?

  • Business packages for SRM to implement EP

    Hi All, We are implementing SRM 5.5 in our company. Also, EP 7.0 we are implementing for SRM. Can anyone help me how to get the business packages for SRM and supplier collaboration, as i cant download it from sdn, as it is unrestricted shipment. Also

  • CME GUI 8.8 Not Displaying Properly

    When I login to the CME GUI, and I am unable to do anythign. The dropdown menus are not accessible. I am running v8.8. I have downloaded the latest files. I am running IOS c2900-universalk9-mz.SPA.152-1.T1.bin Everything that I can tell looks right b

  • Problems with DCS files & Illustrator CS3.

    I'm a graphic artist in a screenprinting shop who has been presented with a problem I can't figure out the answer to. I have been using the VueRite Spot Process software for simulated process separations for over a year now. It works great and I was

  • Do you know some good page for N78???

    Some fan site, aplications site etc. Thx