Loading transparent swf through swf REFdn3005773759

How to load a swf from another swf (I mean, from another AS code, not from html code), in order to be transparent? What properties should I have in loaded swf and how should I load it in order to be transparent?
With word transparent, I mean, the color of the stage of the loaded swf must be transparent.
Also, with this way of load, it is possible to play with “alpha” property?

Hi, thank you for your reply.
I did it, I work now with SWFLoader, but the stage still remains not transparent. Bellow is the mxml code of the loaded swf.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="598" height="200"  cornerRadius="20" >
  <mx:Image width="128" height="130" scaleContent="true" x="10" y="10">
    <mx:source>http://www.infodyn.com/images/info_invent_main_logo_300.jpg</mx:source>
  </mx:Image>
  <mx:Canvas x="146" y="10" width="444" height="180" backgroundColor="#646464" borderStyle="solid" borderThickness="3" borderColor="#CECECE">
    <mx:Label x="10" y="10" text="Info" fontFamily="Arial" fontSize="34" color="#BFBFBF"/>
    <mx:Label x="10" y="50" text="constructions" fontFamily="Arial" fontSize="18" color="#BFBFBF"/>
  </mx:Canvas>
</mx:Application>
I do not apply any background color (I think so). Note that the Canvas is a simple container that doesn't cover the whole stage!
Here is the code where I load the swf:
          aboutInfo = new SWFLoader();
          aboutInfo.load("form_about_info.swf");
          aboutInfo.alpha=50;
          aboutInfo.addEventListener(MouseEvent.CLICK, HandleCloseAboutInfo);
          mxmlApp.addChild(aboutInfo);
The swf is loaded and appeared succefully but the its stage is not transparent.
The "alpha" also didn't work at all!
I am working Adobe Flex Builder 3, the colors of the Stage of the loaded swf is the default blue color. Where does this color defined?
Best regards
Dn

Similar Messages

  • Load transparent swf

    Hi there.
    I have a .swf in which i load html content through xml file.
    I want o load this .swf in my main.swf, which i do by creating a container.
    I want the loaded .swf to be transparent.
    Can i do this?

    Using the onEnterFrame that way is incorrect, and for what you are trying to do, it is incorrect and inefficient to use it at all.
    My first suggestion would be to manage the alpha value of the bg_mc within the swf file it is in, not externally from the main swf.  Just set its alpha to whatever reduced value you intend via the properties panel.
    If there is some reason you need to change its alpha from the other swf, then you need to wait until the file is loaded before you can do that.  Since you are using the MovieClipLoader finction to load the swf, you are one step closer to being able to detect when the file has loaded.  Look up the MovieClipLoader.addListener() method for an example of how to detect when a file has finished loading.

  • How to load and unload same SWF with different xmlFilePath?

    I have a slideshow on my homepage and try to load and unload same instance with different xmlFilePath based on language on the same page.
    var flashvars = {
            xmlFilePath: escape("http://www.bodto.com.tr/kik.aspx"),
            xmlFileType: "OPML",
            lang: swfobject.getQueryParamValue("lang")    
            //initialURL: escape(document.location)   
          var params = {
            bgcolor: "#000000",  
            allowfullscreen: "true",
            wmode:"transparent",
            allowScriptAccess: "always"
          var attributes = {}
              swfobject.embedSWF("/swf/slideshowpro.swf", "flashcontent", "550", "400", "10.0.0", false, flashvars, params, attributes);
    Actionscript3
    var langPath = root.LoaderInfo.parameters["xmlFilePath"]+root.LoaderInfo.parameters["lang"];
    my_ssp.xmlFilePath = langPath;
    var fileType = root.LoaderInfo.parameters["xmlFileType"];
    my_ssp.xmlFileType = fileType;
    Based on above informations, how could I achieve it?

    Suddenly that code in the following gives me some error
    var langPath = root.LoaderInfo.parameters["xmlFilePath"]+root.LoaderInfo.parameters["lang"];
    my_ssp.xmlFilePath = langPath;
    var fileType = root.LoaderInfo.parameters["xmlFileType"];
    my_ssp.xmlFileType = fileType;
    Access of possibly undefined property LoaderInfo through a reference with static type flash.display:DisplayObject.
    The only code snippet works is
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (var param in paramObj) {
       if (param == "xmlFilePath") {
          my_ssp.xmlFilePath = paramObj[param];
       if (param == "xmlFileType") {
          my_ssp.xmlFileType = paramObj[param];

  • Problem with loading and unloading external swfs

    Hello Forum,
    I'm pretty new to as3, and it's giving me a great challenge. I have a large number of captivate files that I want to play inside a simple container built in CS5.5... but switching back and forth between all the movies hogs the memory like crazy, so I need something to clean it up. All code is in a single frame on the main timeline. First, I create the loader:
    var FlashLoader:Loader = new Loader();
    var flashUrl:URLRequest = new URLRequest("placeholder.swf");
    FlashLoader.load(flashUrl);
    addChild(FlashLoader);
    The actual movies are located via an XML... but as I said the memory problem is huge, so I tried to build something to get rid of that. Ideally, I want the loader to clean up everything and start life anew with a single mouse click, like so:
    function _mouseClickHandler2(event:MouseEvent):void {
              FlashLoader.unloadAndStop();
              FlashLoader.parent.removeChild(FlashLoader);
              FlashLoader = null;
              var flashUrl:URLRequest = new URLRequest(event.target.href);
              var FlashLoader:Loader = new Loader();
              addChild(FlashLoader);
              FlashLoader.load(flashUrl);
              FlashLoader.x = 120;
              setChildIndex(FlashLoader,0);
              trace(FlashLoader.parent.numChildren);
    //          System.gc();
    //          System.gc();
    //          try {
    //                    new LocalConnection  .connect('gc');
    //                    new LocalConnection  .connect('gc');
    //          } catch (e: * ) {
    //          trace(getMemory ());
    //trace(event.target.href);
    //trace(event.target.text);
    Upon clicking on the menu (and thus switching movies), I get the following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Treeview_working_fla::MainTimeline/_mouseClickHandler2()
    And this doesn't make sense to me. The FlashLoader is given a placeholder swf at the beginning, so why would the FlashLoader inside the function be recognized as having a null object reference?
    Thanks in advance

    In my quest to tackle this problem, I've decided to try and isolate the problem, and have made a simple "click to load, click to unload" when I stumbled upon a curious problem. The movie loads fine, and the UNLOAD function upon mouseclick also works perfectly. However, upon clicking again to activate RELOAD, it gives the error "No active security context" and refuses to load the same exact swf with the same exact path that successfully loaded the first time!
    import flash.events.MouseEvent;
    import flash.display.Loader;
    import flash.net.URLRequest;
    var FlashLoader:Loader = new Loader();
    var flashUrl:URLRequest = new URLRequest("folder/subfolder/movie.swf");
    FlashLoader.x = 120;
    FlashLoader.load(flashUrl);
    stage.addChild(FlashLoader);
    stage.addEventListener(MouseEvent.CLICK, UNLOAD);
    function UNLOAD(event:MouseEvent) {
              flashUrl = null;
              stage.removeChild(FlashLoader);
              FlashLoader.unloadAndStop();
              stage.removeEventListener(MouseEvent.CLICK, UNLOAD);
              stage.addEventListener(MouseEvent.CLICK, RELOAD);
    function RELOAD(event:MouseEvent) {
              var FlashLoader:Loader = new Loader();
              var flashUrl:URLRequest = new URLRequest("folder/subfolder/movie.swf");
              FlashLoader.x = 120;
              FlashLoader.load(flashUrl);
              stage.addChild(FlashLoader);
              stage.removeEventListener(MouseEvent.CLICK, RELOAD);
              stage.addEventListener(MouseEvent.CLICK, UNLOAD);

  • How to load the xml from swf

    Hi,
    I have one intro.swf from that am loading one interface.swf by using loader.In interface i am loading some of the swf and xml am getting the swf but the xml files are not loading.When i run from interface file it is loading fine. only when i load the intro file the xml files are not loading. can any one tell me what is the problem how to access the xml content.
    This is the code am using in interface.swf to to get the xmlpath
    MovieClip(root).param1 = xmlPath;
    to access the xml content i have written the code
    var xmlPath:String=MovieClip(stage.getChildAt(0)).param1;
    I am using one moviclip in interface to load the other swf and xml. I am not using any moviclip in intro file to load the interface swf for that i am using only the loader.

    Where are the files located relative to each other?  If the intro and interface are in different folders then the problem could be that you need to adjust the path the interface uses for targeting the files it loads.

  • Load and resize a SWF inside a MC

    Hi,
    I'm using AS2 to load an SWF inside an MC. The MC measures
    800x600, while the SWF (which can vary in size) measures in this
    case 14x60, even though, looking at it, it seems to be about half
    the size of the hosting MC. This makes me think that the dimension
    scales are different. I'm loading the SWF using MovieClipLoader and
    I'd like to resize it so that it fits as proportionally snug as
    possible within the MC. How can I do this? If I try to resize the
    SWF to the MC's dimensions, it become way too large and goes off
    screen. If instead I try to rescale the hosting MC to fit around
    the SWF, the SWF itself rescales as well. I'm going nuts! How can
    accomplish this?
    Thank you,
    Tatiana

    To make things simple, I'd like to take an existing SWF (the
    picture) and load it into a FIXED SIZED MC (the frame) and I'd like
    to rescale the SWF so that it fits perfectly into the frame.
    By all means, I know that what you said should work and I
    admit my inexperience with AS2, but somehow the SWF's I'm loading
    in, have scales that are totally different with respect to my
    Stage. I even tried loading the SWF directly onto the stage and
    then I loaded the frame separately onto the stage and tried to
    resize it to the SWF's _width and _height. The frame became a tiny
    dot on the screen, while the SWF filled half of my Stage.
    Thanks again for your help.

  • Loading an external clip(swf) and removing existing one

    Hi All,
    I am tearing my hair out; I simply want a button when
    clicked, to load an external swf. But I just can't seem to get my
    head around it. Here is my code:
    butt1_btn.addEventListener(MouseEvent.CLICK, swf1);
    function swf1(evt:MouseEvent):void
    loadSwf1.load(new URLRequest("swf1.swf") );
    butt1_btn.buttonMode = true;
    Any help with this would be much appreciated!
    Kind Regards,
    Boxing Boom

    Hi,
    Sorry for late response. I used the following code, which
    loads another swf and replaces the original swf;
    computerProtection_btn.addEventListener(MouseEvent.CLICK,
    removeMain, false, 0, true);
    var ld:Loader = new Loader();
    ld.load(new URLRequest("computerProtection.swf"))
    function removeMain(evt:MouseEvent):void {
    this.parent.addChild(ld);
    this.parent.removeChild(this);
    Now, the problem is that when I use the same code to get back
    to the original, it doesn't work. Obviously, I have changes the
    button name and the requested swf.
    I get an error stating something about the main timeline.
    Funny, how it works only once, loads a swf but won't load another
    swf file.
    I appreciate the time this issue has taken. But an answer
    would be nice!
    Kind Regards,
    Boxing Boom

  • AS2 SWF loaded inside a AS3 SWF

    Hi,
    In a recent project I had to load a FlashPaper2 document
    inside a SWF implemented in AS3. I read a couple of articles about
    Darron
    Shcall's article and
    FlashInterface
    but none of them seemed to be useful in my case.
    I needed to load a FlashPaper SWF inside a AS3 and couldn't
    rely on ExternalInterface since they were not two separate SWF's.
    To be more clear, I was using the Loader class via a Sprite to load
    the FlashPaper SWF.
    Anyways, I created FlashPaperLoader.SWF implemented in AS2
    which was used to load the FlashPaper SWF. This loader was able to
    communicate with the FlashPaper APIs (AS2). As you can guess, the
    AS3 SWF was used to load the FlashPaperLoader.swf.
    What I don't understand is how come the FlashPaperLoader the
    FlashPaper document SWFs can communicate with each other thru AS2
    function calls when they are loaded inside a AS3 SWF, I thought
    that due to VM differences, no communication is possible!
    I hope I was clear, if I was, any guru insight is really
    appreciated.
    Cheers.

    Thanks kglad,
    But you still haven't answered my question. I am not looking
    for solutions, my own solution works. I wanted to understand more
    about the VM's.
    AS3
    var request:URLRequest = new
    URLRequest("./FlashPaperLoader.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    AS2
    var loader:MovieClipLoader = new MovieClipLoader();
    loader.loadClip("./FlashPaperDoc.swf", fpContainer);
    // the loader SWF used IFlashPaper APIs to communicate with
    the FlashPaper SWF.
    Now, the first part (AS3), all that code is interpreted by
    VM2. Once an AS2 SWF is loaded a
    AVM1Movie
    is created and no direct communication between AS3 and AS2 is
    possible. I am curious to know how come the two AS2 SWFs can
    communicate with each other while inside the VM2 space.

  • Loading dynamic plug-ins(SWF) in OSMF

    I am working on an OSMF player  which needs to load plugin from a URL and is in the form of SWF. How can  I load this into the mediaFactory?
    I have checked over the internet and I was able to figure out way to load the SWF plug-in but it always  returns error. No request is sent to the server for loadin the SWF.

    I have downloaded the latest one from sourceforge.
    an excerpt from the code
    package
        import flash.display.Sprite;
        import org.osmf.media.MediaFactory;
        import org.osmf.media.URLResource;
        import org.osmf.utils.URL;
        import org.osmf.events.MediaFactoryEvent;
        public class MediaFactoryExample extends Sprite
            public function MediaFactoryExample()
                // Construct a media factory, and listen to its plug-in related events:
                var factory:MediaFactory = new MediaFactory();
                factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD, onPluginLoaded);
                factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD_ERROR, onPluginLoadError);
                // Instruct the factory to load the plug-in at the given url:
                factory.loadPlugin(new URLResource("http://objects.tremormedia.com/embed/swf/osmfacudeoplugin.swf"));
            private function onPluginLoaded(event:MediaFactoryEvent):void
                // Use the factory to create a media-element related to the plugin:
                var factory:MediaFactory = event.target as MediaFactory;
                factory.createMediaElement(new URLResource("http://mediapm.edgesuite.net/strobe/content/test/AFaerysTale_sylviaApostol_640_500_short.flv"));
            private function onPluginLoadError(event:MediaFactoryEvent):void
                // Handle plug-in loading failure:
                trace("Plugin failed to load.");   

  • How to load and replace random swfs into same loader on stage?

    Hi...this is very simple, but, for some reason escapes me: using AS3 how can a swf load another swf to replace itself in the same loader on the stage, while simultaneously calling a randomizing function in the first frame of the main timeline, to randomize the next swf?
    At the end of each swf (called "koan_#.swf") there is the following old AS2 code...it was used to randomly select and then play a swf from koan array:
    _root.index++
    if(_root.index>_root.koan.length-1){
    _root.index=0;
    _root.koan.shuffle();
    _root.koan_loader_mc.loadMovie(_root.koan[_root.index]);
    This code on the first frame of the main timeline loads a random koan swf properly, but, after the koan plays I would like to load a new random koan swf.
    function shuffle(a:Array):Array {
    var len:Number = a.length-1;
    for (var ivar:Number = len; ivar>=0; ivar--) {
      var p:Number = Math.floor(Math.random()*(ivar+1));
      var t = a[ivar];
      a[ivar] = a[p];
      a[p] = t;
    return a;
    var index:uint = 0;
    var koan_loader:Loader = new Loader();
    var koan:Array =["swfs/koans/koan_1.swf","swfs/koans/koan_2.swf", "swfs/koans/koan_3.swf", "swfs/koans/koan_4.swf", "swfs/koans/koan_5.swf", "swfs/koans/koan_6.swf", "swfs/koans/koan_7.swf", "swfs/koans/koan_8.swf", "swfs/koans/koan_9.swf", "swfs/koans/koan_10.swf", "swfs/koans/koan_11.swf", "swfs/koans/koan_12.swf"];
    koan = shuffle(koan);
    koan_loader.load(new URLRequest(koan[index]));
    MovieClip(this).koan_loader_mc.addChild(koan_loader);
    Thank you very much.  I've tried multiple variations of updated AS2 code but am at my wits end. 

    Alright, the bloody forums won't attach the file for some reason, so here is the code:
    Copy and paste this code into a text file and save it as InterfaceEvent.as
    package {
         import flash.events.Event;
         public class InterfaceEvent extends Event {
              public static const KOAN_FINISHED:String = "koanFinished";
              public function InterfaceEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, index:int = -1, item:Object = null) {
                   super(type, bubbles, cancelable);
                   this.index = index;
                   this.item = item;
              public var index:int = -1;
              public var item:Object = null;
              override public function clone():Event {
                   return new InterfaceEvent(this.type, this.bubbles, this.cancelable, this.index, this.item);

  • AS3 array used to load and play random swfs?

    Hi, I'm trying to use an array adapted from AS2 script to load random swfs called "koan_1.swf" or "koan_2.swf" etc into a "koan_loader_mc" on the stage.  Each "koan_#.swf" has code in its last frame to both advance the "shuffle" array in the action script in the first frame of the stage and to load the next koan swf.  The code below -- almost -- works, but....?
    Frame on main stage:
    // creates function called at the end of koan_#.swfs
    function shuffle(a:Array) {
    for (var ivar = a.length-1; ivar>=0; ivar--) {
    var p = Math.floor(Math.random())(ivar+1);
    var t = a[ivar];
    a[ivar] = a[p];
    a[p] = t;
    // loads koans into koan_loader_mc
    var index:uint = 0;
    var koan_loader:Loader = new Loader();
    var koan:Array =["swfs/koans/koan_1.swf","swfs/koans/koan_2.swf", "swfs/koans/koan_3.swf", "swfs/koans/koan_4.swf", "swfs/koans/koan_5.swf", "swfs/koans/koan_6.swf", "swfs/koans/koan_7.swf", "swfs/koans/koan_8.swf", "swfs/koans/koan_9.swf", "swfs/koans/koan_10.swf", "swfs/koans/koan_11.swf", "swfs/koans/koan_12.swf"];
    koan.shuffle();
    koan_loader.load(new URLRequest(koan[index]));
    MovieClip(this).koan_loader_mc.addChild(koan_loader);
    MovieClip(this).stop();
    Code is on the last frame of the loaded koan swfs:
    MovieClip(stage).index++
    if(MovieClip(stage).index>MovieClip(stage).koan.length-1){
    MovieClip(stage).index=0;
    MovieClip(stage).koan.shuffle();
    MovieClip(stage).koan_loader.load(new URLRequest(koan[MovieClip(stage).index]));
    MovieClip(stage).koan_loader_mc.addChild(koan_loader);
    Thanks for -- any -- guidance and suggestions...at my wit's end...

    Thank you for taking the time to help, but......unfortunately it still isn't working.  When the "koan.shuffle():" segment of code on the first frame of the stage timeline, below, is commented out, everything else in the movie (except randomizing of swfs) works fine.
    This code loads swfs (but they are not randomized/shuffled):
    // loads koans into koan_loader_mc
    var index:uint = 0;
    var koan_loader:Loader = new Loader();
    var koan:Array =["swfs/koans/koan_1.swf","swfs/koans/koan_2.swf", "swfs/koans/koan_3.swf", "swfs/koans/koan_4.swf", "swfs/koans/koan_5.swf", "swfs/koans/koan_6.swf", "swfs/koans/koan_7.swf", "swfs/koans/koan_8.swf", "swfs/koans/koan_9.swf", "swfs/koans/koan_10.swf", "swfs/koans/koan_11.swf", "swfs/koans/koan_12.swf"];
    //koan.shuffle(); 
    koan_loader.load(new URLRequest(koan[index]));
    MovieClip(this).koan_loader_mc.addChild(koan_loader);
    Thanks again for your help....

  • Load, Resize and Position SWF into a blank MC

    heeelp!!
    I've honestly tried to look everywhere and have no clue how to do this. PLus i've tried for hours and still have no success!
    As the post thread title states, I have a swf file and i want to import anothe swf file into a blank movie clip. Any ideas how? Can it be % wise? And can the image's width be set to say 100 and the height be automatic?
    Also, what about the x and y positioning?
    also, I do not need or want a progress bar....
    I would really be greatful if anyone can lend me a hand.

    Hope you include file path as an argument inside URLRequest constructor.
    Ex:
    loader.load( new URLRequest("bla.swf") );
    That may be the reason you are getting an erroe.
    Just throwing a stone in dark......

  • Use loadSWF load my stage3D game swf and show In AIR , This swf may crash when running

    Problem Description:
    use loadSWF load my stage3D game swf and show , This swf may crash when running
    Steps to Reproduce:
    run my Upload Project . Fill in the login box, any account and password . Because of network problems, you may need to wait a long time to show up login box
    Actual Result:
    this swf crash when running
    Expected Result:
    this swf do not crash when running
    Any Workarounds: 
    Test Configuration
    My Hardware and Environment details:
    1.this url's swf load files in worker
    2.this url's swf use SDK is Flex 4.6.0(bulid23201)
    3.this url's swf is Flex Project
    Upload Project Url:
    http://fight.fuhuodao.com/fight/testUrl/!FightAirShell.zip

    The loading of SWFs from AIR has a different Security model than that of the WebPlayer.  There is a workaround to loading plugins in AIR: If you use a static plugin this should work for you.  To do this: Link in the plugin at compile time, and pass the PluginInfoResource to the loadPlugin() method.

  • "stop" inside AS 2 Frame doesn't work when loaded inside AS 3 swf

    Hi
    Please help!!!!!!
    I have a flash code where i am loading an AS 2 SWF inside AS 3. The thing is if i put the AS 2 SWF on same domain its working fine but if i put AS 2 SWF on different domain it loads the SWF properly but the "stop()" written inside the AS 2 frame doesnt work... and it keeps on playing all the frames continuously...
    Here is the loading code..
    var context:LoaderContext = new LoaderContext();
    if(Security.sandboxType == Security.REMOTE)
    { context.securityDomain = SecurityDomain.currentDomain };
    var objLoader:Loader = new Loader();
    var mRequest:URLRequest = new URLRequest("SomeURL.swf");
    objLoader.contentLoaderInfo.addEventListener(Event .COMPLETE, onSWFLoadComplete);
    objLoader.load(mRequest, context);
    function onSWFLoadComplete(e:Event):void
    var oLoaderInfo:LoaderInfo = LoaderInfo(e.target);
    var mcChild = oLoaderInfo.content;
    mcChild.addEventListener(MouseEvent.ROLL_OVER, onMouseOverLoader);
    mcChild.addEventListener(MouseEvent.CLICK, onMouseClickLoader);
    addChild(mcChild);
    Have tried
    System.security.allowDomain ("*");
    Thanks for the help

    Hi,
    Actualy the "stop();" will only work when you don't use external as3 file, instead shift all your file code into frame code and remove the class name.
    this is the only way i found out while developing the application.
    What i think is there must be some class which we have to include to use the "stop" in the main scene fram.

  • How to improve the load time of my swf group

    Hi,
    I need help to have some tricks to improve my load time on my swf captivate online traning. My training has 6 sections and it takes 3 minutes to download each time I open the window of the training. It takes too much time and if there are 50 users at the same time, it will take lots of my website bandwidth. Do you have any tips on captivate settings or other tips to help reduce my training download time? I do not understand why the 6 modules loading simultaneously and not every time I click to start a new part of training.
    Can you help me with my problem?
    Thank you

    Bryan,
    If "read from spreadsheet file" is the main time hog, consider dropping it! It is a high-level, very multipurpose VI and thus carries a lot of baggage around with it. (you can double-click it and look at the "guts" )
    If the files come from a just executed "list files", you can assume the files all exist and you want to read them in one single swoop. All that extra detailed error checking for valid filenames is not needed and you never e.g. want it to popup a file dialog if a file goes missing, but simply skip it silently. If open generates an error, just skip to the next in line. Case closed.
    I would do a streamlined low level "open->read->close" for each and do the "spreadsheet string to array" in your own code, optimized to the exact format of your files. For example, notice that "read from spreadheet file" converts everything to SGL, a waste of CPU if you later need to convert it to DBL for some signal processing anyway.
    Anything involving formatted text is not very efficient. Consider a direct binary file format for your data files, it will read MUCH faster and take up less disk space.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Work flow in Traing & Event Mgt

    I need to create a work flow in Traing & Event Mgt, ESS Is there any standard way to creat work flow in T & E Mgt? pls mail

  • Unicode MDMP conversion issue with document management table.

    Hi, We are in a process of doing a unicode conversion for our ECC 6.0 MDMP non-unicode system. We have completed the scans and we found close to 14 million words not assigned to the codepages. Then we checked at the table level which table has the hi

  • MBP 1,1 Running faster than MBP 2,2?

    We have two older MacBook Pros that the kids use. One is a first generation MacBook Pro 1,1 (January 2006) - Core Duo 2GHz - 667 bus - 2G RAM - ATY Radeon X1600 - 2MB L2 Cache The other is a MacBook Pro 2,2 (late Oct 2006) - Core 2 Duo 2.33GHz - 667

  • Dynamic Forms - text fields

    Hi, I am currently using LiveCycle Designer 8.0. I am having major problems getting my text field boxes to expand dynamically on the page and over to the next page to accommodate large amounts of text. I have employed the 'allow multiple lines' and '

  • The billing document has incorrect gross weight on the output

    Hi All, I'm facing a problem - the billing document has the incorrect gross weight on the output. The output of gross weight is 3 x the true gross weight. The program was looping three time during this select causing the value in t_weights-brgew to b