Animate the MSO from the edge control

Hello world

I'm sure that the answer is a resounding no, but I wonder if it is possible to control a MSO with a button integrated into an animation built with edge animate. I can't imagine a way to do it, but thought someone could have hacked something together.

Thank you

-Scott

NO.

Neil

Tags: Digital Publishing Suite

Similar Questions

  • How to animate the edge activate on click in muse

    How to animate the edge activate on click in muse?

    Not an expert here, but this article should provide you with some guidance.

    Control of the animated elements > adding interactivity based in Adobe Edge animate

  • Animate the edge - how to change the size of the stage without changing the element of the scene & the size of the element?

    Hello

    I've created a demo using lively edge, the size of the demo is 1280 x 720. After that I want to change my size to 1280 x 600. But when I change dimension, the element in the file also change its dimension.

    For example - original size is 1280 x 720 & my element is rounded circle.

    When I hid it at 1280 x 600, the rounded cicle convert oval.

    but I want the same element of dimension to the stadium.

    Help, please...

    Concerning

    E. Kumar Muduli

    I'm having a hard time following your scenario...

    How you resize your internship?

    On the edge resize your stage normally does not affect the size of items on your stage.

  • Animate the edge - does not work why?

    Hi all

    I just downloaded edge lead and that's what I have.

    some sort of error.

    someone knows what's the problem?

    thanx

    Untitled-1.jpg

    You can download TCPView from this link - TCPView for Windows. Launch of TCPView, make sure that you are running from edge host. It will show you a list of all processes and ports in use. Sorting on the port number and check if 54321 is listed. If it is listed, then try to close the program that is using the port and restart edge animate to see if it works.

    DIA-

  • "animate the edge - exception error" (type of red, red area) and the application does not open

    Hello


    I hope that someone can help me... I'm not sure how to explain the situation, but when I try to open Adobe Edge animate, this error box "edge animate - Exception ' if poster, (see below), then the program closes unexpectedly. I can't say the words that it has the red type on a red background.

    I uninstalled the program and reinstalled and the same error.

    I'm new on this app, so I have no idea as to how to solve this problem.

    I hope someone can help me, I know it's short so feel free to ask me any other questions.

    Thank you in advance,

    Tom

    Screen Shot 2015-02-05 at 12.59.40.png

    Hi Tom

    It's very weird and not reproducible. What is the entire message that you get on the crash? We look at it. Even if we don't exactly understand the problem, can you please try to delete the preferences and restart the application. (Preferences are found in /users/animate Library/Preferences/Adobe/Edge). Please delete the Directory Board animate in the path and start the application. If the application still crashes, please send us the full journal report you get. We will try to solve the problem as soon as POSSIBLE.

    Thank you for your patience

    Dieudonné

  • Animate the edge - how to steal in hover and active effect in CSS?

    Hello

    I face some problem by adding the hover/active effect in css.

    To get examples-, I have two button text - (home & about us)

    I would like to add that, when I hover over the button, it will show underscore, features when click on it, it will be active with different colors

    and when I click on the button active anther button should be Michael & clicked button should be active.

    Help, please...

    Concerning

    E. Kumar Muduli

    Hello

    The best way to achieve this would be to specify properties with code, because there is no transition animation you are looking for.

    Start by opening edge animate and make two text fields at the 'home' and 'about '. Then name the text fields with a

    ID by changing the name in the properties panel. Click in the top text box and change the name
    ID to something that is easy to identify. I chose "homeText":

    Repeat this step for the "comments" text field. Then, click the Actions open next to your House text field object in the timeline area:

    Choose 'click' in the popup menu that appears:

    Copy and paste this code below (it's the code style CSS color property). Be sure to change 'homeText"that you chose to call the House text field object:

    SYM. $("homeText") .css ("color", "#650097");

    SYM. $("aboutText") .css ("color", "#000");

    In this example, I made the #650097 Home-link active color (purple). This code shows on board animate to the purple Home link and to make sure that the link is black by default (#000).

    Then click on the button "+" in the Actions window open. This time, choose "mouseover". This is where we will add the code for the feature of sensitives.

    Copy and paste the following code in the code window:

    SYM. $("homeText") .css ("text-decoration", "underline");

    Finally, press the "+" to add an event in addition to the buton. This time, choose "mouseout/mouseouthandler()". This code will add the button functionality to make the underlining disappears once the user is no longer hovering above it. Copy and past the following code in the window code:

    SYM. $("homeText") .css ("text-decoration', 'none'");

    Repeat these steps for the aboutText button. The code for the about button is below.

    Click on:

    SYM. $("aboutText") .css ("color", "#650097");

    SYM. $("homeText") .css ("color", "#000");

    MouseOver:

    SYM. $("aboutText") .css ("text-decoration", "underline");

    Mouseout/mouseouthandler():

    SYM. $("aboutText") .css ("text-decoration', 'none'");

    If you need further clarification / statement, let me know. I hope this helps!

  • Animate the edge - sets the resizable text animated along (it is useful for all devices)

    Hello

    I built a walk produced through demo using edge animate, in this demo I put stage the percentage, but when I see my ipad demo, the text remains its original size.

    Please help me, how the text according to my persentage of scene.

    Concerning

    E. Ku Muduli

    If you want that two separate text with two sizes of separate text boxes, your code would look like this:

    set the originals

    var originalWinWidth = $(window) () .width;

    set the font size as original

    var originalFontSize = 20;

    var headingFontSize = 30;

    Set the ratio of change, each change of size

    var ratioOfChange = 50;

    set the font size using jquery

    SYM. $("conteneur") .css ("font size", originalFontSize);

    SYM. $("rubrique") .css ("font size", headingFontSize);

    $(window) .resize (function)

    {

    get the width and height as the window resizes

    winWidth var = $(window) () .width;

    get the width difference

    var winWidth = widthDiff - originalWinWidth;

    check if the window is larger or smaller than the original

    If (widthDiff > 0)

    {

    our window is larger than the original so to increase the font size

    var pixelsToIncrease = Math.round(widthDiff / ratioOfChange);

    calculate the new font size

    var newFontSize = originalFontSize + pixelsToIncrease;

    var newHeadingFontSize = headingFontSize + pixelsToIncrease;

    new font size Set

    SYM. $("conteneur") .css ("font size", newFontSize);

    SYM. $("rubrique") .css ("font size", newHeadingFontSize);

    }

    on the other

    {

    our window is smaller that the original so decrease the font size

    var pixelsToDecrease = Math.round (Math.abs (widthDiff) / ratioOfChange);

    calculate the new font size

    var newFontSize = originalFontSize - pixelsToDecrease;

    var newHeadingFontSize = headingFontSize - pixelsToDecrease;

    Set the new font size

    SYM. $("conteneur") .css ("font size", newFontSize);

    SYM. $("rubrique") .css ("font size", newHeadingFontSize);

    }

    })

  • Animate the edge - how to create a hyperlink inside a symbol?

    Hello

    I am facing a problem to create a hyperlink inside symbols.

    For example - the main symbol name is "left-nav '.

    Inside of the symbol of the "left-nav', I created 3 symbols, what is" menu-1', ' menu-2' & ' menu-3'.»»» Inside of the ' menu-1', ' menu-2' & ' menu-3' symbols, I created animation.»»»

    But inside the Menu-2 & the symbol menu-3 frame, I put stop action is "sym.stop ()";

    Here, I created a button inside the symbol menu-1, when I click on this button, it should play animation menu-2.

    It is very important to me. Help, please...

    Thanks and greetings

    E. Kumar Muduli

    Use this code if you want to add to an object/button inside a symbol to play the label on the timeline

    sym.getComposition () .getStage () .play ("spinBlock");

    Use this code if you want to add to the object/button inside a symbol to control another symbol on the stage.

    sym.getComposition () .getStage ().getSymbol("star").play ();

    Use this code if you want to add to an object/button inside a symbol to control a symbol within a symbol

    sym.getComposition () .getStage ().getSymbol("starB").getSymbol ("starCent er") .play ();

  • Animate the edge - how to duplicate a symbol?

    Hello

    I am facing some problems in duplicating a symbol in busy border.

    For ex - symbol-1 have a circle and text. then duplicate the symbol 1(by right click the symbol-1 and convert to duplicate) symbol-2. When I change the symbol 2, than even the change in symbol-1.

    What is just way to duplicate a symbol?

    Concerning

    E.

    Select the symbol in the symbols... right click Panel, and select duplicate...

    If you duplicate this way you actually make a new symbol...

    If you select in the assets Panel and the duplicate there is just a copy of this symbol

  • Animate the program itself running slow edge

    The Edge program animate CC itself runs really slow on my computer to work right from the start the first time I installed it. When I try to do what the response is slow, at best, and often the message "not responding" sometimes. After about 30 seconds to a minute, he thaws, and the operation is complete. Other programs CC including Dreamweaver, Photoshop and Flash would go to well - it is simply animate. Animate also works normally on my home computer. Reinstall was not good.

    The computer is a desktop Dell with a Core i5-3330 processor and 8 GB of RAM running Windows 8 Pro 64-bit.

    I'm afraid that this may be one of those rare issues obscure it's impossible to solve, because I can not find anyone with a similar problem online, so suggestions hope would be welcome.

    Hey, guys -.

    Sorry for the slow response on this one.  Us have looked into this over the last week or two and have led to a possible workaround for you guys so that solve us the problem.  Can you if you please try this?

    Mac:

    1. find your proxy settings:

    (a) open system preferences > network, select your network connector

    button at the bottom of the screen b) select advanced options...

    (c) click the proxies tab

    (d) select Web (HTTP) Proxy and get the name of the server and port

    OR...

    (a) contact your network administrator for your HTTP web proxy setting

    2. open a Terminal window

    3 using the sudo and your favorite text editor, edit /etc/launchd.conf (this could be a new file)

    4. Add the following line:

    setenv http_proxy YOURPROXYSERVER:PROXYPORT

    ... where YOURPROXYSERVER is the name of your proxy server and PROXYPORT is the port number of the proxy (for example "setenv http_proxy foo.adobe.com:8888") (not a real server from Adobe, btw, so you will be disappointed if you set)

    5 restart your machine

    Win:

    1. find your proxy settings:

    (a) open Control Panel > Internet Options

    (b), select the Connections tab

    (c) click the LAN Settings button at the bottom of the Panel

    (d) Note the setting of address (proxy server) and port (the port of the proxy)

    OR...

    (a) contact your network administrator for your HTTP web proxy setting

    2. set your environment variable

    (a) open the file Explorer

    (b) right click on computer and select "Properties".

    (c) click on the "Advanced" tab

    (d) click the "Environment Variables" button... "at the bottom of the pane

    (e) the value THAT the variable user (only for your account) or system variable (all local computer accounts):

    (i) click on the "New" button... »

    (II) the name of the variable: http_proxy

    Variable value: YOURPROXYSERVER:YOURPROXYPORT (for example foo.adobe.com:8888) (not a real Adobe server)

    3. disconnect, then reconnect (if it does not, restart)

    This should solve your problem.  Note that I have not tested on all systems again (including Mavericks and Win8) - only on Mac OS x 10.8 and Win7.  Give it a whirl and let me know if it works!

    Thank you

    -Elaine

  • How to use controls RS-232 on the edge of Cisco 340?

    Hello friends,

    Can someone please advise on how to run the RS-232 commands in Cisco Edge 340 players?

    I checked the Edge 340 sw configuration guide, but could not find any information related to it.

    Please respond if anyone has an idea?

    Hi Marc,

    Where did you get this 340 edge synchronized with? If its Appspace then you should be able to use appspace to control the TV Tower on and off tension and volume on and off through appspace.

    I have not tried, but you should be able to use any program like minicom to send commands from the Board Office.

  • Edge animate: Web site for the Edge file Structure

    Can animate it dashboard generated code and images associated, js, fonts, etc.

    be contained in a separate folder outside the main directory.

    more specifically,.

    If I have a separate HTML file that I created and to load into my edge project lead in

    I can do easily if all the files are on the root of the main directory that contains the HTML code and CSS that point to the edge of DIVs.

    However,.

    This creates a ton of files on the root.

    Ideally, I would like to have all my projects Eddge animate in a separate folder.

    and my pages HTML pointing to projects.

    something like the attached picture

    I can never get it works

    is anyone able to understand this?

    edge.png

    Hi Pablo

    It is possible to have your assets anywhere where you want to store. In the latest version of Animate, the directory structure is as follows,

    where items such as media files, js files and images are organized in directories separated from the directory root. However, if you want to change, you can place your goods everywhere where you want and update the same path in _edge.js file in the root directory and the same who will appear on your project Animate. Similarly, you can specify the preferences of your publication publication settings and specify the path and the names. Let me know if you need some other info.

    Thank you

    Dieudonné

  • How can I go back to an earlier version of the edge animate?

    Since the upgrade onboard animate 3 CC, I have not been able to work on my project. Is it possible to revert to a previous version?

    I uninstalled and installed an earlier version, but the file does not open, because he says that he was created in a newer version of the edge. Is there a way to get around this? Can I change something in the code files of edge that will identify the file as being from the previous version?

    I was able to get any work done on this project since the beginning of February.

    I could download Edge animate CC 2.0 by logging into my account of cloud. Then I opened the file edge.js in edge code and I replaced the part where he identifies the version with...

    version: "2.0.1"

    minimumCompatibleVersion: "2.0.0"

    build: "2.0.1.268."

    I had to do this once for the main stage and once for each symbol.

    There is a drop down menu that says only if you are connected to a paid account of cloud, and you can choose to download the old version. It is installed in a new folder, so you can always run the latest version as well.

  • Greensock SplitText inside the Edge solution animate?

    Anyone who is willing to share their Greensock SplitText inside the Edge solution animate? Thank you

    I tried the following code:

    var only = sym.$("Heart-drawn-ffcc00-31percent");

    TweenMax.to (only, 3, {rotationY: 360, repeat:-1, repeatDelay:1, transformOrigin: "Center 90% - 160"})

    Gets an element. For example,.

    var element = sym.$("Text2");

    Element.Hide ();

    var quote e-quote = sym.$("quote");

    var mySplitText = new SplitText ("quote e-quote", {type: "tanks, the words"});

    TL = new TimelineMax ({repeat:-1, yoyo: true, repeatDelay:2});})

    TweenLite.set ("e-quote quote", {css: {perspective: 500, perspectiveOrigin: '50% 50% ', transformStyle: 'hunt kept-3d'}});

    numChars var = mySplitText.chars.length;

    for (var i = 0; i < numChars; i ++) {}

    TL.from (mySplitText.chars [i], 0.8, {css: {y: getRandomInt(-75, 75) x: getRandomInt (-150, 150), rotation: getRandomInt (0, 720), autoAlpha: 0}, ease:Back.easeOut}, I * 0.02, "dropIn");

    }

    tl.staggerTo (mySplitText.chars, 4, {css: {transformOrigin: "' 50% 50%-30px", rotationY:-360, rotationX:360, rotation: 360 "}, ease:Elastic.easeInOut}, 0.02, ' += 1" ');

    function getRandomInt (min, max) {}

    return Math.floor (Math.random () * (max - min + 1)) + min;

    }

    end of the code I've tried

    The first two lines operate by themselves, & after you have added the rest. Other lines do not work, and they do not work after that I noticed on the 2 first lines. I put all this in a trigger to 0 (zero) on the timeline - it worked for me in the past. I have other items dashboard animate things to do and I have a trigger at the end of the animation that plays the 01 (just after the zero) - I found that the closure and the outbreak of the first two lines code stops the animation. "quote" is the name of a text edge element animate.  In the above code, I changed "#quote" to "quote", other than that of e that is - to a quote, I think it is standard code of Greesock.

    I can miss this css class or the command translate3d:

    {#quote}

    -webkit-transform: translate3d (0, 0, 0);

    font-size: 44px;

    line-height: 50px;

    Color: #000000;

    z-index:-1;

    pointer-events: none;

    }

    Thank you

    Bob

    Yes, I did

    so, if your text block is named text1a...

    var Tween = sym.$("text1a");

    var split = new SplitText (tween, {type: "tanks, the words"});

    TweenMax.staggerFrom (split.chars, 1, {delay: 1, opacity: 0, x: 150, ease:Back.easeOut}, 0.04);

  • can I scroll the pages via gesture control. At the present time to scroll, I use the pointer over the edge Strip!

    I would like to be able to scroll using the gesture control. I think I've been using sound, but it now seems to be not not available.
    Scrolling by pointing at the helm of the edge is a pain!

    Gestures are a feature of your operating system. Check your operating system settings.

    TB - 38, 3 Win10-PC

Maybe you are looking for

  • both sets of criteria to fill the third table of research

    Hello- I'm very new to the numbers and support communities. I have read help and searched this forum but could not find a similar question. I appreciate any advice or suggestions. I created two table of numbers of our customer base and trying to trea

  • Cannot find my Satellite L655 - 149 Toshiba Middle site is

    I bought the new laptop Satellite L655-149 with serial--> 8A450311Qmore information--> PSK1JE-05R00XAR before buying, I searched Toshiba Middle East and I found it, but now I can not find it and it cannot save in the Toshiba site... Please help me...

  • My download folder allows access to different folders

    I am running windows 7 Ultimate 64-bit. I use a 120 GB SSD to run my OS and that fills up very quickly. So I decided to spend my downloads folder on my F drive which is a disk of 1 TB for the most part empty. My Music folder and all my games on my di

  • Example of advertising Service

    Hello I'm just trying to use the advertising Service for one of my app. I followed the instructions in the documentation here , but the link to sampleApp is broken. When I add "import bb.cascades.advertisement 1.0" in my qml file, I get a 'bb.cascade

  • Scripts of the ARC, "Select Resource" and "connect."

    Step 'select the resource' has the ability to connect immediately, on the connected branch, if the agent was available immediately and he didn't need the call queue. This allows me to perform a step or two first of all, then call 'Connect' myself. My