Adding amounts in edge animate

I'm looking to create a set of buttons that would add certain numbers together.
For example: If I click a button it adds the number 7 to a box, then if you click another button it adds 4 to the same box making it 11. I then want to set a variable saying if box equals 11 play animation.
Is this doable in edge animate?

Hi there,
The problem with getting html from the text element is it returns a string. In Javascript, adding a number to a string just appends the number to the existing string. To convert a string into an integer, use Javascript's parseInt method. So a slight modifcation to Elaine's code:
// this gets the string from myTextBox and converts it to an integer
var text = parseInt(sym.$("myTextBox").html());
// next you are adding two integers...
text = text + 4;
sym.$("myTextBox").html(text);
if (text == 11) {
    sym.play();
hth,
Joe

Similar Messages

  • Adding music on edge animate

    How do i add music to my project

    http://outof.me/edge-animate-adding-sound-effects/
    video tutorail
    watch this post for more information http://forums.adobe.com/thread/1251376?tstart=0

  • Adding html into edge animate text box from external js file

    I have a text field in edge animate that I want to update with a score. The function that is used to click and update the score is in an enternal file so I'm trying to figure out how to get my edge animate div to be read by jquery in the external file. This is what I have so far in the external js but it isn't reading the edge animate text field properly:
    external .js file:
            AdobeEdge.coinCounter += 250; // this calls the variable coinCounter which was set in edgeActions.js and updates it from the original 0 value
                    alert(AdobeEdge.coinCounter); // this shows it works and updated correctly
           var comp = AdobeEdge.getComposition("EDGE-172492634");
           var stage = comp.getStage();
         stage.sym.$("gameText").html(AdobeEdge.coinCounter); // this is where things go wrong. I want this updated value to read back into the textbox called "gameText" that is in the edgeAnimate composition
          stage.sym.$("gameText").html("NewText"); // nothing reads to the "gameText" textbox; something must be wrong how I am referencing it outside of edgeActions in the external .js file
    Would someone mind helping me reference the textbox "gameText" correctly so I can input my new value? Thank you!!

    Thank you. The learning curve is taking me awhile. It works now:
        var checking = AdobeEdge.getComposition("EDGE-172492634").getStage().$("gameText").text();
        alert(checking); //yay!
    Thanks Joel!

  • Adding to a website animation made in edge animate

    Hello, I am web designer, I made several banners for our webpage in edge animate, and now our programmists are having trouble adding them to a website. May be someone can tell, what they did wrong? Or may be you may give as lint to a tutorial explaining, how to add it in the right way?
    link to a website: https://imfoption.com/a/new-home-page/
    link to a banner: http://giteldesign.com/portfolio/works/banners/imfoption/man-moving/

    This may be because of the site being served on https and some of the edge animate scripts being served over http, which are blocked by the browser. You can change the URL scheme from http to https in the file /wp-content/themes/imfoption/js/newban/man_edgeActions.js to make it work.
    Following URLs will need a change:
      aLoader = [
          { load: "http://imfoption.com/wp-content/themes/imfoption/js/newban/edge_includes/jquery-2.0.3.min. js"},
          { load: "http://imfoption.com/wp-content/themes/imfoption/js/newban/edge_includes/edge.4.0.0.min.js"},
          { load: "http://imfoption.com/wp-content/themes/imfoption/js/newban/man_edge.js"},
          { load: "http://imfoption.com/wp-content/themes/imfoption/js/newban/man_edgeActions.js"}];
    You can also just use the URLs without a scheme as follows, then the scheme will be automatically chosen.
    aLoader = [
          { load: "//imfoption.com/wp-content/themes/imfoption/js/newban/edge_includes/jquery-2.0.3.min.js" },
          { load: "//imfoption.com/wp-content/themes/imfoption/js/newban/edge_includes/edge.4.0.0.min.js"},
          { load: "//imfoption.com/wp-content/themes/imfoption/js/newban/man_edge.js"},
          { load: "//imfoption.com/wp-content/themes/imfoption/js/newban/man_edgeActions.js"}];
    There are some other resources which are loaded over http, for eg:
    http://fonts.googleapis.com/css?family=Economica%3A700%2C400italic&ver=1.7.4
    http://imfoption.com/wp-content/themes/imfoption/css/impreza/fonts/fontawesome-webfont.svg ?v=4.0.3
    These may or may not work depending on the client settings, ideally you should fix all of these issues too. Hope this helps.
    -Dharmendra

  • Adding custom css classes from within edge animate

    is it possible to add  CSS classes from within Edge Animate, im not talking about adding your own stylesheet by ex. manually editing the .html document, but rather adding classes via ex. the code window ?, it would be immensely helpful to have everything in one place.
    any suggestions on this one ?

    Yes - you can use addclass() and you can use UI.
    1- UI
    Select elements in elements panel. Click the C button in the property panel.
    Use this for example
    sym.$('.classname').css({'color':'red'});
    2- addclaas()
    sym.$("name').addclass('classname');
    Use same as above.
    On Sat, Apr 25, 2015 at 8:56 AM mads18950258 <[email protected]>

  • Adding own javascript to edge animate

    I'm having a bit of trouble adding my own javascipt to an edge animate project. I created a website that has javascipt in it. I am trying to recreate it using edge animate because I was interested in using edge animate to take the site up a notch... basically I have a template of what I need the site to do with the existing javascipt I have, but I haven't gotten it to work integrated into edge animated yet.
    I imported all of the images I have from the existing website into edge animate and then relabled all of the instances on the stage to reflect what I have called them in the javascript. I've tried importing my javascript file into the "scripts" section and then just linking to the source in the main html page that edge generates but the javascript doesn't work. Then I've tried putting parts of the script into the CompositionReady panel and onto the button I want clicked directly in the elements.... this works ok, except I have to change the syntax a little (not too much of a pain except when I don't think the edge animate javascript has the same functions).....I'll post below and see if someone can help me get this working either by just linking to the file directly from the html or making the script campatable in edge syntax and posting it in the appropriate element panel. Here is the seperate script from the outside javascript... show I change the syntax and put it directly on the"checkbutton" button in the elements (if so, how?) or should I just link to the file (if so, how come when I put a simple link in the header that it doesn't work: <script type="text/javascript" charset="utf-8" src="js/myscript.js"></script>
    script from myscript.js:
    //sym.$("pic1a").hide(); //edge animate syntax when in animate panels.... does my external js sheet have to keep this syntax?
    var carArrayX = [140,140,330,460,650,765];
    var carArrayXcounter = 0;
    var carArrayY = [ 440,440,405,390,390,390];
    var carArrayYcounter = 0;
    $( '#blueCar' ).addClass( "hidden" );
    var counterBox = 0;
        $('#checkButton').click(function(){
         if (counterBox == 0)
             alert("Please choose an answer");
         else if (counterBox > 1)
             alert("Please choose only one answer");
         else if (counterBox == 1)
             $(this).css('background-image', 'url(button_down.png)');
             $("#pic2a").unbind("click");
             $("#pic2b").unbind("click");
             $("#pic2c").unbind("click");
             $("#pic2d").unbind("click");
             $("#pic2e").unbind("click");
             $("#pic2f").unbind("click");
               if($("#pic2a").hasClass("hidden")){
               $("#words_correct").removeClass("hidden");          
               $( '#pic3a' ).removeClass( "hidden" ); //correct answer
               $( '#pic1a' ).addClass( "hidden" );
               $( '#blueCar' ).removeClass( "hidden" );
               $('#blueCar').animate({
                left:carArrayX[carArrayXcounter] + "px",
                top:carArrayY[carArrayYcounter] + "px"
               carArrayXcounter ++;
               carArrayYcounter ++;
               var cookieXcounter = carArrayXcounter;
               var cookieYcounter = carArrayYcounter;
               //console.log(cookieXcounter);
               //console.log(cookieYcounter);
               $.cookie('mycookieX',cookieXcounter,{expires:7,path:'/'});
               $.cookie('mycookieY',cookieYcounter,{expires:7,path:'/'});
               console.log($.cookie('mycookieX'));
               $( '#pic1b' ).addClass( "hidden" );
               $( '#pic1c' ).addClass( "hidden" );
               $( '#pic1d' ).addClass( "hidden" );
              else if($("#pic2b").hasClass("hidden")){
               $("#words_wrong").removeClass("hidden");
               $( '#pic4b' ).removeClass("hidden");//incorrect answer
               $( '#pic1b' ).addClass( "hidden" );
               $( '#pic1a' ).addClass( "hidden" );
               $( '#pic1c' ).addClass( "hidden" );
               $( '#pic1d' ).addClass( "hidden" );;
              else if($("#pic2c").hasClass("hidden")){
               $("#words_wrong").removeClass("hidden");          
               $( '#pic4c' ).removeClass( "hidden" );//incorrect answer
               $( '#pic1c' ).addClass( "hidden" );
               $( '#pic1a' ).addClass( "hidden" );
               $( '#pic1b' ).addClass( "hidden" );
               $( '#pic1d' ).addClass( "hidden" );;
              else if($("#pic2d").hasClass("hidden")){
               $("#words_wrong").removeClass("hidden");        
               $( '#pic4d' ).removeClass( "hidden" );//incorrect answer
               $( '#pic1d' ).addClass( "hidden" );
               $( '#pic1a' ).addClass( "hidden" );
               $( '#pic1b' ).addClass( "hidden" );
               $( '#pic1c' ).addClass( "hidden" );;
        $('#pic2a').click(function(){
          $( '#pic1a' ).removeClass( "hidden" );
          $( '#pic2a' ).addClass( "hidden" );
          counterBox++;
        $('#pic2b').click(function(){
          $( '#pic1b' ).removeClass( "hidden" );
          $( '#pic2b' ).addClass( "hidden" );
          counterBox++;
        $('#pic2c').click(function(){
          $( '#pic1c' ).removeClass( "hidden" );
          $( '#pic2c' ).addClass( "hidden" );
          counterBox++;
        $('#pic2d').click(function(){
          $( '#pic1d' ).removeClass( "hidden" );
          $( '#pic2d' ).addClass( "hidden" );
          counterBox++;
        $('#pic2e').click(function(){
          $( '#pic1e' ).removeClass( "hidden" );
          $( '#pic2e' ).addClass( "hidden" );
          counterBox++;
        $('#pic2f').click(function(){
          $( '#pic1f' ).removeClass( "hidden" );
          $( '#pic2f' ).addClass( "hidden" );
          counterBox++;
        $('#pic1a').click(function(){
          $( '#pic2a' ).removeClass( "hidden" );
          $( '#pic1a' ).addClass( "hidden" );
          counterBox--;
        $('#pic1b').click(function(){
          $( '#pic2b' ).removeClass( "hidden" );
          $( '#pic1b' ).addClass( "hidden" );
          counterBox--;
        $('#pic1c').click(function(){
          $( '#pic2c' ).removeClass( "hidden" );
          $( '#pic1c' ).addClass( "hidden" );
          counterBox--;
        $('#pic1d').click(function(){
          $( '#pic2d' ).removeClass( "hidden" );
          $( '#pic1d' ).addClass( "hidden" );
          counterBox--;
        $('#pic1e').click(function(){
          $( '#pic2e' ).removeClass( "hidden" );
          $( '#pic1e' ).addClass( "hidden" ); 
          counterBox--;
        $('#pic1f').click(function(){
          $( '#pic2f' ).removeClass( "hidden" );
          $( '#pic1f' ).addClass( "hidden" );
          counterBox--;

    I also had the problem of wanting to use custom javascript that I could call from an Edge Animate Composition.
    The solution I found (from a post by hemanth kumar r https://forums.adobe.com/thread/1479495) was to make variables and functions properties of AdobeEdge.
    So in the external .js document a variable is declared and given a value:
    AdobeEdge.myVariableName = "The variable value";
    To use it in a symbol/element:
    alert(AdobeEdge.myVariableName);
    And a function is declared:
    AdobeEdge.myFunctionName(param){...function code...} //param optional
    To call these in a symbol/element:
    AdobeEdge.myFunctionName(param);
    To test this out I created a button on my stage that called a function in my custom .js file that simply called an alert. Once the function works you can expand it to do anything you want (I used it to go to a new html page).
    Peter Small

  • Adding a JS script to the Library from disk causes Edge Animate to crash

    Hi
    I am experiencing a major problem with Edge Animate. I need to add a JS script to the Library from disk, but every-time I try to do this from the Library panel, the program crashes immediately.
    I did wonder if this was due to Finder, but I have tried the same operation from the Library panel to add video, audio etc and the Finder window opens and allows me to select a file without any issues.
    This is the system I am using
    Is there a way I can upload the crash report or attach it to a comment?
    Thanks
    Marco

    I have managed to fix this after googling the crash error and reading through some other posts.
    It appears that SCFinderPlugin was causing the issue. Other applications install it to the OSX without users realising - I don't recall ever installing it
    In order to remove this plugin you need to remove these files:
    /Library/Contextual Menu Items/SCFinderPlugin.plugin
    /Library/Receipts/SCPlugin.pkg 
    Hope this helps someone else at some point in the future.
    Marco 

  • Adding a Video to Edge Animate CC

    Is there a way to add a video to Edge Animate? I like to export it as a HTML5 file.
    Thanks,
    joe

    the easiest way is with the edgeHero plugin. See at edgeHero.com

  • Edge Animate playing all symbols on replay?

    Hi, I am at my wits' end here--I've created a basic animation using Edge Animate CC 2014.0.1, featuring groups of symbols which have a stop trigger at the beginning of the animation and are then played at the appropriate time. It works fine--the first time through. However, I added a "replay" button which loops back to a point early in the animation (but not the very beginning), and on the replay, all the symbols display their end state from the beginning (even though I had them fading to 0 before the loop trigger), until they play again. This seems to happen whether I loop to the beginning or another point.
    If this sounds familiar, it's because I asked a similar question a few months ago (about symbols autoplaying), but this time no amount of tweaking or trigger nudging seems to get them to disappear. Any thoughts? Composition is attached.
    http://iancareyjazz.com/documents/symbol_problem.zip
    Any ideas are appreciated!

    I think the easiest way to make this work would be to change all your play() on the timeline by play from 0. This way your symbols will alway play from the beginning of their timeline. I would change autoplay to off for all symbols because if you have a stop() on their timeline they will not play.

  • How do I turn an entire Edge Animate project into a symbol

    I have created an Edge Animate project that features a short animated tutorial for our website.  Now I realize that I would like to incorporate that project inside a larger project.  Is there any way to convert the entire tutorial into a symbol that can be added to the larger project?
    Thanks
    Paul

    Hi, Paul-
    You'll need to do a little bit of wrangling to make this happen, but the easiest thing to do is:
    Select everything in your elements panel and convert to symbol
    Transfer all of your triggers by highlighting them all in your main timeline and cutting (Ctrl/Cmd-X), then:
    Open your symbol
    Move the playhead to the time location of your first trigger
    Paste (Ctrl/Cmd-V)
    Transfer all of your timeline-based and stage-based code manually
    Hopefully that helps - it's a little bit of a pain if you have a lot of code involved, but if you only have timeline-based things, most can be cut and pasted over.
    -Elaine

  • How do you add Edge Animate to HTML Module using DotNetNuke (DNN)?

    First off I'm new to the whole web design/coding/html/css/jquery/etc., and the program Edge Animate is amazing!
    I have a site up using DNN and wanted to put what I created on Animate onto one of the pages. I added an HTML module and that's where I'm stuck.
    I do not know where to get the complete code so it works, and I do not know where to upload the Animate files. When it comes to creating the thing, I can manage (by reading ALOT), but when it comes to implamenting I am just stumped.
    Any idea?
    If you need more specific info just give the word, and I'll try my best.
    Thanks,
      Moses G.

    There are four basic steps needed to embed an Edge Animate composition into an existing page:
    Publish from Edge Animate. (This creates the necessary files to run the animation. Also, the code referenced in Step 2 and 3 below will be included in the .html file that Animate creates inside the publish/web folder, which you can just copy/paste.)
    Add a <div> to the page that has the ID of Stage and the correct class name for your stage (i.e. the "Composition ID" for your project in Animate).
    For example: 
    <div id="Stage" class="EDGE-1655086"></div>
    Include the Preload .js file and the default style in your page's header, within Edge Runtime HTML comments.
    For example: 
    <!--Adobe Edge Runtime-->
    <script type="text/javascript" charset="utf-8" src="test-1655086_edgePreload.js"></script>
    <style>
    .edgeLoad-EDGE-1655086 { display:none; }
    </style>
    <!--Adobe Edge Runtime End-->
    Make sure to upload all of the include files to your server in the appropriate relative locations. This includes the _edge.js files, _edgeActions.js file, _edgePreload.js file, the edge_includes folder and its contents, any other files/folders created inside the "publish/web" folder when you publish from Edge Animate (e.g. "images" folder, etc.).
    Here is a very simple example that will hopefully help to clarify:
    http://thetraininggrounds.com/An-test/Insert-An-into-existing-page.html
    As a reference, these are all of the files involved in the example:
    An-test/Insert-An-into-existing-page.html (the existing HTML page)
    An-test/ball-bouncing-banner_edge.js
    An-test/ball-bouncing-banner_edgeActions.js
    An-test/ball-bouncing-banner_edgePreload.js
    An-test/edge_includes/edge.1.0.0.min.js
    An-test/edge_includes/jquery.easing.1.3.js
    An-test/edge_includes/jquery-1.7.1.min.js
    An-test/edge_includes/json2_min.js
    Thanks
    Harshit yadav

  • Lesson for Adobe Edge Animate

    Hello Everyone.
    OK. Have been doing Edge Lesson's for quite nearly a year now, and wanted to share them with the community.
    If you have any request or questions, please feel free to post them to the video links below, or in here, and I will
    Try my best to assist you any way that I can.
    Edge Animate has really come a long ways, and with the new CC, it has taken on a life of its own.
    Look forward to what the future may bring with this awesome Adobe program release.
    Wayne Barron
    Dark Effects Production
    Adding sound to Mouseover event in Adobe Edge Animate 
    3:42 

    Adobe Edge Animate - Add Sound in Mouseover Event
    by darkeffectstv 1,987 viewsIn this video, we will learn how to add sound to a buttons Mouseover event in Adobe Edge Animate.…
    Learning how to add sound to Adobe Edge Animate 
    7:08 

    Adobe Edge Animate Adding Sound to Project
    by darkeffectstv 5,031 viewsAdobe Edge Animate Adding Sound to Project…
    Remake, as the cursor was not in the last videos. 
    4:10 

    Adobe Edge Animate - Mirror Text Effects with Wipe On Text (Lesson 3) (Remake)
    by darkeffectstv 447 viewsRemake with "Cursor" this time…
    Remake, with Cursor 
    3:49 

    Adobe Edge Animate - Load Background Image (Lesson 3) (remake)
    by darkeffectstv 1,050 viewsremake with Cursor, as Cursor was not int he original one.…
    2:00 

    Adobe Edge Animate Starting Symbol at certain location
    by darkeffectstv 245 viewsIn this quick tip.
    We are going to stop a symbol from playing.…
    6:53 

    Adobe Edge Animate Animate Logo to show and hide words
    by darkeffectstv 418 viewsIn this lesson, we are going to learn how to take an Image (Like a LOGO for a company) and animate it on the screen, and show and hide words.…
    5:44 

    Adobe Edge Animate Publish Files and JS Folder
    by darkeffectstv 758 viewsIn this lesson, we will guide you through the ins and outs of publishing your site from Adobe Edge Animate, to a web server.…
    6:19 

    Adobe Edge Animate Create a Pen and write a Line
    by darkeffectstv 527 viewsIn this lesson, we are going to create a Pen, then write 2 lines.
    This can be used in so many different projects, that it is endless.…
    2:34 

    Adobe Edge Animate Rollover Button
    by darkeffectstv 2,195 viewsIn this lesson, I will show you how to code a Rollover Button.
    This is a very simple and easy way to create a Rollover Button, with very little effort.…
    4:06 
    10 
    Adobe Edge Animate show Grid to fine tune your Animation
    by darkeffectstv 77 viewsHave a lot of Animation in your project?
    In this lesson, we are going to show you how to fine tune your animation down to the 30th of a second…
    16:49 
    11 
    Adobe Edge Animate Create a Menu
    by darkeffectstv 4,993 viewsIn this lesson, we are going to be creating an animated interactive menu, that is sure to grab your users attention.…
    12:30 
    12 
    Adobe Edge Animate Menu Slide Down
    by darkeffectstv 1,175 viewsIn this lesson, we are going to showing you how to create a Sliding Down Menu.
    This was really big a few years ago, a lot of sites had these types of menus…
    9:45 
    13 
    Adobe Edge Animate Menu Slide In from Left
    by darkeffectstv 358 viewsIn this lesson, we are going to be creating a cool little menu that will slide in from the left.
    I have never seen one like this before, and thought that I would create one, to see if it would work good,…
    4:29 
    14 
    Adobe Edge Animate Pin and Timeline Indicator
    by darkeffectstv 153 viewsIn this lesson, we are going to go over some basics on how to use the Pin and the timeline indicator. This will come in handy, if you have a big project and you wonder what happened, if something messes up …
    16:43 
    15 
    Adobe Edge Animate Menu Button Header Footer
    by darkeffectstv 905 viewsIn this lesson, we are going to be creating a Menu Button, with a Header and Footer.
    This is a cool looking button, that will come in handy for some sites.…
    12:56 
    16 
    Adobe Edge Animate - Shot Bullet from Gun and hit Wall
    by darkeffectstv 110 viewsIn this lesson, we are going to be creating a gun, a bullet, a wall.
    We are then going to shot the bullet, out of the gun, and destroy the wall.…
    7:44 
    17 
    Adobe Edge Animate Menu Rollover Buttons
    by darkeffectstv 1,047 viewsIn this lesson we are going to create some Rollover Menu Buttons.…
    4:11 
    18 
    Adobe Edge Animate - Animate Ball Bounce Squish
    by darkeffectstv 172 viewsIn this lesson, we are going to animate a ball, of which is going to bounce on the floor, and once it makes contact with the floor, it is going to squish down, just like a real ball will do.…
    6:16 
    19 
    Adobe Edge Animate - Change Text when Button is clicked
    by darkeffectstv 353 viewsIn this lesson, we are going to learn how to change the text of Textfield, when a button is clicked.
    reusing the same Text Element over and over again, keeps the project clean and tidy.…
    4:02 
    20 
    Adobe Edge Animate - Space Demonstration (Lesson coming soon!)
    by darkeffectstv 49 viewsThis is a demonstration of a project that I have been working on for the last few days. This will be turned into a lesson, that will be available within the next week or so…
    21:37 
    21 
    Adobe Edge Animate - Lesson 1 Space Project
    by darkeffectstv 87 viewsAdobe Edge Animate space project, showing how to rotate elements around a centered element. Also, how to reuse the same text element over again…
    9:32 
    22 
    Adobe Edge Animate - lesson 2 Display Planet Information using single text element
    by darkeffectstv 61 viewsview lesson #1 first:
    http://youtu.be/16GOY1QOD_…
    1:39 
    23 
    Adobe Edge Animate - Open Link
    by darkeffectstv 227 viewsIn this quick how to lesson.
    We are going to create a link on Adobe Edge Animate.…
    2:31 
    24 
    Adobe Edge Animate - Add Sound in MouseOut Event Part II
    by darkeffectstv 192 viewsThis is a follow up to a previous lesson.
    Please view the following lesson to catch up to what this is all about…
    1:28 
    25

    Here are 2 video using "Edge Hero"
    Adobe Edge Animate - Edge Hero Lesson 1 - 3d Objects
    by darkeffectstv 107 viewsIn this lesson, we are going to be working with a new plugin for Edge Animate called
    Edge Hero…
    6:55 

    Adobe Edge Animate CC Lesson #2 - Loading Video with Edge Hero
    by darkeffectstv 40 viewsIn this lesson, we are going to load some video into our edge project using Edge Her…
    And this is the latest video for Edge Animate CC
    Adobe Edge Animate CC - Lesson #3 - Animate ball bouncing on boxes and changing colors
    http://youtu.be/MxxpQspBpcw

  • Edge Animate's OAM file problem placed in Muse or other unknown problem??  Please help!

    Hi,
    I need help please.  Did anyone do a whole page animation in Edge Animate and place the OAM file into Muse, and somehow all the menu and social media icon buttons in Muse are blocked by the placed animation?  All my menu buttons, social media icon buttons and a link are not working (blocked by the transparent AN stage).   I can't go to any other pages because of this issue when previewed in browser.  My animation is a slide-open page from center of the page to both right and left side, also text moved up to the top.  All are moved out of the stage once animation finished to show the home page with contents, including menu and social media icon buttons.  Thanks for your help in advance!!
    Thanks,
    mykw123     

    That answers why the two G4's talk normally! I do
    have the TCP/IP settings set up manually.
    Well, if they are already set manually, maybe you should change them to Auto-negotiate. You shouldn't have to use the Manual setting at all. If you so, then someone, usually the people who wrote the driver for the network card, have screwed something up. It then becomes your job to fix it.
    The problems are just very slow document/file
    transfer from either new to old or old to new
    computer over network, which usually is great with
    the two G4's.
    That is probably the problem. You may want to go ahead and setup the new machine with manual settings to match the G4s. Otherwise, even the Internet will be noticeably slower.
    As for Target Disk Mode...so reboot the old G4
    holding the T key and the hard drive should show up
    on the desktop of the new computer?
    That will do it. It is the best and fastest option to transfer large amounts of data. But even target disk mode is kind of slow. A real, external firewire hard drive will be the fastest of all. It is an excellent idea for backups and this kind of thing.

  • How do you remove a symbol from the stage in Edge animate?

    Hello-
    I'm wondering how to remove a symbol from the stage in Edge Animate so you can jump to another place in the timeline.  In Flash, the symbol was only on the stage for the amount of frames you indicated.  Not sure how it works here.
    For example, I have 2 buttons on my first screen with some text that animates in.  I want the button click to take the user to another section in the timeline or (basically another scene, like in Flash)  that contains different content.  If I change the visibility the buttons are still there and will ( I assume) create problems when other elements are placed on top. 
    Or is the only way with code.  If that is the case what would that code be?
    I would appreciate any help.
    Thank you!

    What I usually do, is, once you have everything set up in the scene you are done with. highlight it all
    right click
    group elements in DIV
    Now all those items act as 1 group and then you give it a properties name, much like a symbol.
    THEN you can refer to that scene name and move it anywhere or hide it and slide in another scene that has the content for that next scene.
    basically you take all the elements that make up 1 scene, gruop it up, name it, and then in the code for the button say something like:
    on click:
    scenename.play(framenumber);
    that will then animate that scene according to any animation you gave it, such as moving to the left, off stage. while moving scene 2 that you create into the stage.
    or just have something like this hide it
    sym.$("scenename").hide();
    sym.$("scene2name").show();
    but if you do that, make sure in your CompositionReady code you hide all scenes EXCEPT the 1st one, so the user doesnt see them all instanatly anyway.

  • How do you open a modal window from an Edge Animate button?

    I am trying to create an animated group of buttons that open a Bootstrap 3 modal window when clicked. The animation (OAM file) is placed on the Bootstrap page.
    This code is added to Animate "CREATION COMPLETE" for button creation and button click:
    // Button 1
    var btn1 = sym.createChildSymbol("HomeButton", "menu");
       // Convert/store a reference to the symbol as a string representing the element name of the symbol instance.
    var btn1_e = btn1.getSymbolElementNode();
       // Now can use that element string and convert it to a DOM element to use with jQuery to call its css properties
       // and adjust whatever you'd like, including its position property   
       sym.$(btn1_e).css({"position":"relative", "margin":"10"});
    btn1.getVariable("setLabel")("Print Work");
    btn1.getVariable("setDescription")("Examples of Telex advertisement");
    btn1.$("MyImageBox").css("background" , "url(images/telexads_full269x151.jpg) no-repeat");
    btn1.getSymbolElement().click(function() {
              console.log("button 1 was clicked");
    document.getElementById("myModal");
    $('#myModal').modal('show');
    The div for the modal is on the main HTML page. I want to have the modal open a larger image of the button. Basically a lightbox for the Edge Animate stage, but it has to access the div on the parent HTML document (not the EdgeAnimate.html).
    Here is the error from the Chrome Javascript console:
    Uncaught TypeError: Object [object Object] has no method 'modal' portfolioButtonStage_edgeActions.js:4
    (anonymous function)portfolioButtonStage_edgeActions.js:4
    f.event.dispatchjquery-1.7.1.min.js:3
    h.handle.i
    I've tried Edge Commons Spotlight, but that doesn't open on the page correctly; it puts the image at the bottom of the main page.
    Any ideas? Thanks

    I am trying to create an animated group of buttons that open a Bootstrap 3 modal window when clicked. The animation (OAM file) is placed on the Bootstrap page.
    This code is added to Animate "CREATION COMPLETE" for button creation and button click:
    // Button 1
    var btn1 = sym.createChildSymbol("HomeButton", "menu");
       // Convert/store a reference to the symbol as a string representing the element name of the symbol instance.
    var btn1_e = btn1.getSymbolElementNode();
       // Now can use that element string and convert it to a DOM element to use with jQuery to call its css properties
       // and adjust whatever you'd like, including its position property   
       sym.$(btn1_e).css({"position":"relative", "margin":"10"});
    btn1.getVariable("setLabel")("Print Work");
    btn1.getVariable("setDescription")("Examples of Telex advertisement");
    btn1.$("MyImageBox").css("background" , "url(images/telexads_full269x151.jpg) no-repeat");
    btn1.getSymbolElement().click(function() {
              console.log("button 1 was clicked");
    document.getElementById("myModal");
    $('#myModal').modal('show');
    The div for the modal is on the main HTML page. I want to have the modal open a larger image of the button. Basically a lightbox for the Edge Animate stage, but it has to access the div on the parent HTML document (not the EdgeAnimate.html).
    Here is the error from the Chrome Javascript console:
    Uncaught TypeError: Object [object Object] has no method 'modal' portfolioButtonStage_edgeActions.js:4
    (anonymous function)portfolioButtonStage_edgeActions.js:4
    f.event.dispatchjquery-1.7.1.min.js:3
    h.handle.i
    I've tried Edge Commons Spotlight, but that doesn't open on the page correctly; it puts the image at the bottom of the main page.
    Any ideas? Thanks

Maybe you are looking for

  • How to set different bgcolors for rows int HtmlDatatable?

    I have JSF HtmlDataTable on my page. I need to fill rows in table by different colors, according to row's data, but I can't find any method for it...... Should I use JavaScript in this case?

  • Is it possible to register for global warranty online?

    I'm purchasing iPad 4 and iPhone 4S from a local reseller. His offering only a local warranty but have informed me that its possible to register for global warranty online. Please confirm

  • Error in ADS Configuration

    HI All, I want to configure Adobe Document Services (ADS). So when I check the connection by accessiin path. T.Code -->SA38 --> Report Name is FP_TEST_00 --> Execute --> Press on Print Preview Button, I am getting following error. ADS: SOAP Runtime E

  • Using cfmailpart and cfmailparam

    Hello, When using cfmailpart type="html" my email includes images in email (which is great), but when I use cfmailpart type="text" the email contains attached images which I don't want. How could I remove those attached images in text email without l

  • Why does adobe not accept my serial Number from Elements 3.

    can't install elements 3