Remove dynamic textbox on loading an image

I'm trying to remove a line of text placed in a dynamic textbox inside a MC after an image loads in the imageloader component.
I've highlighted the line in RED in the code below.
Maybe a timer for this text to disappear or a statuschange function would be helpful. I've been searching extensively but in vain. Any heads-up please?!
Any help would be much appreciated.
Thanks.
Sudarshan
// Import the MX.UTILS so it can be used to set the scope of the listBox listener and the xml onload feature
import mx.utils.Delegate;
// Define default URL to load if no URL is defined in XML attribute
_root.urlLink = "http://www.somesite.com";
// declare variables
var people:Array;
var product:Array;
var update:String;
var dirpath:String;
// set up the XML instance
var peoplexml:XML = new XML();
// initialize items on stage
_global.style.setStyle("fontFamily","Verdana");
_global.style.setStyle("fontSize",11);
// define what should happen when the XML loads
// (read data into update, dirpath, and brand variables)
function onXmlLoaded(success:Boolean)
    if (success)
        // make a handle to the root node in the xml
        var mainnode:XMLNode = peoplexml.firstChild;
        update = mainnode.attributes.lastupdate;
        dirpath = mainnode.attributes.dir;
        // set up an array of all brand nodes
        var peoplenodes:Array = peoplexml.firstChild.childNodes;
        for (var i:Number = 0; i < peoplenodes.length; i++)
            // for each brand node:
            var personnode:XMLNode = peoplenodes[i];
            people.push({i:i + 1, pname:personnode.attributes.name});
        // data is all read and put in the right place -- now setup the screen
        // using this data
        setup();
    else
        trace('error reading XML');
function setup()
    // set up chooseperson dropdown
    choosebrand.labelField = "pname";
    choosebrand.dataProvider = people;
    choosebrand.addEventListener("change",Delegate.create(this, loadProducts));
function loadProducts(evt:Array)
    var thisitem:Array = evt.target.selectedItem;
    var productList:Array;
    chooseproduct.labelField = "prname";
    product = [prname];
    var peoplenodes:Array = peoplexml.firstChild.childNodes;
    for (var i:Number = 0; i < peoplenodes.length; i++)
        // for each brand node:
        var personnode:XMLNode = peoplenodes[i];
        if (personnode.attributes.name == thisitem.pname)
            var productnodes:Array = personnode.childNodes;
            for (var j:Number = 0; j < productnodes.length; j++)
                // for each product node:
                var productnode:XMLNode = productnodes[j];
                product.push({i:j + 1, prname:productnode.attributes.title, img:productnode.attributes.photo, url:productnode.attributes.url, txt:productnode.attributes.txt, det:productnode.attributes.det, price:productnode.attributes.price, clck:productnode.attributes.clck});
            loader.img.contentPath = "";
            loader.clck.text = "";
            loader.ldng.text = "";
            productTitle.ptitle.text = "";
            productTitle.pdet.text = "";
            productTitle.prc.text = "";
    //initialize the product array
    chooseproduct.labelField = "prname";
    chooseproduct.dataProvider = product;
    chooseproduct.addEventListener("change",Delegate.create(this, loadImage));
function loadImage(evt:Array)
    var thisitem:Array = evt.target.selectedItem;
    productTitle.ptitle.text = thisitem.txt;
    productTitle.pdet.text = thisitem.det;
    productTitle.prc.text = 'Rs.'+ thisitem.price;
    loader.img.contentPath = thisitem.img;
    loader.clck.text = thisitem.clck;
    loader.ldng.text = 'Loading Image...';
    _root.urlLink = thisitem.url;
function init()
    // initialize the brand array
    people = [pname];
    // set up the xml instance to ignore whitespace between tags
    peoplexml.ignoreWhite = true;
    // set the scope of the onLoad function to the main timeline, not peoplexml
    peoplexml.onLoad = Delegate.create(this, onXmlLoaded);
    // start the xml loading
    peoplexml.load("bannerxml.php");
init();

You can use the setTimeout() function if you want to delay some code from executing

Similar Messages

  • Dynamic load of images in to established Timeline effect

    Is it possible to dynamicly load images in to an already
    established timeline effect?
    Steps I've done.
    Stuffed a JPG in to the library by draging and dropping it in
    to the SWFs library.
    Dropped the JPG on to the main stage
    Right clicked the image then going down to Timeline effects
    and choosing an effect.
    Completing any changes in effects dialogue box and then
    clicking OK.
    Play the movie, and pat myself on the back that it worked.
    So then, how can I get Actionscript to load an image
    dynamically in to that same Timeline effect and have it do the
    effect to that instead of the one found in the library?
    I'm using Flash MX Professional 2004.

    hii
    Can u mention the error message getting while the status become RED??
    As what I understand, this may be the issue of invalid characteristics inPSA Data Records or also there may be records that does not support the lower case or upper case data.
    So just check the data in PSA Level
    Thanks
    Neha

  • How to remove flickering in a animation done by loading different image files

    Hello Everyone,
    I have done a character animation by loading multiple images one after another at runtime or dynamically by accessing files from there path directly.
    But the problem I am facing is, I am getting a white bg or delay when the images change, it kind of feels like the images are flickering. How can I get rid of this flicker.
    Thank you.
    Iceheros

    When loading images from a server during runtime you can never be sure that there will be no delay.
    What you could do is write a function, that checks with a progress Event how much of the next picture is loaded and base the percentage of the current pictures alpha channel on this figure.
    Say the progressEvent from your Loader returns a number like 0.1....1.0 (10%...100% of the next picture are loaded)
    Then in an eneterframe you could use that number to modify the current Pictures alpha (like img.alpha = 1.0- progress);
    A clear disadvantage is, that the tweens will always be different (depending on picture size/network traffic)

  • How to dynamically load an Image into a TableView when its row/cell becomes visible?

    Hi,
    I am building an application that shows tables with large amounts of data containing columns that should display a thumbnail. However, this thumbnail is supposed to be loaded in the background lazily, when a row becomes visible because it is computationally too expensive to to this when the model data is loaded and typically not necessary to retrieve the thumbnail for all data that is in the table.
    I have done the exact same thing in the past in a Swing application by doing this:
    Whenever the model has changed or the vertical scrollbar has moved:
    - Render a placeholder image in the custom cell renderer for this JTable if no image is available in the model object representing the corresponding row
    - Compute the visible rows by using getVisibleRect and rowAtPoint methods in JTable
    - Start a background thread that retrieves the image for the given rows and sets the resulting BufferedImage in a custom Model Object that was used in the TableModel (if not already there because of an earlier run)
    - Fire a corresponding model change event in the EDT whenever an image has been retrieved in the background thread so the row is rendered again
    Btw. the field in the model class holding the BufferedImage was a weak reference in this case so the memory can be reclaimed as needed by the application.
    What is the best way to achieve this behaviour using a JFX TableView? I have so far failed to find anything in the API to retrieve the visible items/rows. Is there a completely different approach available/required that uses the Cell API? I fail to see it so far.
    Thanks in advance for any hints here.

    Here’s what I have tried so far:
    I have defined a property in my model object that contains a weak reference to the image that is expensive to load. I have modeled that reference as an inner class to the object so I have a reference to its enclosing object. That is necessary because my cell factory otherwise has no access to the enclosing model object, which it needs to trigger loading the image in the background.
    The remaining problems I have is, that I don’t have sufficient control over the loading process, i.e. I need to delay the loading process until scrolling has stopped and abort it as soon as the user starts scrolling again and the visible content changes. Imagine that loading an image for a table row (e.g. a thumbnail for a video) takes 200ms to load and a user quickly scrolls through a few hundred records and then stops. With my current set-up, the user has to wait for all loading processes that were triggered in the cell factories to finish until the thumbnails of the records they are looking at will appear (imagine an application like finder to be implemented like that, it would simply suck UX-wise). In my swing application a background thread that loads images for the visible records is triggered with a delay and stopped as soon as the visible content changes. This works well enough for a good user experience. I don’t see how I can do this based on the cell API. It is nice to have all this abstracted away but in this case I do not see how I can achieve the same user experience as in my swing application.
    I also tried registering a change listener to the TreeCell’s visible property to make that control the image loading but I don’t seem to get any change events at all when I do that.
    I must be missing something.

  • Loading multiple images dynamically

    hi,
    trying to load several images to timeline keyframes,
    managed to load one, how to load several,
    Here´s the code:
    var imageLoader:Loader;
    function loadImage(url:String):void {
    imageLoader = new Loader();
    imageLoader.load(new URLRequest(url));
    imageLoader.contentLoaderInfo.addEventListener(Pro gressEvent.PROGRESS, imageLoading);
    imageLoader.contentLoaderInfo.addEventListener(Eve nt.COMPLETE, imageLoaded);
    loadImage("Images/pori1.jpg");
    function imageLoaded(e:Event):void {
    imageArea.addChild(imageLoader);
    function imageLoading(e:rogressEvent):void {

    hi,
    I appreciate if I would get some more advice on this.
    I´m trying to load each image to a frame(instance/imageArea1,2,3...) and to be loaded when needed (using next- or previous -buttons).
    Here´s my code so far:
    stop();
    var imageLoader:Loader;
    var images:Array = new Array("Images/pic1.jpg","Images/pic2.jpg");
    for(var i:uint = 0;i<images.length;i++){
    var request:URLRequest = new URLRequest(images[i]);
    var loader:Loader = new Loader();
    loader.x = i * 100;
    loader.load(request);
    this.addChild(loader);
    package KC {
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    public class NextBtn extends MovieClip {
    public function NextBtn():void {
    buttonMode = true;
    addEventListener(MouseEvent.MOUSE_DOWN, btnEvent);
    function btnEvent(evt:MouseEvent):void {
    MovieClip(parent).gotoAndStop(MovieClip(parent).currentFrame + 1);
    package KC {
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    public class PrevBtn extends MovieClip {
    public function PrevBtn():void {
    buttonMode = true;
    addEventListener(MouseEvent.MOUSE_DOWN, btnEvent);
    function btnEvent(evt:MouseEvent):void {
    MovieClip(parent).gotoAndStop(MovieClip(parent).currentFrame - 1);

  • Dynamically loading binary image of report source file

    Post Author: ChristopherZ1
    CA Forum: .NET
    I have stored all my .rpt files as varbinary images in a SQL 2005 DB.  I can retrieve the image write it to disk then load the report. i.e.
    Private m_RptDoc As New ReportDocument()
    m_RptDoc.Load(RptPathName). 
    My question is...is there a way to load the image directly into the ReportDocument without first writting it to disk and using the pathname?

    I would think that this crummy custom Image class hack would work, but surprise surprise -- the width/height in loaderInfo is flat out WRONG when the event fires. It seems to have a hard coded width/height no matter what the file size. Silly!
    <mx:Image xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()">
         <mx:Script>
              <![CDATA[
                   public function init():void {
                        this.addEventListener(Event.COMPLETE, loaded);
                   private function loaded(e:Event):void {
                        this.width = this.loaderInfo.width;
                        this.height = this.loaderInfo.height;
              ]]>
         </mx:Script>
    </mx:Image>
    Turns out, this version DOES work (but it's still a hack fix in my opinion):
    <mx:Image xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()">
         <mx:Script>
              <![CDATA[
                   public function init():void {
                        this.addEventListener(Event.COMPLETE, loaded);
                   private function loaded(e:Event):void {
                        this.width = this.contentWidth;
                        this.height = this.contentHeight;
              ]]>
         </mx:Script>
    </mx:Image>
    You guys at Adobe are so silly.    It would seem to me that Image's width and height should be set (rather than left at 0) once the content's width and height is known.  So now that I've fixed this bug (as far as I'm concerned) for ya Adobe, I take cash, cashier's check, or money orders--thanks!
    But really, if this doesn't work this way in Flex 4, I think it should.

  • Loading an image to remove gray box, then unload the image.

    I have been searching for this solution for awhile and I can not seem to find an answer.
    What I want to do is load an image instead of the gray box (or as soon as the applet loads) as my applet is processing its information. Then when it's completed, it should take away the image when I display the information. (Displaying the information I already have, not the image part though).
    Can this be done? If so, please point me in the right direction.

    so i took your suggestion about loading the image, then using a thread.. but the thread can't write to the AWT components at the end of the run (specifically the TextArea). This is basically what i have.. but if i display the TextArea after the start, it does display, but you would see the output being displayed. I would just like to show the "loading" then when it's done, display the TextArea over the image to "hide" it.
    but i guess my major question now is, why doesn't the TextArea display?
    public class CWJVMcheck extends Applet implements Runnable
        String outputString;
        TextArea output_window;
        Image loadingimage;
        private Thread thread;
        public void init()
         super.init();
            loadingimage = getImage(getCodeBase(), this.getParameter("loadingimage"));
         repaint();
         outputString=""; //Collective string of what to output
         setBackground(Color.white);
            output_window.setEditable(false);
         Font currentFont = new Font("Times New Roman", Font.BOLD, 10);
         output_window.setFont(currentFont);
        public void paint(Graphics g)
             g.drawImage(loadingimage, 0, 0, this);
        public void start(){
             try{
         thread = new Thread(this);
             thread.start();
             //while(thread.isAlive())
             //     Thread.sleep(10);  
         } catch (Exception ex) {
              addToOutput("output some junk.\n");
              displayToTextArea();
        public void run() {
             add(output_window);
             output_window.append(outputString);
        public CWJVMcheck()
            output_window = new TextArea("", 36, 110, 4);
    }

  • Safari 7.0 does not loading big image.

    Hi. I have Mac book pro (13-inch Early 2013).
    I'm Korean. and my english level is very terrible.
    but, My MacBook has some problem.
    My Mac installed OSX10.9. and safari ver is 7.0.
    If loading big image, safari is show black box.
    But other brower is show image.
    thanks for reading, my broken text.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot insafe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Loading external Images in MovieClips

    Dear All,
    I am trying to load the external images in Dynamically
    created Movie Clips.
    Can you please help me out from this.
    I am trying something like this:
    Container_mc.image_mc ( I want to load the Images inside the
    imag_mc clip)
    Regards,
    Sridhar B
    Container_mc.image_mc
    imag_mc

    Hi,
    Following is my problem:
    I am trying to trace the "idValue" property on runtime but it
    is showing error. Can you please tellme how add Images and
    properties runtime.
    var loader:Loader = new Loader()
    addChild(loader)
    loader.load(new URLRequest("images/01.png"))
    // Assigning a value to idValue property
    mc_mainSWF.idValue = 40
    mc_mainSWF.addChild(loader)
    mc_mainSWF.addEventListener(MouseEvent.CLICK, checkID)
    function checkID(event:MouseEvent)
    // And i am geeting error here
    trace(event.target.idValue)
    Regards,
    Sridhar B

  • Load Multiple Images in Crystal Report using Paths

    Hi Guys,
    I am currently in need of developing a new requirement for our company's client. We have to load multiple images using just link in Crystal Report. Let's say that the images are stored in a folder (e.g., C:\Datafolder\Images\) and i have to fetch two images to show in crystal report (say, C:\Datafolder\Images\imageval1 and C:\Datafolder\Images\imageval2). These are actually dynamically created and therefore the number of images are not known and so i have to iterate through the list of image links.
    Is it possible using merely crystal report and how?. If not, can I do it using Crystal Report SDK?. Any help will be appreciated. Please take note that we're also using C# in developing our software applications.
    Thanks and best regards.
    ---CHITO--

    There are also a number of KBAs:
    1296803 - How to add an image to a report using the Crystal Reports .NET inproc RAS SDK
    1199408 - How to load an image from disk into a dataset using CSharp (C#) in Visual Studio .NET
    Other related KBAs:
    1216239 - How to access a Crystal Report "Preview Picture" using the CR .NET or RAS .NET SDK?
    1373770 - How can I add a picture to a Crystal Reports subreport using the RAS .NET SDK?
    1320507 - How to change images dynamically in Crystal Reports based on parameter selection?
    And more. Please do use the search box in the top right corner. Simple search terms are best. E.g: 'crystal image net' or 'crystal image format formula', etc.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Loading External Images Causes Memory Leak

    I have been working on an Actionscript 2.0 project that basically loads external images.
    Everytime i load and unload a new image, memory increases to 1 or 2 MBs
    If all the images are in cache, then it increased to 4 or 8 KBs
    In the unloading of images, I have removed loader and the container of the image.
    Any thoughts why it is behaving like that?
    Please find the sample code snippet below.
    btn_load.onRelease = function()
    loadImage();
    btn_unLoad.onRelease = function()
    unLoadImage();
    var mcListener:Object = new Object();
    var container1:MovieClip;
    var mcLoader:MovieClipLoader;
    var loader_reference = this;
    var n=0;
    function loadImage(){
    var image_arr = ["http://xyz.com/image1.png","http://xyz.com/image2.png","http://xyz.com/image3.png","http:/ /xyz.com/image4.png","http://xyz.com/image5.png"];
    var image_url = image_arr[n];
    if(n==image_arr.length-1) {
      n=0;
    }else{ 
      n++;
    container1 = loader_reference.createEmptyMovieClip("container1", loader_reference.getNextHighestDepth());
    mcLoader = new MovieClipLoader();
    mcLoader.removeListener(mcListener);
    mcLoader.addListener(mcListener);
    mcListener.onLoadComplete = function(target_mc:MovieClip, httpStatus:Number):Void {
    mcListener.onLoadInit = function(target_mc:MovieClip):Void {
      target_mc._x = 300;
      target_mc._y = 200;
      target_mc._width = 300;
      target_mc._height = 250;
    mcLoader.loadClip(image_url, container1);
    function unLoadImage(){
      mcLoader.unloadClip(container1);
      mcLoader = null;
      container1 = null;
      removeMovieClip(loader_reference.container1);
    Thanks in advance.

    that code should only execute once.  fix that.

  • Can I revert back to prior mozilla. 6.0 does not load all images

    many websites do not load all pictures and images since I updated to 6.0. Can I undo update?

    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Removing Dynamic Calc Using Property

    Does anyone know what property can be used to remove dynamic calc from a member when using a load rule? I know of the different properties like ~, +, -, X, V, etc., but I need something that will change the member to Store Data.Thanks,Louie

    We are on v6.5.3 and haven't found a way. There's an enhancement in V7.0 that will allow you to do this. The field memeber is S.

  • Safari won't load some images (after upgrade to Mavericks from Lion)

    Hi,
    I've noticed that since I upgraded my OS from Lion to Mavericks, Safari won't load all images on certain websites.
    I've tried loading the same pages on my daughter's MacBookPro (she upgraded from Mountain Lion to Mavericks) and everything works just fine.
    We cross checked the Safari preferences and everything is identical.
    Below are two pictures, the first one taken from my computer, the second one from my daughter's. As you can see, in the first photo the image won't display, while it's been perfectly loaded in the second photo.
    Here's the website: http://blog.alice.tv/berengario/2013/11/16/trasmissione-su-arturo-tv/
    I've tried opening the same page on Firefox, and all images are perfectly displayed.
    Could you please help me?
    Thank you for your support!
    Kind regards,
    Leo

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • [advance question] loading a swf in adobe Air, which loads an image with "componentloader"

    Good evening all,
    I think this is a complex issue.
    I have adobe air application which loads a SWF I made.
    Inside this SWF I have used the "component LOADER" to load
    something with "ContentPath=image.jpg" for example.
    But the swf loaded in the Adobe air works, but does not load
    the "ContentPath image"...
    (it does load and display it when it this swf is run outside
    adobe Air)
    I need it to be dynamic like this, so if eventually I Include
    it in the package it won't help much...
    I just intend to replace an image background from this loaded
    swf file!
    Thanks!
    Edit:
    At this time of the editing, I fear and realize
    something....I have been using Actionscript2 for the .SWF file,
    could it be why it does not works???
    If its problematic, is there a simple way like telling it to
    read actionscript2, rather than transforming everything??
    edit2:
    I found this on the official AIR FAQ:
    Will Flash version 8 and below SWF files run in Adobe AIR?
    Yes. However, the Adobe AIR APIs are only exposed to Flash
    content via ActionScript 3 / AVM2, and thus Flash 8 / AVM1 SWFs
    will be able to run, but they will not have direct access to the
    Adobe AIR APIs.
    source:
    source
    faq Adobe
    it seems it should works!!??
    Edit3:
    nope I confirm at least some code made in Actionscript2
    works.
    I am sure this code needed to be changed for working in
    actionscript3, so "actionscript2" code works in Adobe Air.
    The problem of not loading my image must come from something
    else!!??

    Good Morning all!
    Hilarious....
    I tried so much to think maybe Adobe Air does not like a SWF
    using actionscript2, or it does not load any "external image from a
    swf", etc...
    None of that!
    I just in FLASH in the ComponentLoader....I did put simply
    the ContentPath at "myimage.jpg"....
    Of course I had to use the absolute path like
    "c:\\myfolder\\myimage.jpg"
    Of course aswell it works now!!!

Maybe you are looking for

  • I would like to see my home videos in HD - but have not been sucessful

    OK I'll start off by saying, I think I'm fairly intelligent but after going thru about 50 dvds, maybe not so much. If anyone can give me an idiot guide (step by step) I would really appreciate it. My goal is to get small movie clips on my DVD so I ca

  • Recorded audio in the wrong folder

    I recorded my audio in the wrong folder (they are not in the project folder). I copied them over to my project folder but can't figure out how to link my song file/audio regions to the new location. I tried to set this in the Audio Window by resettin

  • Necessary software for flash islands

    Hi, can you pls. tell me what is needed to work with flash islands (for Abap). Which of the packages should I download at http://www.sdn.sap.com/irj/scn/downloads ->  SAP NetWeaver Main Releases or  SAP NetWeaver Composition Environment . Can I do it

  • WSIL Browser with JDeveloper 10.1.3

    Hi All, I am using Jdev 10.1.3.2 on my PC but SOA suit and B2B servers are running on middle tier which is on different system Now how can we configure WSIL to acces B2B server I dont have any 'Developer prompt' as suggested in README.txt file becaz

  • Automatically utilise outsuide ip address in config

    Let me explain. At the moment we are running cersion 8.4.4.1 on our head end ASA5540 and 845 on our remote ends.Until we upgrade both ends to 845 we have the problem with DHCP and the giaddr natting. Is there anyway to detect the outside interface ad