Problem in preloader when published to HTML.. help..

i have this application which has a preloader, when i try to publish it in html the preloader automatically sets to 100%, i need play the application first before i can see it load,
is there a setting in here which i can set the preloader to run automatically?
tnx..

Here's my screenshot, preloader is at the 1st frame, when reached 100 it must run on to the next frame,
when published in html it doesnt automatically run the preloader, i need to play it first..
tnx

Similar Messages

  • Urgent problem, somwthing disappear when publish to html

    Dears, i published my application to html file, the big problem, but somethings disappear from html, and the .swf file and .exe are working correctly.
    and my device has flash player 10, flash cs3, IE7, googlechrome, firefox and finally i founded that it works on some devices and others no.
    so if that in flash publishing settings, or something un my device/browser settings ?
    thank you very much in advance,

    Here's my screenshot, preloader is at the 1st frame, when reached 100 it must run on to the next frame,
    when published in html it doesnt automatically run the preloader, i need to play it first..
    tnx

  • EMERGENCY! All site content disappearing when publishing to HTML

    When publishing to HTML, ALL content on the site (inclusive of header nav and footer content) is disappearing. Only the browswer image is visable. http://www.brainstormsuccess.com
    I quite Muse. Dumped cache. Rebooted. Have tried creating new layers and copy and pasting content. Nada.
    Some are seeing: MuseJSAssert: Error calling selector function: TypeError: Object [object Object] has no method 'toBrowswerWidth'
    ISSUE RESOLVED: Truncated line of Java script in the header.

    Hi,
    The site seems to be working fine on my end. Please refer to the following screenshot :
    Please try in a different browser.
    Regards,
    Aish

  • Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC

    Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC? I would be grateful for any assistance.
    Here's the situation:
    -- I recently upgraded from RoboHelp X5 to RoboHelp 8. I upgraded my projects to RoboHelp 8 projects.
    -- One large help system I manage is built such that there is one master project and about 25 child projects. Each of these is its own item in the master project TOC.
    -- In RoboHelp X5 I never had any trouble deleting these.
    -- However now in RoboHelp 8, whenever I delete one (by opening TOC pod, right-clicking on item in question, and clicking Delete), and proceed to "Generate Primary Layout" (MS HTML Help), the generation/compilation process proceeds as far as "Generating full-text search data" and then the whole program crashes!
    Am I doing something wrong? Is there a bug in the software? I have installed patches 8.0.1 and 8.0.2.
    Once again, I thank you in advance for any pointers.
    Matthew Keranen
    Jamsa, Finland

    That does help - thanks a lot.
    Wayne Kroger
    State Street Corporation
    SQA-Princeton
    (609) 580-6264
    mail to: [email protected]
    The information contained in this email and any attachments have been classified as limited access and/or privileged State Street information/communication and is intended solely for the use of the named addressee(s). If you are not an intended recipient or a person responsible for delivery to an intended recipient, please notify the author and destroy this email. Any unauthorized copying, disclosure, retention or distribution of the material in this email is strictly forbidden.

  • ComboBox prompt disappears when published to HTML

    I am creating a form which contains four ComboBox components. I have defined the "prompt" property for each of these ComboBox components using the Component Inspector. The only real difference between these four ComboBox components is how their dataProvider property is defined.
    Two of these components use DataProvider objects which I have defined using Actionscript. I defined the dataProvider property for the other two ComboBox components using the Component Inspector.
    My problem is that when I publish the Flash movie to HTML, the prompts disappears for the two ComboBoxes whose dataProviders I defined using Actionscript. The prompt remains visible for the two ComboBoxes whose dataProvider property I defined in the Component Inspector. I should also mention that prompts for all four ComboBoxes appears just fine when I just publish to Flash.
    I have tried correcting this by setting the "prompt" property using Actionscript but the result is the same.
    Thanks in advance for any suggestions on how this may be corrected

    I finally found a solution to my problem, however, I am not entirely sure I understand why the problem is there in the first place.
    One of the things I did not mention in my original post, is that the DataProvider objects for the ComboBoxes are populated with XML from an external file which I am loading via a URLLoader object.
    I originally had set the style of the ComboBox components within the same function that I am using to load the XML (I have called this function "init"). When the XML is loaded, I call another function to populate the DataProvider object for the ComboBoxes with XML. For some reason, I have to set the style of the ComboBox components again within that function otherwise it is as if there were no styles applied. The following code demonstrates my problem. I added in the timer function just to help demonstrate the issue, namely that the style set in the init function only applies until the DataProvider object is created and assigned to the ComboBox.
    import fl.data.DataProvider;
    var cbTextFormat:TextFormat;
    var xmlStatesLoader:URLLoader;
    var xmlStates:XML;
    var dpStates:DataProvider;
    function init():void {
    //load data for states selection list
    xmlStatesLoader = new URLLoader();
    xmlStatesLoader.load(new URLRequest("states.xml"));
    xmlStatesLoader.addEventListener(Event.COMPLETE, onComplete);
    xmlStatesLoader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);
    //set the text format for ComboBox text fields
    cbTextFormat = new TextFormat();
    cbTextFormat.color = 0x0000FF;
    cbTextFormat.font = "Arial";
    //set style for cbOne ComboBox
    cbOne.textField.setStyle("textFormat", cbTextFormat);
    cbOne.textField.setStyle("embedFonts", true);
    function onComplete(e:Event):void {
    //notice that the prompt is displayed until the timer runs out and the onTimerComplete function is called
    var myTimer:Timer = new Timer(1000, 3);
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
    myTimer.start();
    function onTimerComplete(e:TimerEvent):void {
    xmlStates = new XML(xmlStatesLoader.data);
    dpStates = new DataProvider(xmlStates);
    cbOne.dataProvider = dpStates;
    cbOne.prompt = "Loaded";
    //uncomment the following lines to fix error
    //cbOne.textField.setStyle("textFormat", cbTextFormat);
    //cbOne.textField.setStyle("embedFonts", true);
    function errorHandler(e:IOErrorEvent):void {
    trace("XML Loading Error: " + e);
    init();

  • No audio when published to HTML 5

    Hello,
    Im using Captivate 7.  I have a project with a video that has audio in the video, and also a couple small audio clips that are all on different pages, these are activated through an click button.  The problem is when I publish to HTML 5 I lose all audio.  The audio in the video is gone and the audio on the buttons is gone.  If I publish to SWF all the audio is available and working correctly.   It does not matter if I play the HTML on a mac, pc, ipad, etc etc there is no sound.   The thing that is really stumping me is when I play the project through captivate the audio is correct, it is just when I publish all audio is gone.
    Any ideas?
    Thanks,

    MMDENT,
    I did not have audio attached to an image.  The audio was 3 slides in and was a youtube streamed video an advanced action for when correct they got a clapping sound.
    The corrupt image came from the preloader image.  File>project info>start and end.
    The way I found this was by going through each property one by one until issue was found.

  • Problems with margins when publishing to a site

    Hello,
    I have been working on a company manual for our customers using RoboHelp. Everything has been created and has gone smoothly with one small exception. What we have is a website created from RoboHelp and we have links elsewhere to specific HTML pages from this site. The pages appear fine without setting margins on the site however when the file itself is accessed through a link there are no margins. When margins are set on the HTML to lets say 1 inch and you access the file through a link the page appears perfect and just the way I want it however when you access that same page thru the RoboHelp created site the text is distorted since it is trying to fit within a specified pane.
    My question is how can I create margins on the page so that they appear when accessing the HTML file directly and in printed documentation and still have the text fill the entire frame on the site. Is this done by editing the frameset or am I missing something simple here?
    Thank you!

    Hi there
    Please insert some screen captures depicting the desired and undesired looks you are seeing. Is this related to just online viewing or is it printed output you are asking about? You seem to be using the two interchangably and it's a bit confusing.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • IMovie '11 problem with audio when publishing to youtube or exporting, help

    I recently got iMovie '11 and its kinda buggy. One problem is when you try to publish a long (above 1 min.) the audio periodically skips forward in the video, but when you play it directly from imovie there is no problem. is there a way to fix this or get around it, because it is super annoying.

    I have been having the same problem. I have been using a PC for the past 5 years and using Pinnacle Studios, I had a Mac before using the PC but never owned one , I finally bought one during Thanks giving and started working on my next video on iMovie. Everything runs great but when you play back the video on imovie without moving the mouse or pausing it , some areas of the video itself, NOT THE SONG, will be cut off but when i put the mouse over the clip that has sound its there!!! What i finally did was import the video to my pc find every clip that had missing sound and put the sound in one by one. and all videos are the same file! if you want to see the that had missing audio here it is:
    http://www.youtube.com/watch?v=gpoiLjcpl00
    heres the video after i fixed everything:
    http://vimeo.com/17393739
    let me know what u guys think! please!

  • Getting a black screen when publishing in html or preview in browser

    Hi,
    Can anyone help. I am trying to publish a file that I converted from a captivate 4 file. It si a basic file with click boxes, captions and failure boxes. i also have 2 introductory slides with a slide BG, and animated text. (I need to go back and read that post about that). Can anyone help solve this problem? I cannot even preview via browser from withing c5.
    Thanks for looking!

    Try updating your Flash Player to the latest version.
    This black screen issue was first discovered several months ago after the first Flash Player 10 release.  It was caused by a conflict between the new Flash Player and Text Animations in Captivate.  Adobe issued a patch for Captivate 5 that required republishing content to fix the conflict.
    http://www.adobe.com/support/captivate/downloads.html
    Newer versions of Flash Player do not result in the same conflict, but you should still patch Captivate 5 and republish to be safest.

  • Widget (interaction) size and font issues when published in HTML 5

    I'm using Captivate 7 and when I create and preview widget interactions (accordian, tab, etc.) the sizing and font look correct. However, when I publish it to HTML 5, it is not the right size, is left justified rather than centered, and does not have the custom font (defaults to Arial).
    Is there anything I can do to fix this? Please help!

    Adobe writes inline css for the font on that widget, in the CPM.js file. You's have to create a new class and and write your own rules using @font-face to ensure end-users can use the font. SWF files can embed fonts, but html does not.
    If the user doesn't have to font you use it will default.
    This is an example of how the Header title and instruction of the widget is written:
    <headerTitle><font face="Arial" style="Arial" size="23" align="LEFT"/>
              <textDecoration bold="true" underline="false" italic="false"/>
              <color textColor="0xffffff" highlightRequired="false" highlightColor="0xffff99" highlightState="false"/>
            </headerTitle>
    <headerInst><font face="Georgia" style="Georgia" size="14" align="LEFT"/>
              <textDecoration bold="false" underline="false" italic="true"/>
              <color textColor="0xb9dff6" highlightRequired="false" highlightColor="0xffff99" highlightState="false"/>
    </headerInst>

  • Slides missing when published to avi - HELP!!

    Hi there
    I've got a huge problem that I jsut can't fix - for two of my Captivate 4 projects, there are whole batches of slides missing (12 in a row is the worst case) when I publish the project as an AVI
    I've been working on 12 seperate projects, each containing between 10 - 50 slides, with some audio, FMR and text captions (basically, nothing too complex, as I'm a first time user).
    For at least two projects, when I publish to AVI (full frames, uncompressed), the videos just miss whole seconds of footage - there is no gap or silence, and the footage just continues from, say, slide5 straight into the second half of slide14 without a pause or noise.
    The project is PERFECT when previewed fully, and when it plays and records itself before the publishing begins. Infact, I've exported it before with no issues.
    Any ideas what's going on? Are they just corrupted?
    I've tried re-importing the audio on the missing slides, adjusting the slide durations slightly, and basically fiddled with them, but each time I publish, the missing gap is EXACTLY the same.
    the only thing I can think of is that I recently copied the whole project folder (with all the linked audio copied over into the same folder directory) from my network drive to my local drive. But as I said, I have other projects that have no, or only insignificant issues during publishing and they were also copied over in the same way.
    Tearing my hair out with Captivate at the moment!!
    Any help much appreciated!!

    I've experienced this type of frustration publishing to SWF format in Captivate 3 which, of course, cannot export to AVI format. I don't know if the solution I've tried will work in Captivate 4, but it's worth a shot.
    It was definitely a glitchy thing in Captivate where the program just lost its mind and was ignoring the slides as they were setup. (That's not a professional diagnosis.)  In a couple cases, I had to recreate the slide,  from scratch, where the issue began and delete its doppelganger. That stopped the issue from starting and the following slides fell in line.
    Another time all I had to do was move the audio clips around on the timeline. It was important that I released the clip in a new location before returning it to its original start point. I had to do this on all the affected slides.
    There had to be some sort of corruption going on, but these two options helped me at different times. I hope one of them works for you, Robert.
    -Marty

  • Picture hyperlinks not working when published? Please help....

    Some of the hyperlinks to my pictures do not work when I publish to my folder. I´ve tried to empty Safaris cache but it still doesn´t work. Please help me, pretty urgent....

    hi briebrie,
    this is common mistake, see my post in this thread:
    http://discussions.apple.com/message.jspa?messageID=4004970#4004970
    The work around is to leave iWeb default nav bar and header enabled, add your home made nav bar (outside/below of iWeb default nav bar).
    Then turn off iWeb nav bar and header when you are done.

  • Problem with text when publishing as an animated .Gif

    I am using Flash CS4 to create a simple 300px250x animated web banner.
    Everything works fine when I am in flash and when I export my file as a .swf,
    but when I export my movie as an animated .gif, the text becomes a solid box of color...
    any ideas why?
    I created the text in flash, then converted it to a symbol...
    the animation is a simple scroll and fade in.
    Could it be because the text is too small or is there something else?
    Really hoping someone can give me some insite into this, thanks!

    Hi,
    Try exporting your file with the following settings to get a high quality GIF
    Dimensions   : Match movie
    Playback       : Animated
                        : Loop continuously
    Options         : Optimize colors
                        : Smooth
    Transparent   : Opaque
    Dither           : None
    Palette Type : Adaptive
    Max colors   : 99999
    Thanks!
    ps: please mark this post as Answered if this of any help to you

  • Problem with Adobe Reader 9 and HTML Help, IE 7 and Firefox

    Hello everyone
    I have some Problems with the Adobe Reader 9.1.0 and different browsers.
    If I want to open a PDF document in one of these browser the browser-window freezes for 30 seconds and the document is built-on line by line.
    The Trouble is that if the document is comlete loaded an i want to scroll down, the windows freezes again and the document starts again with built-on...
    I have tried to open the documents with Reader 8.1.3 and this works fine, but i need to open the documents with Reader 9.1.0 because this is a customer preference to open the document with the newer version!
    Sorry for my english but i hope my problem is understandable :-)
    Does anyone know how to solve this problem?
    kind regards
    Marcel

    1. It happens with any file i want to open in browser.
    2. The Problem is specific to browser. When I open a document in the Reader application everithing works fine.
    kind regards
    Marcel

  • Problems with soundtrack when publishing from imovie to idvd

    When I publish to file or idvd the sound track that is turned off in imovie will play on the published version. It doesn't play on imovie, but plays in background of any format that I publish the project in. How do I get rid of this background sound?

    Thank you for the information.
    The thing is that he sends me an iMessage, while I send out an SMS!
    What I've done is: I have disabled his iMessage and mine too. Had them both enabled and then it was all fine!
    Very strange but somehow it worked for me...
    I hate the developers of IOS, at least they are better than the Android ones

Maybe you are looking for

  • How to print a bullet in smartforms?

    Hi All, How to print a bullet in smartforms? I need it urgently. Any help would be appeciated. Regards, Mahesh.

  • Problems Setting up a Direct Debit

    has anyone experienced any problems setting up a direct debit ?? I've been a BT customer for approximately 20 years and have had the same account number. I've moved house a few times and retained the same account. My last house move wasn't so success

  • NetWeaver 7.0 ABAP Trial Version SP12 under Windows VISTA

    Hi, short question as I have to buy a new PC, is it possible to run New SAP NetWeaver 7.0 ABAP Trial Version SP12 under Windows VISTA and if yes, are there some installation instructions available? When does SAP plan to release an version which will

  • I cannot import movies or videos into itunes library

    please help me out in viewing videos in itunes asap...!!! this is the screenshot of thng tht appears when i open for movies in my itunes library.. i have videos of mp4 format which are coverted using converte and itunes which i use in my pc is latest

  • Self referencing tree flavoured with another table

    hello community, sorry for stupid thread title, but I can't find the right description for what I want to do atm :) I'm trying to create a tree from a self referencing table, but in addition I have to display childs with data from an aditional table