OAM files as background fill

Wouldn't it be nice if you were able to use a OAM file as a background fill.
That would open a whole range of creative possibilities!

Update: I found a temporary fix/workaround.  After importing the audio, click on Edit.  Then delete the first tenth of a second or so, then click save.  Doing so now puts the tag (Clip) in front of the audio file.  Now when previewing or viewing a published file, the correct background audio plays.  I opened a case with Adobe support as well as posting on this forum.  When I advised them of my fix/workaround, they gave me a link to report a bug/problem to their engineers.  I had some conversations with the engineers via email, but havent heard from them since June 15 when I advised them of the site where I got the MP3 files and even shared (per their request) one of the MP3 files with them.
When searching for a possible solution for this problem in the forums, I vaguely remember coming accross this method of solving an audio problem, but it wasnt at all the same problem I was having.  I figured I would just try it and it worked!
If I hear anything back from the engineers I will post their solution or fix (if any)

Similar Messages

  • Updated .oam file appears as old version when placed in Muse

    I changed the background color of my Animate composition from black to white. I republished it and deleted the old version, but when I place the .oam file in my Muse site, it's the old version with a black background.
    I tried renaming the Animate project and saving both it and the Publish folder in a new place. Same result. I tried saving the Muse site with a new name and in a new place in case it was a cache problem. Same result.
    This is with the newest 2014 versions of both applications.

    Hi,
    I had the same problem. I reported it to Adobe but the problem (among many others) has still to be resolved. I wonder when the next release will be 'cos this one has been a disaster
    David

  • .oam file in Muse not appearing in browser

    When I place the .oam file in Muse and then go to preview in browser it only shows me a black and white box - nothing else. I set the fill and set into invisible and tryed everything but it doesnt work. any ideas what I am doing wrong? (it's an .oam file which was made out of an mp4 video...don't know if its relevant)

    Hi Valentina!
    Good new! I fixed my problem!
    Actually I restarted to create the beginning of my animation in Edge to check all the parts of it step by step with Muse! And everything works! So, I tried to understand where was the problem and I remembered that I made a wrong manipulation before I placed the first time the OAM file into Muse!
    Indeed, I also choose web publish settings when I was in Edge to publish my animation but I didn't need it... and I put these files in the trash! Edge was not happy at all with my manipulation and the animation couldn't work well! Then I restore the files and everything was back to normal in Edge... But perhaps not as much as I thought!
    So, I just have to create again my animation and everything should be fine!
    About your problem, I create a new project in Edge and it's impossible to place a video file .mp4 on stage! Edge doesn't show this kind of file to put it in the library... How did you do?!
    Then I found this video which explain a way to put an .mp4 video in Animate compositions http://www.youtube.com/watch?v=CGyOxwEsEFo I hope that will help you!
    If you want to add graphics on your video, you should use Flash or After Effects at the beginning!
       1. Open the video file with AE or Flash to add graphics on it
       2. Export your new video and use the way of the link above
       3. Enjoy it
    Hope you have all the keys in your hand to succeed now!
    Thank you for your answer on friday
    Bye!
    Anne

  • Text background fill

    Hi,
    I do have this nice script to add a file name into the picture. I would like to add a rectangle behind the text but I don't know how.
    Could you please help me.
    / this script is a variation of the script addTimeStamp.js that is installed with PS7
    //Copyright 2002-2003. Adobe Systems, Incorporated. All rights reserved.
    //All amendments Copyright Brian Price 2004 ([email protected])
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PERCENT;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = "";
    // Set font size in Points
    myTextRef.size = 60;
    //Set font - use GetFontName.js to get exact name
    myTextRef.font = "ArialNarrow";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 255;
    newColor.rgb.blue = 200;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 2, 98);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    Like this...
    if (documents.length)
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var txtLayer = activeDocument.artLayers.add();
    txtLayer.kind = LayerKind.TEXT;
    txtLayer.textItem;
    txtLayer.textItem.size = 60;
    txtLayer.textItem.font = "ArialNarrow";
    var TXTColor = new SolidColor;
    TXTColor.rgb.hexValue = '00ffc8';
    txtLayer.textItem.color = TXTColor;
    var X = ((activeDocument.width/100)*2);
    var Y = ((activeDocument.height/100)*98);
    txtLayer.textItem.position = new Array( X, Y);
    txtLayer.textItem.contents = activeDocument.name.slice(0,-4);
    var LB=activeDocument.activeLayer.bounds;
    var textBackLayer = activeDocument.artLayers.add();
    txtLayer.move( activeDocument.activeLayer, ElementPlacement.PLACEBEFORE)
    var Height = LB[3].value - LB[1].value;
    var Width = LB[2].value - LB[0].value;
    activeDocument.selection.select([[LB[0],LB[1]], [LB[2],LB[1]], [LB[2],LB[3]], [LB[0], LB[3]]], SelectionType.REPLACE, 0, false);
    //Background fill colour.
    var FillColor = new SolidColor;
    FillColor.rgb.hexValue = 'ffff00';
    activeDocument.selection.fill(FillColor);
    activeDocument.selection.deselect();
    activeDocument.flatten();
    preferences.rulerUnits = originalRulerUnits;
    } else {
    alert( "No Document Open");

  • White screen in the Adove Content Viewer (Android) when playing OAM files, how do I fix this?

    Everything was working yesterday, not anymore.
    Folio v31
    Article PDF
    OAM Overlay Settings
    Auto Play - No Delay
    User Interaction
    I made an oam animation for an "advertisement" article within the folio. Just simply imported the OAM file, set the overlay settings, and preview. Perfect, everything was fine.
    Now a white screen appears. I can see the poster image when the page first loads, and then it goes blank. I read about similar white screen issues with OAM's, reading that this was a problem with PDF articles, so I went: "Ok, let me change it to PNG."
    Nope, didn't work.
    I tried JPG, that didn't work either. I tried PDF/PNG/JPG with delays from 0.125s - 0.5s, I tried placing an image on top of the OAM file, & I changed the user interactions, transparant background, etc.
    Still white light.
    So I thought, maybe the OAM file is f'd up, let me go make another OAM file with two png files that just moves their position. I tried it with & without a transparent poster image. Still a bright light.
    It works in the Adobe Content Viewer on the desktop (as choppy as it is), but not on my device (Nexus 7).
    Everything worked yesterday, I don't know if there was an update or something? Am I missing something?
    I cannot convey to you how long i've been troubleshooting this issue because I need animations for my projects. I don't like posting on the forum unless I exhausted every source I could find.

    You know what's odd?
    Yesterday I said it wasn't working and gave up on it. I read this message and I know I had all my animations set to 0.125 - thanks to some past forum questions you've answered- to which I double checked within InDesign.
    Anyway, I went to check the saved folio preview - the one that didn't work- and now it works.
    I didn't' change anything from when I gave up on it yesterday.
    I guess this is answered, although I do not know what happened to the same folio that didn't work yesterday, to work today.
    -Shawn

  • Audio problem with Edge animate CC 2014.1 oam files in DPS 32 (Viewer App in Ipad)

    Hi there team,
    I can hear no sounds in the Ipad viewer. I think the problem may be the last update of the Ipad viewer app. But not sure if the problem is with the last 2014.1 update of Edge.
    The animations work fine in Chrome with onclick but they dont'ty work in the Ipad with the ontouch commands. I also checked that the oam file contains the .mp3 in the media folder (Seems that Edge 2014.1 does this right).
    They are actions, not music in the background (I know there's an iOS limitation with this).
    Anyone with the same problem? Could you check if your projects work fine after the last updates?
    Thanks!
    Rubén.

    I have just found the same problem. I have an Adobe DPS article that uses Adobe edge that play audio when 'tapped', I built this before the CC 2014.1 update and that one works fine. I have created another article following the same process but using the updated version and the audio will not play.
    Both files are placed OAM files. Audio worked fine in the browser during testing.
    Please tell me this has not been removed as a feature!

  • Background Fills Behind Text Support with IceBrowser

    Hello,
    I was wondering if background fills is support by the supplied oracle help browser?
    I can open the htm file that I create with a different browser such as Mozilla and it works/
    Using the same file within oracle help I do not see the background fill.
    Thanks

    Hi, Darren:
    If the text lines are in a single paragraph that wraps within the frame, you can use a nested style that applies named character styles by line number (new in CS4) so you can have line1 apply a character style that applies an offset green underline thick enough to back up the text, and line2 use a yellow, etc. You can also set the sequence of nested styles to repeat the previous x-number of styles (also new in CS4.)
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices

  • How to !not make a cropped pattern element in the whole background fill

    So with alot of reading and help i did manage to bild a background filled with pattern emelent ,but whhen i resize it ,it is croped.What i mean is
    the pattern element is this and its a simple bitmap with the name of "Box"
    and when i fill the background with this element test the FLA file and drag the corner of the SWF window (i am making it bigger ), it crops the  last pattern element in in every Row and Column.Just like in this picture
    so how do i not crop it ? and make it as the 2nd resized image (the one with the red tick,the one with the "YES").
    the problem is that i re- scale the stage so somethimes its 400-500 and other its 1000 to 400 and that is why i use the
    matrix.scale(1.1, 1.1);
    (those numbers will be a variable that will change as the stage size changes)
    i have this code in the MainClass_Test class (the document class)
            import flash.display.Sprite;
              import flash.display.Bitmap;
              import flash.display.BitmapData;
              public class MainClass_Test extends Sprite {
                        private var bg1:CreateRow_Col = new CreateRow_Col();
                        public function MainClass_Test() {
                                  bg1.x = 0;
                                  addChild(bg1);
                                  trace(numChildren)
    and this in the CreateRow_Col class
            import flash.display.Sprite;
              import flash.events.Event;
              import flash.geom.Matrix;
              public class CreateRow_Col extends Sprite {
                        public function CreateRow_Col() {
                                  addEventListener(Event.ADDED_TO_STAGE, zzz);
                        private function zzz(e:Event):void {
                                  removeEventListener(Event.ADDED_TO_STAGE, zzz);
                                  var  matrix:Matrix = new Matrix()
                                  matrix.scale(1.1, 1.1);
                                  graphics.beginBitmapFill(new Box(), matrix, true, false);
                                  graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
                                  graphics.endFill();
    i did try it with adding the new Box().width and new Box().height but that only expands the area that the background will spread.
    I did something like this with a wlile loop > and adding the pattern element to the stage and moving it until the patternElement.x < stage.stageWidth + patternElement.width,
    http://forums.adobe.com/message/5649061#5649061
    but this creates to many objects on the stage and i dont want that.

    ok i found i way to do what i want but when i scale the image backgroud to fit exactly the screen it doesnt consider the scale of the object I am applying before that .
    What i mean > when i do this  and comment the _mesh.ScaleX and Y
    var ScaleX:Number = 1
    var ScaleY:Number = 3
    /*_mesh.scaleX = stageW / background_W;
                                  _mesh.scaleY = stageH / background_H;*/
    i have 2 rows like it must do ,cause ill have different scaleX and Y
    but when i uncomment the _mesh.ScaleX and Y i dont get the 2 rows fit in the entire scree like i want , I get 5 rows (they are purfectly sized to fit the stage.stageWidth or Height - what i want but not allways five).And even worse when i change the scale to any number like .5 or 51 or 501 it just doesnt care >> i always get 5 rows.
    i have this in the CreateRow_Col class as code
    private var _mesh:Shape = new Shape();
                        private var _box:BitmapData = new Box();
                        public function CreateRow_Col() {
                                  addEventListener(Event.ADDED_TO_STAGE, zzz);
                        private function zzz(e:Event):void {
                                  removeEventListener(Event.ADDED_TO_STAGE, zzz);
                                  var stageW:Number = stage.stageWidth
                                  var stageH:Number = stage.stageHeight
                                  var elementW = _box.width
                                  var elementH = _box.height
                                  var numberElements_W = Math.ceil(stageW / elementW)
                                  var numberElements_H = Math.ceil(stageH / elementH)
                                  var ScaleX:Number = 1
                                  var ScaleY:Number = 51
                                  var background_W = numberElements_W * elementW * ScaleX
                                  var background_H = numberElements_H * elementH * ScaleY
                                  //trace(background_W + " = "+ numberElements_W + " * " + elementW)
                                  var  matrix:Matrix = new Matrix()
                                  matrix.scale(ScaleX,ScaleY);
                                  _mesh.graphics.beginBitmapFill(_box, matrix, true, true);
                                  _mesh.graphics.drawRect(0, 0, background_W, background_H);
                                  _mesh.graphics.endFill();
                                  _mesh.x = _mesh.y = 0;
                                  _mesh.scaleX = stageW / background_W;
                                  _mesh.scaleY = stageH / background_H;
                                  trace(stageH / background_H)
                                  addChild(_mesh);
    how can i fix this

  • How to add background fill to ColumnChart created without MXML?

    I'm trying to create ColumnCharts on-the-fly, without using MXML. To my surprise, I've had good luck with this so far, and have managed to figure most things out by blind guesswork, since I can't find any documentation or sample code anywhere for this.
    For example, I'm trying to turn this:
        <mx:ColumnChart id="overallSpendingChart" dataProvider="{spendingDataList}" showDataTips="true" paddingLeft="10" paddingRight="10" height="30%" width="100%" >
            <mx:horizontalAxis>
                <mx:CategoryAxis dataProvider="{spendingDataList}" categoryField="OrganizationTypeName" title="Organization Type" />
            </mx:horizontalAxis>
            <mx:verticalAxis>
                <mx:LinearAxis title="FY Spending in Millions" labelFunction="spendingInMillions_labelFunc"  />
            </mx:verticalAxis>
            <mx:series>
                <mx:ColumnSeries id="organizationTypeSpending" yField="Amount" xField="OrganizationTypeName" displayName="Organization Type [??]" showDataEffect="slideIn" />
            </mx:series>
        </mx:ColumnChart>
    into this:
            // Test to see if we can fake up a chart without using </mx:ColumnChart> resources.
            private function attemptToCreateColumnChartOutOfThinAir():void
                var testChart:ColumnChart = new ColumnChart();
                testChart.dataProvider = spendingDataList;
                testChart.showDataTips = true;
                testChart.height = 200;
                testChart.width = 300;
                var backgroundFill:FillStyle = new FillStyle();
                backgroundFill.color = new SolidColor(0xFF99FF);
                testChart.backgroundElements.push(backgroundFill);
                // There's more missing here ^ but it's all cosmetic..           
                var testCatAxis:CategoryAxis = new CategoryAxis();
                testCatAxis.dataProvider = spendingDataList;
                testCatAxis.categoryField = 'OrganizationTypeName';
                testCatAxis.title = 'Organization Type';
                testChart.horizontalAxis = testCatAxis;
                var testLinearAxis:LinearAxis = new LinearAxis();
                testLinearAxis.title = 'FY Spending in Jillions';
                testLinearAxis.labelFunction = spendingInMillions_labelFunc;
                testChart.verticalAxis = testLinearAxis;
                var testColumnSeries:ColumnSeries = new ColumnSeries();
                testColumnSeries.id = 'organizationTypeSpending';
                testColumnSeries.yField = 'Amount';
                testColumnSeries.xField = 'OrganizationTypeName';
                testColumnSeries.displayName = 'Organization Type [??]';
                //testColumnSeries.showDataEffect = slideIn;
                testChart.series.push(testColumnSeries);
                // Do we need this addChild?
                addChild(testChart);
                // Remove the visual competition
                removeExistingBitmapsFromScreen();
                // Slap it up? Maybe? Center of Oregon
                var centerOR:LatLng = stateCenters['OR'];
                testingChartAddToGoogleMap(testChart, centerOR);                       
            private function testingChartAddToGoogleMap(theChart:ColumnChart, theLatLong:LatLng):void
                var options:MarkerOptions = new MarkerOptions();
                options.icon = theChart;              
                options.iconAlignment = MarkerOptions.ALIGN_HORIZONTAL_CENTER + MarkerOptions.ALIGN_VERTICAL_CENTER;
                options.iconOffset = new Point(0, 0);
                options.hasShadow = false;
                // Create the marker, add to map
                var theMarker:Marker = new Marker(theLatLong, options);
                map.addOverlay(theMarker);   
    As you can see I'm fumbling through it. The above does seem to work, except I have not been able to blunder through how to set a background fill, both to set column colors and to set background colors for the whole graph.
    For example, how do I the ActionScript equivalent of these <mx:fill> tags:
         <mx:ColumnChart id="myChart" dataProvider="{expenses}" showDataTips="true">
            <mx:horizontalAxis>
               <mx:CategoryAxis
                    dataProvider="{expenses}"
                    categoryField="Month"
               />
            </mx:horizontalAxis>
            <mx:series>
               <mx:ColumnSeries
                    xField="Month"
                    yField="Profit"
                    displayName="Profit"
               >
                   <mx:fill>
                        <mx:SolidColor color="0x336699"/>
                   </mx:fill>
               </mx:ColumnSeries>
               <mx:ColumnSeries
                    xField="Month"
                    yField="Expenses"
                    displayName="Expenses"
               >
                <mx:fill>
                    <mx:SolidColor color="0xFF99FF"/>
                </mx:fill>
               </mx:ColumnSeries>
            </mx:series>
         </mx:ColumnChart>
    (If there is documentation on this type of technique, I'd appreciate a pointer. What I'd really love is source output from the MXML compiler, sigh.)

    John Phillips10 wrote:
    I should know how to do this, but after trying several keys and many different modes, it has me
    stumped.
    Keying is not an option according to the information you are providing.
    The project, for better or worse, was created with a transparent background. In an art installation I > projected this movie onto a screen made of blueprints...
    If you really did create it with a transparent background, using an alpha and the Animation codec, we're off to an easy solution. However, you did not use the Animation file in live playback. You created a QT movie that had a black background, possibly super-black. With little or no light coming through the black areas, it looked transparent. But there's no way to project transparency and the Animation codec cannot be played back in realtime without hardware support.
    I now have a photo of the blueprint screen and want to composite it with the movie so the "new"
    movie documents the installation view - ie where the movie is lighter, the screen shows through
    more. I've tried everything I know (which is obviously not enough!) and would appreciate your
    expertise on this.
    About all you can do is experiment with multiple copies of your layer with different filters and composite modes applied to them till you get something you think you want to use. The problem is that when you use composite modes, you can only get 100% white when you add or combine underlying pixels so the illusion of a projection is a suggestion at best. That is, white photos projected on your white blueprint should be bright but they can't be brighter than the white from either source.
    An additive dissolve filter will help you envision some possibilities but, unfortunately, it can't be keyframed in FCP.
    bogiesan

  • How do i add Edge animate .oam files to Fixed Layouts Epubs in Indesign cc 2014?

    How do i add Edge animate .oam files to Fixed Layouts Epubs in Indesign?

    Hi,
    There is a bug on iOS7 which does not let edge animate work correctly here. This issue will happen on iPad and not on Mac OS.
    There is a similar thread that explains in detail this issue you are facing:
    https://forums.adobe.com/thread/1513879
    Regards,
    Pooja

  • Is there a way to stop .oam files from previewing as previously placed files in Muse CC?

    I'm placing a new .oam file in a new website I'm creating in Muse but it previews as a previous .oam file that I used in a previous website. When preview the page on a browser it's fine but it's making it hard to place the .oam file in the correct position. Is there a way to stop this from happening so it previews correctly in Muse?

    If you're using Safari as your web browser go to "Safari -> Preferences...", select "General" from the toolbar and uncheck the "Open safe files after downloading" box.
    Other browsers should have a similar setting in their prefs.
    Steve

  • Scroll Effects to OAM file

    Hello everyone!
    I am trying to add Scroll Effects to OAM file (in Muse project).
    I did this:
    Export the OAM file from Adobe Animate.
    Launch Muse and double-click a page to open it in Design view. Ensure that the page is long enough to scroll by updating the minimum height settings in the Page Properties dialog box.
    Choose File > Place and browse to select the OAM file from the site folder.
    Open the Scroll Effects panel. Click the Adobe Edge Animate tab (fourth tab from the left) to review the settings for this section.
    While the OAM file is selected, enable the Edge Animate checkbox.
    Choose Autoplay 700px
    Preview page in browser and my OAM animation starts playing immediately. What is wrong? I want animation to star playing after user scroll down (700px for example), but now as soon as I load the page my animation starts playing!
    My Adobe Animate file has simple structure. Autoplay set to "yes". I have a stage and one element with animation (movement from one point to another in 2 seconds).

    I just updated to the latest version of Muse, Edge Animate, and everything else from Creative Cloud, on my alternate computer. I re-published the animations from Edge Animate and the site from Muse and it still doesn't work.
    @Devendar_kumar
    I made a test page and animation like what I am trying to do. You can view it here: http://testanim904.businesscatalyst.com/
    It's the same animation in both grey rectangles. The one on the left is published from Edge Animate with autoplay not checked, and the one on the right is with autoplay checked. They are then placed into Muse, with a scroll effect (edge animate tab) to start playing the animation at 430px. The blue bar is there to show 430px and when the animation should start playing. (I tried the 'advance 1 frame every x pixels' setting as well but it had the same results.)
    Yet, the result is that the left one does not play at all and the right one plays even before the browser scrolls to the blue bar. Thus, edge animate scroll effects in Muse appear to no longer be working.
    I have placed this test file and both oam files on my dropbox at:
    https://dl.dropboxusercontent.com/u/21180533/testanimation.muse
    https://dl.dropboxusercontent.com/u/21180533/testanim.oam
    https://dl.dropboxusercontent.com/u/21180533/testanim-ap.oam

  • Adobe Muse: where it must be placed .oam file via FTP???

    I don't use Catalyst or other Adobe devices to publish my Muse sites, but I prefere to use FTP and add any file to respective folder.
    Now I built an animation with Edge and I have correctly obtained an .oam file.
    I tried to follow instructions but I'm not able to obtain any result.
    Note that when I try the site in local the animation works correctly.
    After that I tried to place namefile.html in html folder, namefile.css in css folder and namefile.oam in image folder and it does'nt work.
    I tried to create in the main root a new folder with this path:
    /assets/namefile/namefile.html
    and the result becomes better because now the frame of the documents appears correctly, but instead of the animation it appears an error alert.
    So I suppose that the problem is: where exactly it must be placed the .oam file?
    I didn't find any suggestion on the various forums.
    Please can you help us?
    Regards
    Lorenzo

    Hello, thank for the time you have dedicated to my question.
    In any case I want to explain better the sense of it, regarding to the use of MUSE we are doing, that can maybe interest other users.
    We are using MUSE to produce a Ipad/Android digital magazine. We find very helpful MUSE and EDGE to make interactive and multimedial magazines and in the past 6 months we experienced many advanced solutions. We developed a low cost Ipad APP and Android App, fully customizable from users, that are now able to manage a HTML5 source coming from MUSE/EDGE.
    Everything works perfectly but, unfortunately, MUSE is not born for magazines but for sites so it does'nt hold some essential features needed for digital publishing.So we have to correct manually some lines in any .css and sometimes add something in html file. Due to this inconvenient we must finish any page, export the relative HTML and, after that, upload it singularly together with css, also because if we should upload the whole site every time we make a change the new re-generation would cover the corrected files.
    That's why I ask you the exact path for the folder asset and the other generated file and I can't use the automatic .oam system.
    In any case we have found a provisional solution:
    1. we placed the folder "assets" in the main root, together the html file, the css folder and the image folder.
    2. We created inside this assets folder a sub folder for the specific animation, naming (for instance "xxx").
    3. Inside xxx we placed:
    folder "edge includes"
    folder "images"
    file "animation1.html"
    file "animation1_edge.js"
    file "animation1_edgeActions.js"
    file "animation1_edgePreload.js"
    4. In the Muse html file that hosts the animation we used the box "insert HTML" and we wrote the following code:
    <iframe src="assets/xxx/animation1.html" width="1024" height="768"></iframe>
    If you have a better way to do that, please let us know.
    In any case you can see the preview of the digital magazine at the following URL
    www.piu39magazine.it
    and you can see the result of the animation at the URL:
    http://www.piu39magazine.it/vignetta.html
    The main advantage of this solution is that a Ipad/Android magazine can be viewed in the same interactive, graphic and multimedial way also in the web, taking advantage of the touch screen in the new forthcoming Hybrids under Windows 8.
    Hoping this experience can be useful for other Muse users.
    Best regards
    Lorenzo Paolini
    [email protected]

  • Upgraded version of edge won't allow Muse to read my .oam file

    A consultant created the site for us. I am taking it live, but when I opened the Safty.an file to change a hyperlink he got wrong and edit the text, I was forced to save the .oam file into a newer upgraded version.  After this, even if I don't make any edits to the hyperlink or text, and just save to the new upgraded version, the .oam file won't load in Muse.  If I use the previous .oam file, it will. Please help, it seems like it it something clear or obvious, but nothing seems to be working.  Also, the new safety.oam file is nearly one third the size that it was previously.  http://preview.quantapowerinc.com/safety.html

    Se my response on this post:
    ]                                  Screen Message"File iTines Library.itl cannot be read because it was created by a newer version of iTunes" What is this and how can it be fixed?                    
    They do not appearon the right-had side of your post.

  • How do I make an oam file to be 100% width in browser?

    I animated the edge file so that it's responsive to the width of the browser. It works in Edge when I preview & published, but when I placed the oam file into Muse it doesn't have that ability.
    Dying to know, please help!

    Hello!
    Try to put your animations inside the new frame, and the frame to stretch the entire width of the template in Adobe Muse (until the red line). In addition, test page only in browsers, since I've noticed that myself Adobe Muse is not properly display such content. Unfortunately, I do not have an example of solutions to your problem, but maybe you'll find something interesting in the pages of adobe muse market! Thank you!

Maybe you are looking for

  • HCM data extraction from R.3 to BI

    Dear Experts, I need some basic documentation in HCM(HUMAN CAPITAL MANAGEMENT) inorder to implement the data flow to BI, where the data resides in r.3( tables or infotypes), data source enhancement procedure for HR data sources( any difference with r

  • Change in PO Price

    Hi Experts, We have a PO created last November 2009.  GR and Vendor Invoice (MIRO) were already processed also on November 2009. There were already sales for all the materials indicated in the PO last December 2009. This February 2010, they wanted to

  • Problem with Cross Dissolve

    I have a couple of clips I want to add the default Cross Dissolve between. The first clip is 04;04 sec., and the other clip is 04;12 sec. When I add the dissolve between them, it only comes in at a duration 00;01; while, when I add the same dissolve

  • Need help in HANA Coding

    Hi All, We have a requirement to calculate the Position Start/End Dates of an Employee. Logic: look for the earliest date when the position started and pick the Start date as the position start date,           look for the latest date when the positi

  • Add some or all photos to Lightroom?

    Hi, I'm new to LR but already have years of assorted images on my machine. Some are mine. Some are from others. Some are stock images that I've purchased. All kinds of stuff: web icons, buttons, etc..., adds. Should I add them all or are there types