Plugin Directory

Changeset 843364


Ignore:
Timestamp:
01/22/2014 10:03:31 PM (12 years ago)
Author:
ti2m
Message:

Readme update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • edge-suite/trunk/readme.txt

    r665558 r843364  
    22Contributors: ti2m
    33Tags: media, animation, interactive, adobe edge animate, edge animate, edge, embed, integration
    4 Requires at least: 4.3
    5 Tested up to: 4.3
     4Requires at least: 3.6
     5Tested up to: 3.8
    66Stable tag: 0.5
    77License: GPLv2 or later
     
    1515Upload of compositions through published OAM files. Integrate Adobe Edge Animate compositions seamlessly into your website.
    1616
    17 Detailed tutorials on how to install and use Edge Suite can be found is here:
     17Detailed tutorials on how to install and use Edge Suite can be found here:
    1818
    19 * <a href="http://edgedocks.com/content/edge-suite-integrate-edge-animate-wordpress">Edge Docks - written tutorial</a>
     19* <a href="http://old.edgedocks.com/content/edge-suite-integrate-edge-animate-wordpress">Edge Docks - written tutorial</a>
    2020* <a href="http://tv.adobe.com/watch/create-like-crazy-with-adobe-edge/episode-5-spice-up-your-wordpress-site-with-edge-animate/">Adobe TV - video tutorial</a>
    2121
    22 More resources can be found at <a href="http://edgedocks.com/edge_suite_wp">EdgeDocks.com</a>.
     22More resources can be found at <a href="http://edgedocks.com/">EdgeDocks.com</a>.
    2323
    2424The plugin has been intensively tested over the last couple of months and seems to be rather stable, it is up to you though if you want to try and use it in production. If you experience
    25 any problems please open an issue in the support section. If you like the plugin please vote for it and let us know that it works for your wordpress version.
     25any problems please read the FAQ before opening an issue in the support section. If you like the plugin please vote for it and let us know that it works for your wordpress version.
    2626
    2727== Features ==
     
    3636== Frequently Asked Questions ==
    3737
     38= Dev version =
     39
     40When experiencing any problems, please always try the latest dev version (http://downloads.wordpress.org/plugin/edge-suite.zip).
     41 Manual installation is needed. New features and bugfixes are always tested first in the dev version before they are being merged
     42 into the stable version.
     43
    3844= General things to check when problems occur =
    3945
     
    4450 Try to enable jQuery no conflict mode in the settings page, this might resolve conflicts between Edge Animates
    4551 version of jQuery and other plugins.
    46 
    47 = Background animation =
    48 
    49 If you want to use your composition as a background animation, try the following CSS on your stage id, e.g. #Stage_mycomp
    50 
    51     #Stage_mycomp{
    52         position: absolute !important; /* That is not pretty, but no way around it. */
    53         top: 0px; /* Aligns the animation with the top of the header (can be removed or changed) */
    54         z-index: 5; /* Sets animation as overlay, set to negative value for background placement */
    55 
    56         /* Only use the following if you want to center the animation */
    57         left: 50%;
    58         margin-left: -346px; /* Half the width of the stage */
    59     }
    6052
    6153= Animations don't show up =
     
    7769* Enable jQuery no-conflict mode in the settings
    7870
     71= Custom JavaScript =
     72
     73When using custom JavaScript code make sure you reference the Stage through
     74
     75    sym.$('Stage')
     76
     77$('#Stage') or sym.$('#Stage') will not work. The reason is that Edge Suite needs to alter the Stage Div Id, so '#Stage'
     78does not exist. When using sym.$('Stage') Edge Animate will use its internal reference to get the stage.
     79
    7980= Head Cleaner: Animations don't show up =
    8081
     
    8687
    8788zip.so needs to be installed as a PHP library
     89
     90= Background animation =
     91
     92If you want to use your composition as a background animation, try the following CSS on your stage id, e.g. #Stage_mycomp
     93
     94    #Stage_mycomp{
     95        position: absolute !important; /* That is not pretty, but no way around it. */
     96        top: 0px; /* Aligns the animation with the top of the header (can be removed or changed) */
     97        z-index: -5; /* Places animation in the background, set to a positive value for an overlay */
     98
     99        /* Only use the following if you want to center the animation */
     100        left: 50%;
     101        margin-left: -346px; /* Half the width of the stage */
     102        top: 50%;
     103        margin-top: -200px; /* Half the height of the stage */
     104    }
     105
    88106
    89107== Installation ==
Note: See TracChangeset for help on using the changeset viewer.