Click to load another mc

Hi guys,
I have few questions and hope any of you flash master can
help me on it. I have a 3D carousel spinning gallery loaded with
XML in my content frame (this frame contains different content
pages such as about us, service n etc).
I would like to know how can I make it like when I click on
the carousel thumbnail, it'll bring me to the particular gallery
page for that category. I have the gallery page coded in the
content frame together. Now when I click on the carousel thumbnail,
it'll load another page with the getURL command. (the URL is read
from the XML file)
Is there any way I can make it to load the gallery page
inside my swf instead of loading another html page?
p/s: Hope you can understand what I'm talking about, I know
my description is not clear enough 'coz I don't really know how to
explain it.. =$

Hi Landice,
Welcome to the forums!
One problem that you might face is that Flash can load and
render external SWFs but not (complete) HTML pages.
If the contents of the HTML page is simply an SWF, then you
can modify your code to allow Flash to load the SWF instead of
opening a new window. That is, change the XML code to reflect the
location of the SWF, not the HTML file. Then, in Flash, make use of
the loadMovieNum, loadClip, or loadMovie methods to either load the
SWF to a _level or a MovieClip.
Otherwise, you may have to rethink your set-up.
I imagine that this gallery page is mainly comprised of
images? If so, it might be better to represent the gallery page as
another XML page with the URLs of images specific to that gallery.
And then just as your 3D carousel loads in XML, you could load in
the XML for a particular gallery and then load in each image using
the loadMovie or loadClip methods.

Similar Messages

  • Windows 7 Installation problem: "no drives were found, click to load driver to provide a mass storage driver..."

    I just purchased a Toshiba Satellite laptop (U945-S4140) that came with windows 8. I am trying to install windows 7 enterprise 64 bit.
    I have the installation file on a bootable USB stick. In order to boot from the USB, I have to go into the BIOS settings and change from UEFI to CSM boot mode. Then the computer will boot from the usb stick and the windows 7 installation begins to work fine.
    However, I soon get an error message that "no drives were found. click to load driver to provide a mass storage driver for installation."
    I cannot figure out how to proceed. Any help would be greatly appreciated.
    Cheers

    Hello Maxxpower33, thank you for your words.
    I looked through the error logs that could be generated from the tool and found this one which may be what you experienced.  Kindly let me know if this is what you got:
    "Files copied successfully. However, we were unable to run bootsect to make the USB device bootable. If you need assistance with bootsect, please click the "Online Help" link above for more information."
    Some further information is that I found this post where another user experienced the same error on a laptop, although the speculation mentioned in the post is that the user does not have a Windows store account under which he purchased the license for Windows
    7 Home Premium, which is the flavor he was trying to get on the bootable drive.  However, this does not seem to be a valid response due to the fact that the tool does not check Windows XAuthCert Servers for validation on licensing.  So ignore that
    portion of the post, but the 2nd post helps a bit by linking to another article, providing both below.
    Forum Port With Same Error
    Article with 4 methods to create
    a bootable Windows 7 USB Drive
    In that first post, further down, is another reply to a tool that I have not tested with.  So please use caution on this one as I cannot find very much feedback other than on their own website, but sounds much like the first tool I mentioned in my first
    post "Unetbootin", but this one is called Rufus, and two people did mention they had good success with this tool after having difficulties with the Windows utility.
    Rufus
    After all that is said and done, there is not 1 tool that will work for everyone all of the time on every environment.  Why?  I would like to know also...but speculate hardware/firmware/bios combinations could be the culprit.  One of these
    tools should work for you and it would be my recommendation to try them in this order (skipping what you've already tried):
    1) Windows 7 USB/DVD Download Tool
    2) Unetbootin
    3) Manually creating the partition and xcopy'ing the extracted ISO to it
    4) Rufus
    5) Borrow a PC with a DVD-R in it and burn the ISO to a disc and install from it.  If your laptop does not have a DVD drive, an external drive can be purchased for roughly $25 or less.  Or if you have an internal drive laying around, buy an enclosure
    for about $15 and put the drive inside there and attach it to your laptop via USB or eSATA.
    As always, my advice is nothing more than my opinion, which are like bungholes...everyone has one and they all stink!  LOL!
    John Fester

  • How do I defeat or whitelist the "Firefox has blocked this site from loading another web page" function?

    Often when I click a link within a web page, a message bar appears at the top of the page saying "Firefox has blocked this site from loading another page" or something similar. This happens frequently on banking or credit card sites. This is particularly annoying because it seems to disturb the operation of the link when I have to click the "Allow" box on the message bar. I would prefer to create a whitelist for this feature so it would not interrupt my banking operations. Failing that, I would like to know how to toggle the feature on and off. Failing that, I would like to know how to defeat the function.

    See:
    *Firefox > Options/Preferences > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.org/kb/settings-network-updates-and-encryption#w_general-tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Clear loaded pictures in xml gallery to load another set

    i cannot figure how to unload my already populated xml gallery, before loading new content :
    here the functions i want :
    //following 2 functions will be called by a button :
    // removes previously placed objects
    function clearLoadedPictures():void {
    // Load another ,xml to load new pictures set - ok : works fine
    function LoadNewPictures():void {
            i_g = 0;
               // xml data
                var xml_gallery:XML                = new XML();
                var xml_gallery_List:XMLList        = new XMLList;
                // XML data loader...
                var xmlUrlReq:URLRequest   = new URLRequest("xml/gallery2.xml");// gallery2.xml will replace gallery.xml already loaded
                var xml_gallery_UrlLoader:URLLoader = new URLLoader(xmlUrlReq);
                xml_gallery_UrlLoader.addEventListener(Event.COMPLETE, xml_gallery_Complete);
                xml_gallery_UrlLoader.addEventListener(IOErrorEvent.IO_ERROR, xml_gallery_LoadFailed);
    here the xml gallery code :
    var _mc:item;
    var total:int;
    var i_g:int;
    var id:int;
    var btn_Gallery_Ready:Boolean;
    var speedX:Number;
    var spaceR:Number;
    var img_gallery_Loader:Loader;
    i_g = 0;
               // xml data
                var xml_gallery:XML                = new XML();
                var xml_gallery_List:XMLList        = new XMLList;
                // XML data loader...
                var xmlUrlReq:URLRequest   = new URLRequest("xml/gallery.xml");
                var xml_gallery_UrlLoader:URLLoader = new URLLoader(xmlUrlReq);
                xml_gallery_UrlLoader.addEventListener(Event.COMPLETE, xml_gallery_Complete);
                xml_gallery_UrlLoader.addEventListener(IOErrorEvent.IO_ERROR, xml_gallery_LoadFailed);
                bottom24.gallery.content_mc.addEventListener(MouseEvent.ROLL_OVER, startScroll);
                bottom24.gallery.content_mc.addEventListener(MouseEvent.ROLL_OUT, stopScroll); //
    // xmlComplete function
            function xml_gallery_Complete(e:Event):void
            xml_gallery = XML(e.target.data); //
                xml_gallery_List = xml_gallery.item;  // <item> in gallery.xml
                total = xml_gallery_List.length();
                spaceR = xml_gallery.attribute("space"); // specified in gallery.xml file as is : <gallery space="119" speed="0.2">
                speedX = xml_gallery.attribute("speed");
                init_gallery();
            function xml_gallery_LoadFailed(e:IOErrorEvent):void {
                trace("Load Failed: " + e);
            function init_gallery()  //
                //bottom.gallery.content_mc.itemHolder_mc.
                _mc = new item(); //
                _mc.alpha = 0;
                //_mc.imgMask_mc.scaleY = 0;  // condition pour apparition des timbres ds la gallery - OLD
                _mc.imgMask_mc.alpha = 0; // condition pour apparition des timbres ds la gallery - NEW
                _mc.x = i_g * spaceR;
                _mc.btn.id = i_g;
                _mc.btn.mouseChildren = false;
                bottom24.gallery.content_mc.itemHolder_mc.addChild(_mc);
                Tweener.addTween(_mc, {alpha:1, time:0.8, transition:"easeOutExpo"});
                _mc.online_mc.alpha = 0; //invisible sans roll over
                if (xml_gallery_List[i_g].url != "")
                    _mc.btn.buttonMode = true;
                    _mc.online_mc.visible = true;
                    btn_Gallery_Ready = true;
                else
                    _mc.btn.buttonMode = false;
                    _mc.online_mc.visible = false;
                    btn_Gallery_Ready = false;
            var imgRequest:URLRequest = new URLRequest (xml_gallery_List[i_g].image); //
             img_gallery_Loader = new Loader(); // var imgLoader:Loader;
                img_gallery_Loader.load(imgRequest); //
                img_gallery_Loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imgLoading);
                img_gallery_Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, img_gallery_Complete);
                i_g++;
            function imgLoading(event:ProgressEvent):void // tiny preloader in bottom thumbs pics
        _mc.preloader_mc.width = Math.round(img_gallery_Loader.contentLoaderInfo.bytesLoaded / img_gallery_Loader.contentLoaderInfo.bytesTotal * 100);
            function img_gallery_Complete(event:Event):void
                _mc.imgHolder_mc.addChild(img_gallery_Loader);
                Tweener.addTween(_mc.imgHolder_mc, {_saturation:0.9, time:0.6});// desaturate scrolling thumbs
                //_mc.imgHolder_mc.alpha = 0.5; // test
                // apparition des timbres ds la gallery, ici fade in : - NEW
                Tweener.addTween(_mc.imgMask_mc, {"alpha":1, delay:i_g / 20, time:0.4, transition:"easeOutExpo"});// test
                // apparition des timbres ds la gallery, ici image apparait de haut en bas : - OLD
                //Tweener.addTween(_mc.imgMask_mc, {"scaleY":1, delay:i_g / 10, time:1, transition:"easeOutExpo"});
                // la ligne de preloader qui diminue vers la gauche :
                Tweener.addTween(_mc.preloader_mc, {"scaleX":0, delay:0, time:1, transition:"easeOutExpo"});
                _mc.btn.addEventListener(MouseEvent.ROLL_OVER, onMouseOver);
                _mc.btn.addEventListener(MouseEvent.ROLL_OUT, onMouseOut);
                _mc.btn.addEventListener(MouseEvent.CLICK, onMouseClick);
                if (i_g < total)
                    init_gallery();
    thanks

    hi,
    back to work,
    then i used a loop in the first clear function:
    var n:int = 0;
                  while (n < xml_gallery_List.length() -1) {
                      bottom24.gallery.content_mc.itemHolder_mc.removeChildAt(n); //
                    i++;
    and it remove all my previously loaded pictures,but it throw me an error :
    RangeError: Error #2006: The supplied index is out of bounds.
    at flash.display: DisplayObjectContainer/removeChildAt()
    it seems error come from the removeChildAt, but i can't figure out what's wrong
    i've tried to replace removeChildAt(n); by removeChild(n); and the loop crash Flash software....
    any suggestion ?

  • How to load another page in a frame?

    Hi!
    I have a frame with a page where is a button. I need to load another page in the frame when I click the button. How can I make it on the ADF? I work on JDeveloper 10.1.3.4.

    I found example. Thank you for help. Refresh works very well! This code:
        protected void refreshPage(String refreshpage) {
            FacesContext fc = FacesContext.getCurrentInstance();
            ViewHandler ViewH = fc.getApplication().getViewHandler();
            UIViewRoot UIV = ViewH.createView(fc, refreshpage);
            UIV.setViewId(refreshpage);
            fc.setViewRoot(UIV);
        refreshPage("/transfers/ClaimForm.jspx");

  • InfoObject to InfoObject Transformation / Load another InfoObject

    I have 2 Master data Info Objects (of same type and based on same Standard infoObject) , OBJ1 is loading master data from SYS1 and OBJ2 from SYS2...  Can I combine them in another infoObject, lets say OBJ3 ?   if so how?
    What I want to do is to add a Prefix (by hard coding it in the transformation) to each of the data records, so when I finally have all the data in OBJ3 (combination of data from OBJ1 and OBJ2 ) the data records from SYS1 look like Prefix1_dataRecord1  and SYS2 look like Prefix2_dataRecord1 etc
    Please let me know how this can be done, how do I make a transformation from one infoObj to load another infoObj  (both have the same attributes etc, only that the one being loaded has a length of 12 and other have a length of 10, the extra 2 characters are the Prefix)
    Many Thanks and I will say Thanks the SDN way for good or helpful answers.

    Hi Niten
    Thanks for your response,  can you please mention the things I would need to consider when you say "may require an amount of planning and additional work"....
    Secondly, I will Prefix with AA and BB so anything coming from SYS2 will be prefixed BB and SYS1 will be prefixed AA  (so later if I add another system, I could prefix it with CC etc etc)
    So according to above AA0123 will mean Apples and BB0123 will mean Oranges, and that will solve my problem... (I think)
    The question remains that HOW can I load an InfoObject (OBJ3 with length 12 , 10 for OBJ1/OBJ2 and 2 for Prefix values) from the two other InfoObjects (OBJ1 and OBJ2 with lengths 10 )
    I have found the Solution myself, and I am posting it so it might benefit someone else in the future...
    Basically the keyword here is "Generate Export Datasource" ....  Once the master data is loaded into OBJ1 and OBJ2, then we need to right click on the infoObject we want to send the data from... Additional Functions >  Generate Export Datasource   (do some reading on How this feature works, have a look in BI Content).... and then we need to create transformations with OBJ3 (use the exported DataSources of OBJ1 and OBJ2) and that's how we will be able to combine data (or get data from another InfoObject) into the desired infoObject (OBJ3 in my case).
    Edited by: Jack Allsop on Feb 9, 2009 8:01 AM

  • I keep having to restart my computer. It say firefox is running in the background but I cannot load another page

    I keep getting the message that Firefox is running in the background and I cannot load another page. I have to restart my computer to get Firefox back to operating normally. I have everything closed down as far as I can tell. But when I click on the Icon it will not start another page. It just keeps telling me to shut down all browser windows and that Firefox is running in the background. I even go to ctrl/alt/delete and look at the tasks running. Nothing! It is happening a lot more often now and I hate to use Internet Explorer. I have depended a lot more on Mozilla in the past few years now and I like it. This is driving me nuts. Please help. Thank You

    Did you check the Processes tab in the Task Manager?
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Flash plug-in/Safari problem - "Plugin - click to load."

    Hi guys,
    Whenever i load a site containing flash in Safari, "Plugin - click to load" will appear in the area of the flash. The rest of the site loaded fine.
    http://img529.imageshack.us/my.php?image=picture2sj2.jpg
    I tried repairing permission, uninstalling flash player, reinstalling Flash player(latest) & resetting safari but that doesn't solve the problem. I read that there are some problems with flash Player 9 but have yet to come across anyone with the same problem as mine...so im wondering if the source of problem is the player itself or my safari. Flash sites load completely fine in my old Mozilla 1.7.13.
    Pls advice what else can i do now? Thanks in advance.
    Message was edited by: ihomme

    Your first link looks like the correct Adobe download page for FlashPlayer, the second one does not.
    But either way, it should not appear when you go to a page requiring Flash when you already have it.
    Could the following be relevant to your problem?
    From MacWorld Aug. 8, 2008:
    Fake CNN news malware spreading fast
    Over a thousand hacked sites are serving up fake Flash Player software to users duped into clicking on links in mail that's part of a massive spam attack masquerading as CNN.com news notifications.
    The bogus messages, which claim to be from the CNN.com news website, include links to what are supposedly the day's Top Ten news stories and Top Ten news video clips from the cable network. Clicking on any of those links, however, brings up a dialogue that says an incorrect version of Flash Player has been detected, and tells users they needed to update to a newer edition.
    One distinguishing feature of the attack, Masiello added, is the endless loop it uses to frustrate victims. If user clicks "Cancel" in the dialogue that prompts for an update, another pop-up appears, said Masiello, that tells the victim that they have to download it to view the video. Clicking "Cancel" there returns the user to the first dialogue.
    "It puts you in this perpetual loop, so your only options are to kill your browser session or be brow-beaten into installing it,"
    Adobe is aware of the malware posing as its Flash Player, and on Monday warned users to ignore any updates that didn't originate on its own servers. "Do not download Flash Player from a site other than adobe.com," said David Lenoe, Adobe's product security program manager, in an entry on Adobe Product Security Incident Response Team's PSIRT blog. "This goes for any piece of software (Reader, Windows Media Player, QuickTime, etc.). If you get a notice to update, it's not a bad idea to go directly to the site of the software vendor and download the update directly from the source. If the download is from an unfamiliar URL or an IP address, you should be suspicious."
    People who okayed the download of the bogus flash.exe file, said Danchev, instead received a Trojan horse -- identified by multiple names, including Cbeplay.a -- that in turn "phones home" to a malicious server to grab and install additional malware.
    http://www.macworld.co.uk/news/index.cfm?email&NewsID=22323
    The latest development is this:
    Computer security firms are warning about an attack that hijacks the clipboard where copied text is stored.
    The attack puts a hard-to-delete weblink into the clipboard that, if followed, leads people to a website selling fake security software.
    The code that inserts the link has been found in flash-based adverts seen on many legitimate websites.
    The attack on the clipboard has hit both Windows and Mac users of the Firefox web browser.
    http://news.bbc.co.uk/2/hi/technology/7567889.stm

  • How to load another internet browser (Curve 8330m)

    How do I go about loading another internet browser?  I downloaded the Opera Mini and tried to make it as the default browser but couldn't seem to get it to work properly.
    Can anyone point me to some documentation (nothing seems to be in the Blackberry Technical Solutions Center) or give me some step-by-step instructions on how to do this?

    LoboFan wrote:
    I do realize that.
    How can I get the browser to work?  Are there any steps I need to follow to use it instead of the Blackberry default?
    OK, sorry., I guess I misunderstood your initial question.
    So what is NOT working.. you've installed Opera Mini and you open to use it.. what happens?
    Details, please.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Load another Frame?

    Hi,
    when user clicked on a button, I want to load another frame(or probably i can say instantiate new browser).
    This frame could load another .jsp page.
    So, if following code is located in main page, how can i load (let say info.jsp page) when this button clicked.
    <input name=info" type="button" value="More info" onclick="">

    first you ahve to make a function i javascript that opnes a new window.
    function newWindow()
    window.open("URL","Windowname","propeties,properies,....")
    //then the action of the formmust specify where to load that jsp file
    document.formName.action="..folder/index.jsp"
    //then specify the target
    docuemtn.formNmae.target="Windowname"
    document.formName.submit()
    <input name=info" type="button" value="More info" onclick="newWindow">
    something like that, propably you will have to modify it alittle, this works in netscape as it does also in explorer

  • Load another Edge project with a symbol timeline trigger

    I'm working on an E-book like project that basically every page is an Edge composition.
    I make a symbol within a turn-page animation that will play on click.
    And I have a timeline trigger in the symbol and I'm hoping there is a way to load another Edge project with that trigger.
    Is there a way to do so?
    Thanks.

    I put together a Composition that I think does what you're asking. it's not elegant, but it works.
    in the timeline of Symbol_1
    place stop() triggers at the start and end
    in the same triggers, set a Symbol variable that states whether the animation has finished i.e. sym.setVariable("isDone", "false");
    place a trigger on the rectangle to play() or playReverse() depending on an if() statement about the variable
    in the timeline of Symbol_3
    place stop() triggers at the start and end
    in the same triggers, set a Symbol variable that states whether the animation has finished i.e. sym.setVariable("isDone2", "false");
    place a trigger on the rectangle to:
    declare 2 new variables, which use sym.getVariable() to get isDone and isDone2 as above,
    play() or playReverse() depending on an if() else if() else if() statement about both variables
    I used the relative string to get the local variable and absolute string to get the variable from the other Symbol, i.e.
    var myVariable = sym.getComposition().getStage().getSymbol("Symbol_1").getVariable("isDone");
    var myVariable2 = sym.getVariable("isDone2");
    I can send you the entire code if that helps.

  • Loading another page into frameset

    Hi,
    I have divided my BSP page into 3 frames. On click of a button I want to load another page into one of the frame. Could you please let me know how to do it.
    Regards,
    Ravi G

    Hi Friend,
    I have designed in a way similar to yours.
    In one frame, I have tree in which all its leaves have a link.
    Clicking a link on one frame will display the corresponding page on the other frame.
    All the pages displaying in the frame were designed separately.
    tree.do refers to the name of the controller in which this content get displayed in the left and default.do refers to the name of the controller whose content get displayed in the right in default.
    Clicking the link on the left specified in the tree will replace the default.do  content with a table named deptable.do.
    In the below code specified  zpgms1 refers to the application name and pagedivider.do refers to the name of the controller  in which the page was divided into frames.
    Tree.do page holds the codings in which tree was designed and the link attribute holds default.do page initially and clicking the link would activate the deptable page which is assigned to a variable.
    In the below code I'm replacing the content of default.do  by concatenating the default.do code with deptable.do
    <htmlb:form action = "/sap/bc/bsp/sap/zpgms1/pagedivider.do"
                          target = "_top"
                          method = "post" >
                  <htmlb:treeNode id          = "subnode2"
                                   link              = "default.do?&tag=deptable"  
                                target          = "right"
                                  image         = "@03@"
                                  text          = "Department MasterTable"/>
                               </htmlb:treeNode>
    In the defaullt.htm page specify the codings below.
    <%
      data: tag     type string,
            control type string.
      tag = request->get_form_field( 'tag' ).
      if tag is not initial.
        concatenate tag '.do'       (deptable name gets concatenated here and assigned to the src )
        into control.
      endif.
    %>
    <%
    if tag is not initial.
    %>
    <htmlb:content design = "design2003" controlRendering="sap" rtlAutoSwitch="true">
      <htmlb:document>
        <htmlb:documentHead>
          <frameset rows="75%" MARGINWIDTH="0" frameborder="0" framespacing="5" MARGINHEIGHT="0">
            <frame style="border-bottom-style:solid;border-color:#A5B1BF;border-width:1px"
             scrolling  = "auto" src="<%=control%>" name="control" target= "_top">
          </frameset> 
    With Regards,
    SHARMILA BRINDHA.M

  • I'm wanting to use the "Actions" in Photoshop Elements 11.  But when I get the Actions box up, it is only showing a small list of effects to use.  And no side bar to go any further.  When I click on the little arrow at top and then click on "load actions"

    I'm wanting to use the "Actions" in Photoshop Elements 11. But when I get the actions box up, it is only showing a small list of effects to use. And no side bar. So I can't go any further.  When I click on the little arrow at top and click on "load actions", I am only getting a box with empty space saying "No items match your search".  The folder at the top does say "Actions".  How do I get more effects?  The tutorials that I've checked into all show a long list of effects in their box.  Can anyone help? 

    To use the existing actions, try the following:
    1. Open one of the Action Sets, in this example Special Effects is the Action Set, by pressing the small arrow beside the set name.
    2. Then click on the name of the Action, in this example Faded Ink is the Action name.
    3. Then press the Play button to run the action.

  • Post Goods issue after clicking on Load Starting push button

    Hi All,
    Post goods issue for deliveries, suppose if the shipment document is created for XXXX country do the post goods issue after clicking the push button loading start on. and if the shipment is created other than the XXXX Country do the post goods issue after clicking the shipment start button(Done by Standard SAP).
    There will be validation table in background to identify which shipping point to allow Post Goods Issue before shipment completion. This will require enhancement of Delivery User Exit to incorporate above check based on below mentioned Z Table.
    Z-Table
    - Shipping Point.
    - Delivery Type
    Any body please suggest the user exit or any function module and how to start code for this particular requirement.
    Thanks & Regards,
    Narasimha

    Hi,
    You can write your own vaalidation on click of loading start button.
    Go to include MV56AI_IS_ENHANCEMENT of program SAPMV56A.
    Click on the circular button(Enhance).
    Then Edit --> Enhancement Operation --> Create.
    Create your enhancement giving it a Z name.
    Then in this enhancement you can write your code.
    For loading start you can write your code in the following fashion.
    IF fcode = 'MM_ST03'.
          business logic.....
    ENDIF.
    Regards,
    Firoz.

  • Windows 7 Installation problem: "no drives were found, click to load driver..."

    I just purchased a Toshiba Satellite laptop (U945-S4140) that came with windows 8. I am trying to install windows 7 enterprise 64 bit.
    I have the installation file on a bootable USB stick. In order to boot from the USB, I have to go into the BIOS settings and change from UEFI to CSM boot mode. Then the computer will boot from the usb stick and the windows 7 installation begins to work fine.
    However, I soon get an error message that "no drives were found. click to load driver to provide a mass storage driver for installation."
    I cannot figure out how to proceed. Any help would be greatly appreciated.
    Cheers

    I have tried many solutions....Maybe I should provide more details on my options.
    Through my university I am granted the rights & license to use a copy on windows enterprise. From them I obtained a valid product key and also downloaded an ISO install file. It seems as if this file was designed to be burned to a dvd. I used windows 7 usb/dvd tool to burn the ISO file to a DVD. No problem there. However, my new laptop does not have an optical drive. So, I borrowed an external one that plugs in via USB. Again, in order to get ANYTHING to happen, I need to boot the USB(dvd rive) in CSM mode. Even then, it doesn't work. (I'm sorry but I forget the specific error I got here.....there have been so many methods and so many errors today)
    Now, with this DVD, I have had a little bit of progress if I click the setup.exe file while Windows 8 is running. It begins the Windows 7 setup program, and even sees the harddrive! It asks me what partition I want to install to, and I selected the only 1 (of 4) that it said was 'available' to write to. Then, it loaded the installation files, but when it went to automatically restart, it froze during the 'starting windows' screen just as the little colored circles appear, that eventually form the windows logo. Again, I think the problem here might have been that during the restart, it looked to the USB-DVD drive, which needs CSM mode to boot properly, but Windows 8 can only start in UEFI mode.
    Any attempt to put this ISO file onto a USB stick have not worked well. I used Rufus and the only thing that slightly worked was burning the ISO to the USB stick with a 'GPT partition scheme for UEFI controller' with the 'FAT32' file system. When using this to boot, I did not have to change the BIOS to CSM mode. The screen for 'loading files' came up like the installer was going to work. However, the computer then froze during the 'Starting Windows' screen, however, this time the little circles actually were able to form the windows logo. But, at that point I was left with a pulsing windows logo and it was stuck. It did not even make it to the actual installer.
    The situation I posted about originally is slightly different. Some tech guys at my department's electronic shop have a bootable USB stick with the windows 7 enterprise installation software already on it. I used that and was at least able to get a little bit into the windows 7 setup before it told me it cannot find a disk to install to (as in my original post).

Maybe you are looking for

  • Still trouble with getting a free version of OS X Lion

    I have still some trouble with my free version (old threat here). The Database do not recognize the serial ID of my Macbook. Next I tried to sent a copy of my sales recipt, so I am still waiting of a reaction. Does somebody know how long it takes or

  • Oracle apps performance issue

    Dear All, i recenlty cloned an environment on a new server, i can access oracle apps with fine speed once you select a reponsbility and the java take lots of time to open when you are in oracle application (Oracle forms) from there it works so slow e

  • Finding unique object from a collection

    Hi, Is there a way to select all the unique objects from a pool of collections? ie, i have a set which contains (1,1, 2,3,4,4,5) and want to get (1,2,3,4,5) back? Is there a class or function that able to do that? thx in adv

  • Preview not opening FDF files or images

    Recently the preview program has stopped working. I cannot open PDF files or image files, i.e. jpeg. The only thing I can think of that I've done recently is installing a program called "MailRaider." I just uninstalled it using a program called "Appd

  • Why does my XI pro upgrade fail?

    I am trying to upgrade from Acrobat XI standard to Pro but the setup fails, telling me there is already a more functional product installed.  This is on a Dell laptop that came with XI standard installed.  I'm not sure I know where the serial number