Preloader modification tutorial

Hi everyone.
Just wondering if anyone has a detailed tutorial on how to
modify the preloader so that it loads 40% of the content rather
than the stock 60%. A detailed tutorial is the key here, as I have
very little experience using flash MX. Thanks guys
Also, is there anything else that can be done to improve
overall performance. I've searched these forums and have come up
with the following modifications:
1) Modify preloader
2) Remove pre-loading screen
3) Decrease video and slide size
4) Split longer presentations in half
5) Use BMP buttons/interface.
Can anyone else contribute or add to this list. I'm looking
for additional performance enhancing modifications.
Thanks in advance for any advice.

Captivate files still load 100% before playing even though
I'm using a preloader. What's going on?
I've modified the preloader by changing the stock 60% to 20%.
I published it as swf and then put it in a large captivate 3
project and published it.
Strangely, the captivate swf loads 100% before it starts
playing...
The preloader loads up right away and plays, counting up to
20%. At 20%, the preloader disappears and I'm left with just a
blank placeholder while the rest of the captivate file loads. Once
it has fully (100%) loaded, it plays.
I thought the preloader and the % loaded set in it were
supposed to start it playing while it was still loading?
Is there something I'm doing wrong?

Similar Messages

  • Problem with preloader from tutorial in flash 8

    when i open preloader in flash 8 from section developers for
    flash, it dosn't work.
    and trace message
    but in mx 2004 work ok
    what problem?
    **Error** C:\Documents and
    Settings\Артем\Local
    Settings\Application Data\Macromedia\Flash
    8\en\Configuration\Classes\mx\events\EventDispatcher.as: Line 15:
    The name of this class, 'mx.events.EventDispatcher', conflicts with
    the name of another class that was loaded,
    'mx.events.EventDispatcher'.
    pls give advice about this question

    You may need to purge your ASO files. This can be can by
    manually deleting them or force Flash to do it. TO purge them using
    Flash 8 go to, Control>Delete ASO Files.
    To manually delete them and if you are using a Flash version
    below 8 go to the link below;
    http://www.adobe.com/support/documentation/en/flash/mx2004/releasenotes.html
    …and scroll to “Flash MX 2004 Update and Flash MX
    Professional 2004 Update, version 7.0.1.
    If you have Flash MX 2004 version 7.2. you can install this
    plug-in that will force Flash to purge them on command;
    http://www.adobe.com/cfusion/exchange/index.cfm?view=sn111&extID=1016963

  • Beginner: AS3 Pre-loader in Flash

    I have a simple 1 scene flash intro to be included on the website. I would like to include a pre-loader, but I am an extreme newbie.
    Here is the link to the animation: http://www.fwdvd.com/evan/flash/flash.html
    I want the logo's opacity to fill up as the animation loads and then play once it's loaded.
    Any help on where i can find AS3?

    Here's a link to an AS3 preloader video tutorial.  http://www.gotoandlearn.com/play?id=85
    You should go to the main page of this site as well as there are a number of good tutorials there that may be of interest to you some time in the future... if you read thru the titles of the offerings you'll at least have some potential to recollect what's available there.

  • Cafe Townsend Tutorial Modification

    Help! I'm trying to put together a simple picture slide show
    very similar to the flash_fma.fla file found in the Cafe Townsend
    tutorial—but automated, with just a pause between the change
    in images, and not using the next button. I know there must be
    samples of that simple file type out there somewhere, but I can't
    seem to find any, and I'm not yet familiar enough with the
    ActionScript syntax to know what would be the best way to go. Can
    anyone give me some advice or point me to an example file? The Cafe
    Townsend file uses the stop() function in each of the image
    keyframes and addEventListener to move the images with a button
    click in the actions layer.
    Thanks,
    Gene Ryan

    sounds like you may have crossdomain issues - serach help for
    crossdomain.xml file
    "jason_sot" <[email protected]> wrote in
    message
    news:eo4ihs$r68$[email protected]..
    >I am fairly new to flash but had created a biz proposal
    mimicking the cafe
    > townsend tutorial. I created a web page to display the
    swf file and
    > uploaded
    > it. Once uploaded, the swf file is not pulling in the
    external images. I
    > duplicated the structure on a testing server and it
    works perfectly but
    > when i
    > post it to our server, the background images are not
    showing up.
    >
    > I found this page
    >
    http://livedocs.macromedia.com/dreamweaver/8/using/wwhelp/wwhimpl/common/html/ww
    > help.htm?context=LiveDocs_Parts&file=gs_05_a9.htm
    > where comments are posted about some other people having
    the same issue
    > and
    > one guy that says he figured it out. Me and our IT guy
    have been messing
    > with
    > this ALL DAY LONG and have not found any way to get the
    images to show.
    >
    > Any ideas??????
    >

  • Problem with Preloader in my Flash AS2 Game

    I have been using this tutorial to make a preloader:
    http://www.republicofcode.com/tutori.../preloader_bc/
    I have run into one problem though.
    When I simulate the download, it just shows the background color of the game while it loads, and when it finished loading, it shows the loading screen fully loaded. I have followed the tutorial exactly, except added my file names into the AS2 code.
    Here is the ActionScript in Frame 1 I have for the preloader:
    if (_root.getBytesTotal() != _root.getBytesLoaded()){
    stopAndGoto(1);
    preloaderBar._xscale=(_root.getBytesLoaded()/_root.getBytesTotal())*100;
    loaderTxt.text=Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100)+"%";
    Any hints or answers to what i'm doing wrong?
    Thanks, MrA615.

    Your description of what you've done and the code you show does not match what the tutorial says to do and what code to use... (there is no stopAndGoTo() function in Flash).
    Right-click the second frame on the upper layer labeled Actions and select Actions. Copy and paste the code below to make our preloader functional.
    if (_root.getBytesTotal() != _root.getBytesLoaded()){
    gotoAndPlay(1);
    bar_mc._xscale=(_root.getBytesLoaded()/_root.getBytesTotal())*100;
    loader_txt.text=Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100)+"%";

  • Problem with preloader

    hello, I´m using a preloader created using the technique
    shown here...
    http://www.gotoandlearn.com/play?id=18
    It worked fine last time I used it, but this time, the
    preloader only shows up after about 60% of the page has already
    loaded, which might be too long.
    My question is, is there anyway to avoid that?
    Maybe adding a updateAfterEvent somewhere in the AS code?
    thanks.
    PS: here is the code used...
    on frame 1...
    var amountLoaded:Number = _root.getBytesLoaded() /
    _root.getBytesTotal();
    preloader._width = amountLoaded * 400;
    on frame 2..
    if (_root.getBytesLoaded() == _root.getBytesTotal()) {
    gotoAndPlay(3);
    else {
    gotoAndPlay(1);
    }

    Haven't watched the mentioned tutorial, but in the old days
    preloaders
    used to stop working properly because of movieclips that get
    exported
    before frame #1. Those movieclips are loaded even before your
    preloader
    is loaded and run, effectively distorting the
    bytes-to-load/total-bytes
    ratio.
    Check your library for such movieclips (under "linkage") and
    tell us if
    there are any.

  • How can I get a preloader to launch a main (external) swf file, and have the main file remove the preloader once it's fully loaded?

    Using Flash MX, ActionScript 2:
    I’ve been struggling for several weeks, trying to get a preloader to work on a large (~80 MB) photo portfolio file (using the method where the preloader is on frame 1 of the file, and when loading is completed, it jumps to the content).  I’ve done countless tutorials, and none seem to work on my presentation.  I even tried downloading a trial version of CS4 so I could export every one of the file’s library movie clips and images so that they load on Frame 2 (a feature MX doesn’t have).  It takes about 20 seconds for the .exe to load from a CD, and no matter which preloader construction I use, it always seems to appear in the last few seconds before the movie loads completely.  During the initial wait time, there’s no indication that anything is happening:  no hourglass on the mouse, and not even a blank screen. This is only true for the first time that the file is loaded from the CD; on subsequent loads, the file must already be in RAM, because it loads within a few seconds. 
    I decided that I’m going to try and make the file which the user clicks on (one named Windows_Portfolio.exe or another called Mac_Portfolio.hqx) the preloader so that it would be tiny, and would load instantly.  I want that file to launch the external huge portfolio file (renamed files.swf), keep track of its loading progress, and cycle through a slideshow (10 thumbnail images that transition into each other over 100 frames) proportionally, based upon the percentage of files.swf that had been loaded.
    I assume that there should be a loadMovie() or a loadMovieNum() command on the preloader’s timeline to launch files.swf, and that the initial code of files.swf should have some sort of this._parent._visible=false or other way of deleting the preloader on level0.  Can anyone explain the steps to me, or direct me to a good Flash MX tutorial that explains how to launch another external swf from a preloader .exe, keep track of its load progress, and delete the preloader .exe once the external swf had been loaded?
    Also, I’ve read that, using this construction on a CD, every file has to be in the same place, and that I can’t nest files.swf in a folder named “files,” and reference it with files/files.swf.  Is this true?
    Thanks for any assistance you can offer.

    If you know JavaScript (ECMA Script) then you might be able to get it done applying a for loop and a random function
    to the for loop if you know how to get a page-loaded request into JavaScript.
    But an easier solution, if you know ActionScript 3.0, and if your SWF's don't need to be recoded and can load into a "container" SWF would be to create a master FLA file that loads your SWF's in a random fashion using Math.random() as a multiplier, though you won't see much variation if you only have 2-3 SWF's to load--if you had more than that then you would begin to benefit from the random function's capabilities.  In ActionScript 3.0 use the load() method along with addChild() to load the SWF and add it to the stage.  You will be able to search for specifics on how to code the FLA properly by using Flash's Adobe Help tool and also using an internet search.
    -markerline
    P.S. Once you have the master FLA coded you can Publish it to an SWF and an HTML and if the container/master SWF needs to be in a page with other content you can simply copy and paste the object and embed tags for the container SWF from the published HTML into any place on your master HTML that you need it to reside.  You can then use CSS to control placement of the SWF object if it is in a div tag.

  • Add An Enter Button To a Preloader

    On my site I have 2 scenes and I'd like to add an 'Enter' button for moving from the preloader to the main site. How would I do that in this code?
    stop();
    preloader._width = 0;
    preloader._visible = preloader_bg._visible = true;
    preloader.onEnterFrame = function()
        filesize_total = _root.getBytesTotal();
        if( filesize_total == 0 ) filesize_total = 1;
        percent = Math.round( _root.getBytesLoaded() / filesize_total * 100 );
        txt = percent + "%";
        preloader._width = percent * 3;
        if( percent == 99 )
            delete this.onEnterFrame;}
    enter_btn.onPress
         gotoAndPlay("flashmo_dream", "start");

    I don't know where you are getting these tutorials, but they sound like they are very, very old. Along with not using AS2, you shouldn't be using scenes. Scenes are a left over method from the very earliest versions of Flash.
    The objective in preloading content is that you are loading in new content before the user needs it. If you are doing this loading well, the user will not know that the operation went on. Any sort of loading screen should only be seen if the user calls for content that has not loaded yet. Your design objective should be to show something to the user as quickly as possible when the user hits your site. Load in your additional content and then let the user experience your site.
    If you create a button on the stage in the same frame as your preloader object and name that button "enter_btn", then the code that you've shown above should do what you want.
    I haven't used AS2 in many years. I don't remember a lot about its syntax, but from what I read of your code, it looks like you are measuring the loading of the file that contains the preloader object. This methodology can lead to a problem. When Flash begins working, a certain amount of the movie has to load before anything is seen on the screen. This means that the loading telltale that you have set up in your code will never show "0%", and probably not even "50%".
    Here's a good tutorial that uses AS3 and fully explains the code and how the loader operates: http://flashexplained.com/preloaders/basic-loading-bar-preloader/
    Here's another: http://www.republicofcode.com/tutorials/flash/as3preloader/
    And here's a third: http://flashexplained.com/preloaders/making-the-complete-internal-preloader-in-flash-8-wit h-a-loading-bar-and-mathematical-preloaders/
    Take a look at those examples and compare and contrast their methods.

  • New IMac preloaded with Lion, how do I load Lion on my Macbook

    I bought an IMac preloaded with OS 10.7.4 and want to load it on my Macbook Pro.  Since it didn't come with a disc how do I go about doing this?
    Thank You

    You cannot use the Lion that came with your iMac to also upgrade your MBP. You must purchase a separate upgrade for the MBP. Your MBP must be running Snow Leopard 10.6.6 or later in order to purchase and download Lion from the App Store - $30.00.
    Or you can wait until Mountail Lion is released this month and upgrade directly for $20.00.
    How to Install Lion Successfully - You must have Snow Leopard 10.6.7 or 10.6.8 Installed
    A. Repair the Hard Drive and Permissions:
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. Then select Disk Utility from the Utilities. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally. 
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.3.) if DW cannot fix the drive, then you will need to reformat the drive and reinstall Snow Leopard.
    B. Make a Bootable Backup Using Restore Option of Disk Utility:
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the backup volume. Source means the internal startup volume.
    C. Important: Please read before installing:
    If you have a FireWire hard drive connected, disconnect it before installing the update unless you will boot from this drive and install the update on it. Reconnect it and turn it back on after installation is complete and you've restarted.
    You may experience unexpected results if you have installed third-party system software modifications, or if you have modified the operating system through other means. (This does not apply to normal application software installation.)
    The installation process should not be interrupted. If a power outage or other interruption occurs during installation, use the standalone installer (see below) from Apple Downloads to update.  While the installation is in progress do not use the computer.
    D. To upgrade to Lion:
    Purchase the Lion Installer from the Mac App Store. The download will start quickly. Lion is nearly 4 GBs so a fast internet connection is essential. Download time could run upwards of 4 hours depending upon network conditions and server demands at the time.
    Boot From The Lion Installer which is located in your Applications folder.
    Follow instructions for installation.

  • Flash CS4/AS3 - How to use a preloader with FLVs?

    Somehow I've had a really hard time finding a straightforward forum answer or tutorial for this--maybe someone can help?
    I have an SWF file that references/loads an external FLV file (www.44designs.com/promo_video.php), but since the FLV file is about 9MB and can take time to load on a slower connection, I think a preloader (something simple like "LOADING...100%") would be a good idea as the FLV loads.
    Anyone have a simple way to do this??  I've had no success in finding what I need--just scripts for loading SWFs.  You can see an example of this on www.44designs.com where a preloader script I've got seems to be referencing the SWF (thus loading almost immediately) instead of the much larger external FLV.  Make sense?  I'm not super AS3 savvy, but I can follow logic and cut and paste

    Great info, thanks for the post!

  • Preloader in Document Class Help.

    Hello,
    I want to know that how can I add a Preloader to my existing document class. In my FLA all content is on 1st Frame. I'm loading an external image to a MovieClip which is on 1st frame and on stage. My document class is working fine but when i try to add any preloading script, its not working...
    Can any one please help me in this regard..
    A Garden of Thanks.
    My Document Class is here...  (This was also a tutorial which I'm using..)
    package com.ahmad.bg
         //import all classes
         import caurina.transitions.Tweener;
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageDisplayState;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import flash.events.MouseEvent;
         import flash.net.URLRequest;
         public class MainClass extends MovieClip
              //create variables
              private var loader:Loader;
              private static const IMAGE_PATH:String = "bgs/bg.jpg";          
              public function MainClass() {
                   stage.align = StageAlign.TOP_LEFT;
                   stage.scaleMode = StageScaleMode.NO_SCALE;               
                   stage.addEventListener(Event.RESIZE, stageResize);          
                   //load external image
                   loader = new Loader();
                   loader.load(new URLRequest(IMAGE_PATH));
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, showImage);
                   pic.addChild(loader);     
              private function showImage(e:Event):void
                   try {                              
                        e.target.content.alpha = 0;
                        Tweener.addTween(e.target.content, { alpha:1, time:1, transition:"easeOutSine" } );                    
                        e.target.content.smoothing = true;                              
                   } catch (e:Error) { };
                   stageResize();
              private function stageResize(e:Event=null):void
                   pic.x = 0;
                   pic.y = 0;
                   pic.scaleX = pic.scaleY = 1;               
                   if ((stage.stageHeight / stage.stageWidth) < pic.height / pic.width) {
                        pic.width = stage.stageWidth;
                        pic.scaleY = pic.scaleX;
                   } else {
                        pic.height = stage.stageHeight;                    
                        pic.scaleX = pic.scaleY;
                   pic.x = stage.stageWidth / 2 - pic.width / 2;
                   pic.y = stage.stageHeight / 2 - pic.height / 2;          
                   //my bottom navigation
                            bottomNav.x = Math.floor(stage.stageWidth / 2 - bottomNav.width / 2);
                   bottomNav.y = Math.floor(stage.stageHeight - bottomNav.height - 0);

    package com.ahmad.bg
         //import all classes
         import caurina.transitions.Tweener;
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageDisplayState;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import flash.events.MouseEvent;
         import flash.net.URLRequest;
         import flash.events.ProgressEvent;
         public class MainClass extends MovieClip
              //create variables
              private var loader:Loader;
              private static const IMAGE_PATH:String = "bgs/bg.jpg";          
              public function MainClass() {
                   stage.align = StageAlign.TOP_LEFT;
                   stage.scaleMode = StageScaleMode.NO_SCALE;               
                   stage.addEventListener(Event.RESIZE, stageResize);          
                   //load external image
                   loader = new Loader();
                   loader.load(new URLRequest(IMAGE_PATH));
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, showImage);
                   loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preload_image, false, 0, true);
                   private function preload_image(event:ProgressEvent):void
                          var per = int((event.bytesLoaded / event.bytesTotal) * 100);
                          pic.addChild(loader);
                          //make a textfield or preloader animation and assign this per to it.
              private function showImage(e:Event):void
                   try {                              
                        e.target.content.alpha = 0;
                        Tweener.addTween(e.target.content, { alpha:1, time:1, transition:"easeOutSine" } );                    
                        e.target.content.smoothing = true;                              
                   } catch (e:Error) { };
                   stageResize();
              private function stageResize(e:Event=null):void
                   pic.x = 0;
                   pic.y = 0;
                   pic.scaleX = pic.scaleY = 1;               
                   if ((stage.stageHeight / stage.stageWidth) < pic.height / pic.width) {
                        pic.width = stage.stageWidth;
                        pic.scaleY = pic.scaleX;
                   } else {
                        pic.height = stage.stageHeight;                    
                        pic.scaleX = pic.scaleY;
                   pic.x = stage.stageWidth / 2 - pic.width / 2;
                   pic.y = stage.stageHeight / 2 - pic.height / 2;          
                   //my bottom navigation
                   bottomNav.x = Math.floor(stage.stageWidth / 2 - bottomNav.width / 2);
                   bottomNav.y = Math.floor(stage.stageHeight - bottomNav.height - 0);
    Oh.. Thanks.. its working now... Thanks aloooooooooooooot.....
    Any other tip if you have a time to give me will be a greatful to you...
    Thanks again for your precious time.. I've seen your Awesome Portfolio at your website....

  • Looking for a preloader that would work with my fullscreen (liquid) flash

    Hi!
    I'm building my own Flash website using a fullscreen (liquid
    layout) Flash tutorial that I found somewhere (can't remember
    where)...
    I was having problems with a preloader that I've been using
    (modifying) for my Flash jobs... I decided to keep working on my
    website anyway and get back to that later... But now it's just
    annoying me and I'd really love to figure out how to get a
    preloader to work with my site.
    My site is not complete yet, and it's probably not built the
    best way it should (my first full-flash website!.. plus I'm a
    designer, I really suck with code) but here's a link to download my
    zipped .fla file (Flash CS3) + fonts (don't know if you need that
    but anyway):
    http://www.studioorangedesign.com/SOD_site.zip
    Hopefully, you guys can tell me how I could get a preloader
    to work with my site.
    All I really need is to have a really simple clean font that
    shows a percentage going up or a bar filling up... nothing fancy
    needed here...
    Thanks!

    Hi there,
    The following code is what I use for preloading. You have to
    put it on the first frame. I think you will be able to attach it to
    your own code.
    //Actionscript 3
    stop();
    this.addEventListener(Event.ENTER_FRAME,testInterval);
    function testInterval(e:Event):void{
    var nLoadedBytes:Number = loaderInfo.bytesLoaded;
    var nTotalBytes:Number = loaderInfo.bytesTotal;
    //trace (nLoadedBytes / nTotalBytes * 100)
    percent.text = Math.round(nLoadedBytes / nTotalBytes * 100)+
    “% complete”;
    //trace (nLoadedBytes / nTotalBytes * 100)
    if (nLoadedBytes >= nTotalBytes) {
    trace(”load complete”);
    this.removeEventListener(Event.ENTER_FRAME,testInterval);
    play();
    //End
    Creation site internet |
    Radins
    |
    Jeux Concours |
    Programme TV

  • Add a preLoader to an Image.

    Can any one help me?
    I want to add a preLoader to individual images in a flash
    movie. For example, all the image will be on the site, in separate
    category's. i.e. "photography", design, "wedding photography" and a
    whole lot more. I don't want to add a preLoader to the start of the
    movie, it will take to long. I want a preLoader on each image. A
    person will click on a category, be taken there, the first image
    will show up, with preLoader, move the mouse to see the menu of all
    the images click on the one they want, it preLoads and so on and so
    on. Hear is a perfect example of the effect I'm after>
    http://abbyross.com/
    Can anyone point me in the direction of a good tutorial that
    can help me??

    MovieClipLoader class will load the images externally,
    therefore helping with file size. and you can use onLoadProgress to
    display some sort of loading animation and onLoadInit to do
    something once the first frame has executed.

  • Flash Photogallery with preloader PLEASE HELP!!!

    Ok...So after searching quite a bit I found a decent flash tutorial to help me make a photogallery. The only problem is that it takes quite sometime to load. I would like to create preloader for this swf file but I can't get anything to work. Here is the code for my gallery....Found at the bottom of the page at this site...
    http://www.republicofcode.com/tutori...egallery/4.php
    This all works just fine...but no matter what I do I can't seem to get a preloader for this code to work. If I load a simple image in the second frame it works fine, however if I move my flash gallery to second frame it just goes to my gallery after loading...(which takes a while)..no preloader bar or anything!  Here is a link to my site... www.nakean.com visit the blank page for the photo gallery...you have to wait a bit for it to load.  (15 seconds)..Please Please HELP!

    rename your gallery to something other than galleryinprogress.swf, say gallery.swf.
    in flash create a new fla named galleryinprogress.fla with the same stage size and background color as your previous galleryinprogress.swf and attached to frame one of your new galleryinprogress.fla add:
    var tf:TextField = this.createTextField("tf",1,0,0,100,40);
    tf.autoSize = "center";
    tf._x = Stage.width/2;
    tf._y = Stage.height/2;
    this.createEmptyMovieClip("mc",1);
    mc.loadMovie("http://homepage.mac.com/nakean/.Public/swf/gallery.swf");
    preloadI=setInterval(preloadF,100);
    function preloadF(){
    tf.text=mc.getBytesLoaded() +" bytes loaded out of "+mc.getBytesTotal()+" bytes total.";
    if(mc.getBytesLoaded()>0&&mc.getBytesLoaded()>=mc.getBytesTotal()){
    clearInterval(preloadI);
    tf.removeTextField();
    publish your new galleryinprogress.swf and upload to the same directory as your previous (but now renamed) galleryinprogress.swf.

  • Mail subject modification for smart-form SMIV

    Hi Experts,
    We have implemented ServiceDesk in Solution Manager 7.1 SPS 08 & are using automatic notifications to be generated as alert emails to the customer key users / service desk support team / message processors etc.
    We are using Actions under transaction SPPFCADM, which is using smart-form AI_CRM_IM_SHORT_TEXT_LINK_FORM for the email content.
    We need to modify the notification mail subject as follows - 
    Current Mail Subject – 80000xxxxxx : <Incident Description>
    Required Mail Subject – 80000xxxxxx : <Incident Description> : <Incident Status>
    Can you please suggest, how this can be achieved? What modifications are needed in smart form for the same?
    Best Regards,
    Tanmeya

    Hi Tanmeya,
    Go through the following Links, here u can find example with step
    by step.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Check these links also.
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    https://scn.sap.com/thread/499311

Maybe you are looking for

  • Losing carriage returns in textarea / using plpdf to generate report

    Hello, I'm using Apex 3.1.1 and Oracle 10g database. I would appreciate any suggestions on how I can preserve carriage returns in a textarea when sending the text to a package that generates a report. Please see example of current problem (below code

  • Using LDAP as security realm

    Hi, Our goal is to use LDAP(Iplanet Directory Server 5.0) as a security Realm for Weblogic Personalization and Commerce 3.5. Using the WLCS console, I've modified the config.xml file and following elements are added: <LDAPRealm AuthProtocol='simple'

  • Count number of rows in table

    Hi! 1. How can you through ABAP and select statements count the number of rows in one table? 2. I want to read all rows from one table to an internal table. Can this be done dynamically or do I first have to count the number of rows in the table and

  • Creating sets to load hierarchy data to BW

    Hi, I was able to create sets using GS01 and change set using GS02, create a Datasource, and load the data as an hierarchy in BW. My question is creating and changing sets is a manual process using these transactions, so what's the point of doing thi

  • Screensaver Slideshow Stuck on 2 photos

    When we run our screensaver slideshow, it will run fine for a little while and then always gets stuck on just two photos (not the same every time). It will slideshow just these two photos from that point on, unless you restart the slideshow. Any idea