Preloader Delay

I noticed in the manual that the preloader for Flex apps have
a 700 millisecond delay. This isn't very significant... but you can
see the screen flash my not-yet-formatted components on the screen
during this time. Is there a way to adjust the delay to 0?

Another way to solve this issue would be to go to the Publish
Settings, click on Settings next to ActionScript 2.0 and set the
export frame for classes to 2.
JAMES

Similar Messages

  • Preloading Delays with exported objects

    I am having some trouble with a game I am creating. When debuging the preloader does not show until about 75% of the movie is loaded. Before this the movie is just a blank white stage. I have several objects that need to be exported and they have all been changed to not export in frame 1 but this did not help. I unlinked the original class (the stage's custom definition) which acted as the bridge between external classes and the main stage and turned that into a variable. After all this I still can't get it to start before 55%. Anyone know why it is doing this? Any help would be greatly appreciated.

    fonts embedded in the authoring environment will be exported in frame 1 and you need to change the frame in which classes are exported, not only by unticking the export in frame one box for library objects, but you also need to change the flash settings:  file/publish settings/flash/settings and change the frame number from 1.

  • Preloader issue

    Hello,
    I have followed the tutorial to include a preloader in my webpages of my website. The spinning icon works on my desktop, but is not visible when the site is uploaded online.
    <!doctype html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
              <head>
                        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                        <title>My website</title>
                        <link rel="stylesheet" type="text/css" href="includes/marquee.css" />
            <link rel="stylesheet" type="text/css" href="includes/preloader.css" media="screen, print"/>
                        <script type="text/javascript" src="includes/jquery-1.6.min.js"></script>
                        <script type="text/javascript" src="includes/farinspace/jquery.imgpreload.min.js"></script>
                        <script type="text/javascript" src="includes/marquee.js"></script>
              </head>
              <body>
        <!-- Preloader -->
    <div id="preloader">
              <div id="status">&nbsp</div>
    </div>
    <div>    CONTENT is HERE </div>
    <script type="text/javascript">
        //<![CDATA[
            $(window).load(function() { // makes sure the whole site is loaded
                $('#status').fadeOut(); // will first fade out the loading animation
                $('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
                $('body').delay(350).css({'overflow':'visible'});
        //]]>
    </script>
            </body>
    </html>
    The only item I did not include as per the tutorial, is:
    <!-- jQuery Plugin -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
    This is because when the above plugin is included, it creates some conflicts, and my webpage wont be visible.
    Thanks

    Without seeing your URL, it's impossible to say for sure...  some things to check:
    It could be your page is loading so fast, the animation doesn't have time to appear.
    Did you upload the scripts and animated gif to your site?
    Are you sure the paths to supporting files are all correct?
    Have you tested the preloader on a plain vanilla page without any other plugins that may be causing conflicts?
    Nancy O.

  • CP 7 Bug? Long delay between preloader and first slide

    I am using OSX Mavericks 10.9.2 and recenly created my first project since upgrading to CP 7. My project is 15 slides and contains only audio (mp3) and image files. My preloader is set to 25%. When I upload the published project to my web server and test, there is a fairly long delay after the preloader loads and before the course begins. It last several seconds and appears as if all the elements on the first slide are missing (the only thing that shows is the playbar - I have only the CC button turned on):
    Is this a bug with CP 7? I have never experienced anything like this in CP 5.5 and 6.

    jon8979 wrote:
    During the latter part of the sync, I can open the Music app and scroll down to find the first last Artist with more songs than albums, and that is the one the device is currently working on.
    That should have been the "last" Artist, not "first". I would've edited the message, but I guess I'm too late as the option isn't available.

  • UI Loader Component causing delay in preloader

    Hi All-
    I would really appreciate if you could help me with this
    issue.
    I have a preloader in the first scene. In the next scene is
    my main movie, in which I have a UI Loader Component. I've
    unchecked "export in first frame" in the linkage options for the UI
    loader, but "export for Action Script" is still checked.
    The problem is, when I do a "simulate download" my preloader
    will not show on screen until it's about 15% loaded already. I'm
    assuming this is because the "export for Action Script" for the UI
    loader is still on, but the loader obviously won't work without
    that option checked...
    Is there any way to fix this??
    I'm still new to Flash so please bear with me...

    Thnx for the response Ned, I did do that. First inside of flash with control>test movie. The file worked so I brought onto the DW page and tested in Firefox. Didnt work.

  • How do I add a preloader in Captivate 5

    Hi
    I have published a project as a swf file and my colleague has setup a link to the fine in Zendesk. When you click to play the movie there is a fairly long delay till the swf loads. How do I add a preloading icon that shows something is loading and how can I start the movie before the whole project is loaded.
    Thanks

    Hi there
    Look in Edit > Preferences > Project > Start and End.
    Cheers... Rick

  • Help with Flex preloading and transitions please

    I downloaded and installed Flex Builder 3, and I think I have
    my slideshow project about 75% finished. It's the last 25% that I
    can't figure out, regarding preloading and transitions. Can someone
    take a look at the code below and see if you can help me? I tried
    to write the code in such a way that you can debug it from any
    computer as it's calling an PHP/XML file and images that are on a
    server.
    Here's what's finished...
    1. PHP file looks at image files on server and builds XML
    file.
    2. Flex app calls PHP file and traverses the XML in the
    response.
    3. Flex app figures out how many "slides" there and displays
    the slides one at a time, each slide with 3 images, with a 5 second
    delay between "slides."
    Here's what's not finished...
    1. I would like a fade-out to white at the end of each slide,
    and a fade-in from white at the beginning of each slide.
    2. I need each slide to stay put intil the next slide is
    pre-loaded. That is, during the 5 seconds that a slide is
    displayed, the next 3 images need to be preloaded, and then the
    slide should not progress to the next until slide is completely
    loaded.
    3. The very first slide should not appear until it is
    completely loaded, and when it does appear, it should fade in from
    white.
    How do I do this?!? Please help! Here's the code...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="472" height="195"
    backgroundGradientAlphas="[1.0, 1.0]"
    backgroundGradientColors="[#FFFFFF, #FFFFFF]"
    creationComplete="StartFunction();" >
    <mx:Fade id="fadeOut" duration="2000" alphaFrom="1.0"
    alphaTo="0.0"/>
    <mx:Fade id="fadeIn" duration="2000" alphaFrom="0.0"
    alphaTo="1.0"/>
    <mx:Image id="PhotoA" x="0" y="0" width="154"
    height="195" />
    <mx:Image id="PhotoC" x="318" y="0" width="154"
    height="195" />
    <mx:Image id="PhotoB" x="159" y="0" width="154"
    height="195" />
    <mx:Script>
    <![CDATA[
    private function StartFunction():void {
    var oXML:XML = new XML();
    var sXmlUrl:String = "
    http://www.smis.org/templates/smis/slideshowxml.php";
    var oUrlReq:URLRequest = new URLRequest(sXmlUrl);
    var oUrlLoader:URLLoader = new URLLoader(oUrlReq);
    oUrlLoader.addEventListener("complete", xmlLoaded);
    function xmlLoaded(event:Event):void {
    oXML = XML(oUrlLoader.data);
    var iSlide:int = 0;
    function ChangeImages():void {
    PhotoA.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[0]["@filepath"]);
    PhotoB.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[1]["@filepath"]);
    PhotoC.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[2]["@filepath"]);
    iSlide++;
    if (iSlide >= oXML.children().length())
    iSlide = 0;
    PhotoA.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[0]["@filepath"]);
    PhotoB.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[1]["@filepath"]);
    PhotoC.load("
    http://www.smis.org/" +
    oXML.slide[iSlide].photo[2]["@filepath"]);
    iSlide++;
    if (iSlide >= oXML.children().length())
    iSlide = 0;
    setInterval(ChangeImages,5000);
    ]]>
    </mx:Script>
    </mx:Application>

    What you've done is beyond my capabilities, as of now. But, I
    ran into the same problem with the fading in and out of the photos.
    Here's my solution.
    I defined my fade with only the id and the duration
    parameters. No 'from' and 'to'.
    Then I used the 'showEffect' and 'hideEffect' parameters.
    showEffect="{bannerFade}" hideEffect="{bannerFade}"
    Works like a charm for my project.
    I hope this helps.
    Randy

  • Applet stalls or loads slowly at preload

    I'm currently working on setting up my a fairly complex flash
    forms with a lot of tabs and validation. I have to say that it
    really only loads smoothly one out of 4 times. The other times, I
    run into issues when it says "initializing" or "Loading library".
    Furthermore, it almost always stops at the library at 40%. In
    short, there are handful of things going on in the preloader that
    either lock it up or make it take close to a minute to load.
    The actual application laods great once it loads and I don't
    think people will mind waiting for a "long time" ... 10, 15... as
    long as I can tell them that it WILL load. However, I think these
    delays are very long and give the impression that they never will
    load at all. Usually, if I just keep on refreshing, then eventually
    it will load perfectly without a problem one of the times.
    I've been doing a lot of seraching and most of the time I
    just find people complaining about slow load times. However, I need
    to find a solution. I'm going to go ahead and post a link to the
    actual form and then a link to a text file that will show the code.
    Please help!
    Page Link:
    http://www.firstheartland.com/Coldfusion/leadersClubHELP.cfm
    Source File:
    http://www.firstheartland.com/Coldfusion/leadersClubHELP.txt
    [email protected]

    The map module is broken for many users of LR on OS X 10.10 (Yosemite).   See this thread in the official Adobe feedback forum: Lightroom: Issue with Map module in OS X 10.10 (Yosemite).

  • Preloader for dynamic data

    I have a script and I can't figure out how to trigger the
    preloader when the external files load
    Here is my script

    If your XML is that large it creates a delay then use the
    example for
    XML.getBytesLoaded
    (XML.getBytesLoaded method).

  • Preloader for sound files

    I don't know where to begin this task. I have a program that
    plays mp3 files off of a cast that is on a CD-Rom (The entire
    program must be run from the CD). So before each piece, the CD
    drive has to spin up and load the next piece which makes for this
    great delay. How would I go about showing a little animation (not
    necessarily are real % loaded preloader) while this delay takes
    place? So while the cd is spinning up and the piece is loading the
    user will see something happening rather than thinking something is
    broken. The program plays the pieces in order. So when one is
    finished it moves on to the next, or the user may choose which
    piece to listen to (and watch). Of course, when I run the program
    with files on my hard drive there is no delay, but I don't want the
    user to install anything on his hard drive.
    Any suggestions?

    > I'm experiencing errors, but I don't think the file is
    ever accessed.
    Again, what does the error message say?
    > The one you recommended is only for Mac
    > and I need an Xtra that works on both platforms.
    No, there is a Windows version of the xtra in the archive,
    but you need
    to use Stuffit to uncompress/extract it
    > Here is my .ini file emptyfile.ini
    > [empty]
    > empty=nothing
    >
    > Then in the StartMovie script I have
    > --keeps CD spinning
    > t = timeout().new("CD_Spin_Up", 5000, #mAccessCD, 0)
    >
    > on mAccessCD
    put "accessing CD drive"
    > tList = baReadini("Empty", "Empty", "not", the
    moviePath&"emptyfile.ini" )
    > end
    >
    > How can I tell if this file is being read.
    By examining the result of the 'read' command.
    I have added a line to the handler above. If you can open a
    run-time
    message window (_player.debugPlaybackEnabled = 1) then you
    can examine
    output. If you never see the message "accessing CD drive"
    then the
    handler isn't being called and your problem lies elsewhere.
    Are you sure the #startMovie handler is in a #movie script,
    not a #score
    or #parent script?

  • Long Delay when switching Flash cast members

    I have a movie that uses Flash cast members as sprites. The Flash members are static images and are optimized as best they can be, but they are using Background transpaerent ink and cannot be direct to stage so I know they use a lot rescources. These sprites are rotated randomly, and that is why I must use Flash members since bitmaps look terrible when they are rotated.  The user can select to change the sprite's members to display different images.  I do this by changing the memberNum property of each sprite.   When that happens on some systems there is a delay of up to 2 seconds while the new Flash cast members are substituted.  All Flash members are internal and are set to Preload before Frame 1.
    Can anyone think of what may be causing this delay?

    Firstly, I'd suggest that rather than rotating the Flash sprite it may be simpler to rotate the contents of the Flash using Flash functions built into the SWF... I'm pretty sure it would be more efficient in terms of processing. If necessary you could wrap your SWF's content into a MoveClip within the main SWF, and then spin the MovieClip using Actionscript in the SWF (if you see what I mean).
    As for the delay problem - have you tried using the sprite.member property rather than sprite.memberNum? For example:
    on changeMember me, aMemberName
         sprite(me.spriteNum).member = aMemberName
    end
    I don't know if this would side-step the problem because I've never come across it before, but it's a thought. Bare in mind that memberNum can be ambiguous because it doesn't specify which cast the member is stored in.
    Telling members to preload before frame 1 doesn't guarantee that they will be preloaded - you need to be sure that you've allocated enough preLoadRam. The following would allocate 1MB (1024 KB) of RAM for preloading
    on startMovie
         the preLoadRAM = 1024
    end
    If your SWFs are large then you may need to up the preLoadRAM value (assuming you can be sure that your users' systems will have enough free RAM).
    Finally, you can use the member.preload property to tell Director whether a SWF must load completely before it plays...:
    member("myMember").preload = true
    ... or whether the SWF can be streamed from disk as it plays...:
    member("myMember").preload = false
    I hope some of this helps.

  • Delayed response on right click of mouse in windows 8.1 updated from win 8

    dear all,
    i am facing issue with the right click of mouse in windows 8.1 which i have recently updated from my preloaded windows  8 
    which came with the pavilion g6-2231tx model of hp. 
    on right clicking the mouse i am getting delayed response and sometimes no response at all ,system hangs and freezes..
    please do help asap...
    Regards,
    SMARTSKY

    Hi SMARTSKY,
    Thank you for your inquiry, I will do my best to assist you!
    I understand that after updating to Windows 8.1, you are experiencing a difficulty with the right click on your mouse.
    Have you done all your Windows updates?
    Here is a link to a document to assist with Troubleshooting Mouse Problems (Windows 8).
    Windows 8 also has a built in troubleshooter you can utilize.
    Press the Windows key +C to open charms.
    Type troubleshoot mouse in the search bar and press enter
    Follow the on screen prompts.
    You can run The HP Support Assistant to help with HP updates and resolving issues.
    If you would like further assistance, do not hesitate to repost.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Unexplained Delay Launching Applications (two related questions)

    I apologize at the outset for the length of this message.  I've added the information accumulated after trying several Window XP forums.
    1) I'm getting a 30-60s delay launching almost any program (from Command Prompt, Notepad, through any Office 2007 application), but only the FIRST time that particular program is launched during a given "session."  (Here "session" seems to mean any extended period of inactivity, not generally a reboot or logoff/logon.)  The Windows Task Manager shows CPU usage is 99% by System Idle Process during this delay (but I can't do much else while I wait), so I have no idea what's causing the holdup.  After the machine gets "warmed up," however, there are no delays of any sort.  Any suggestions to track down the problem?
    Possibly relevant details:  Lenovo T61 (Core2 Duo), vintage June 2008, running Windows XP Professional SP2 -- factory-supplied downgrade option from Vista,  (This is a problem that I noticed shortly after the downgrade, not a "new" problem appearing on an older installation.)  All other current Windows security updates (plus Windows Search 4.0 but minus SP3, which Lenovo warns against, and minus IE 8, which is too new for my taste) have been applied.  A bunch (but far less than half) of the Lenovo preloaded software has been uninstalled.  The only security software is ZoneAlarm Security Suite 8.0.298.035.  (Yes, I did a clean uninstall of Norton before anything else.  I use ZASS "Internet Lock" a lot, and one of the many manifestations of this problem is a long-delayed response to right-clicking on the locked ZASS icon in the system tray.  Nevertheless, I did try a clean uninstall/re-install of ZASS with only a temporary improvement.  Further, the problem does not arise every time I use Internet Lock.)  Various other "tweaks" that don't seem immediately relevant have been applied, of course.
    I have another very similar installation of XP (SP3 this time), and ZASS on an older Dell laptop -- all of the same tweaks have been applied, as near as I can tell (but no Lenovo add-ons, of course) -- which shows no such problem.  This is why I suspect some interaction with Lenovo software (in addition to the fact that there is so much of it).
    The precise phenomenology of the problem is difficult to ascertain, but it seems to occur primarily after Power Options has turned the screen off for an extended period of time.  (It's not allowed to go to sleep or hibernate automatically while plugged in.)  In any case, it doesn't only happen after a reboot.  What continues to puzzle me most is that there's no indication in Task Manager of anything going on at all.
    An apparently reasonable suggestion was made that I was seeing unusually long virus scans on first launch of programs, but this doesn't seem to explain the delays:  They don't usually happen immediately after a reboot, and there's no CPU hog showing up in Task Manager when this happens.
    2) I would be most grateful for any information about which of the ThinkVantage applications is really essential for this machine (or is potentially problematic), since I would really like to get rid of more of them, thus (I hope) resolving my problem.  For example, I assume I would want to keep "Active Protection System," but I use an image-backup system so I don't really need "Rescue and Recovery."  Nor do I need the pre-installed multi-media suite -- apparently by Sonic, which also installs a very annoying "InstallShield" update manager that I cannot figure out how to disable -- especially since I prefer CDBurnerXP and Windows Media Player.  It seems that a lot of this Lenovo stuff is loaded on startup, thus consuming resources and a potential source of my problem.  Before I embark on a whole-sale un-installation of ThinkVantage software, however, I'd like to know more about what's relevant and how to restore individual packages if I find I need them.
    To take one example, the Lenovo overlay of Windows Power Manager appears to have significant additional features (e.g., CPU speed control and smart battery-charging modes), but I can't tell whether they really do anything with the given hardware or whether their benefits might be worth having the software running constantly.
    Below is a list of stuff that's set to run on startup -- most of it left over from the original Lenovo Thinkpad setup -- that I didn't dare uninstall without more knowledge.  (I checked all the potential startup sources that I know of, and the rest are empty, including win.ini/load=.  Windows Search says it's finished indexing.)  I could also send a table of running services (long!) if anyone really wants to see it...
    Directory of C:\Documents and Settings\All Users\Start Menu\Programs\Startup
    04/09/2009  01:03 PM    <DIR>          .
    04/09/2009  01:03 PM    <DIR>          ..
    03/09/2009  07:41 PM             1,753 Adobe Reader Speed Launch.lnk
    03/09/2009  07:41 PM             1,795 Adobe Reader Synchronizer.lnk
    03/10/2009  01:10 AM               643 Bluetooth.lnk
    03/10/2009  01:09 AM             1,625 Digital Line Detect.lnk
    04/09/2009  01:03 PM             1,794 Windows Search.lnk
                   5 File(s)          7,610 bytes
                   2 Dir(s)  30,908,010,496 bytes free
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    "SynTPLpr"="C:\\Program Files\\Synaptics\\SynTP\\SynTPLpr.exe"
    "SynTPEnh"="C:\\Program Files\\Synaptics\\SynTP\\SynTPEnh.exe"
    "PWRMGRTR"="rundll32 C:\\PROGRA~1\\ThinkPad\\UTILIT~1\\PWRMGRTR.DLL,PwrMgrBkGndMonitor"
    "BLOG"="rundll32 C:\\PROGRA~1\\ThinkPad\\UTILIT~1\\BatLogEx.DLL,StartBattLog"
    "TPFNF7"="C:\\PROGRA~1\\Lenovo\\NPDIRECT\\TPFNF7SP.exe /r"
    "TPHOTKEY"="C:\\Program Files\\Lenovo\\HOTKEY\\TPOSDSVC.exe"
    @=""
    "TpShocks"="TpShocks.exe"
    "SoundMAX"="C:\\Program Files\\Analog Devices\\SoundMAX\\Smax4.exe /tray"
    "NvCplDaemon"="RUNDLL32.EXE C:\\WINDOWS\\system32\\NvCpl.dll,NvStartup"
    "nwiz"="nwiz.exe /installquiet /keeploaded /nodetect"
    "TVT Scheduler Proxy"="C:\\Program Files\\Common Files\\Lenovo\\Scheduler\\scheduler_proxy.exe"
    "SunJavaUpdateSched"="C:\\Program Files\\Java\\jre1.5.0_06\\bin\\jusched.exe"
    "DLA"="C:\\WINDOWS\\System32\\DLA\\DLACTRLW.EXE"
    "ISUSPM Startup"="C:\\PROGRA~1\\COMMON~1\\INSTAL~1\\UPDATE~1\\ISUSPM.exe -startup"
    "ISUSScheduler"="\"C:\\Program Files\\Common Files\\InstallShield\\UpdateService\\issch.exe\" -start"
    "AwaySch"="C:\\Program Files\\Lenovo\\AwayTask\\AwaySch.EXE"
    "NvMediaCenter"="RUNDLL32.EXE C:\\WINDOWS\\system32\\NvMcTray.dll,NvTaskbarInit"
    "TPKMAPHELPER"="C:\\Program Files\\ThinkPad\\Utilities\\TpKmapAp.exe -helper"
    "SoundMAXPnP"="C:\\Program Files\\Analog Devices\\Core\\smax4pnp.exe"
    "ZoneAlarm Client"="\"C:\\Program Files\\Zone Labs\\ZoneAlarm\\zlclient.exe\""
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
    "ctfmon.exe"="C:\\WINDOWS\\system32\\ctfmon.exe"
    Again, thanks in advance for any help (if indeed anyone reads this far). -- JCW
    Solved!
    Go to Solution.

    jcw2, nothing to worry about 
    Most of these have are listed in the processes beacuse they are in the system startup(you mentioned it yourself).You explained in your post that you were willing to replace sonic record now.removing these from the startup donnot mean that they are "un-installed" from the system.It will only help you in increasing your boot time to your desktop.I only recommended removing these from the startup items only!
    Removing any thinkvantage utility program is at your own discretion,it depends on what you want to use and what you dont.If you have observed my post correctly i have not mentioned anywhere about removing thinkvantage utilities from startup, I am not aware of thinkvantage utilites on a thinkpad. 
    now let me explain why i suggested you to remove them only from  startup
     1.adobe synchronizer
    The Adobe Synchronizer is a networking agent that is used to build disconnection tolerant applications. The Synchronizer provides a local copy of data on a server so that applications can utilize it regardless of network connectivity. As data changes on the server, Synchronizer updates the local copy and as the user publishes changes made locally, Synchronizer makes the modifications to the server
    2.adobe speed launcher
    The Speed Launcher runs automatically when your computer starts. The Speed Launcher is not required in order to use Acrobat  or Adobe Reader . However, if you disable the Speed Launcher you may notice an increase in start time when you run Acrobat  Acrobat 3D or Adobe Reader  
    3.Soundmax
    only removes the system tray icon of analogdevices(soundmax digital audio)
    4. jusched.exe:
    A background process of sun microsystems  which checks for java updates.It uses  an active internet connection as well in the background.you will not require this program unless you are using java based applications or the java runtime environment(if you want to update java you can go to control panel options an update it from there)
    5. DLACTRLW.EXE:
     What does DLACTRLW.EXE do?The Drive Letter Access component allows you to drag and drop files directly to the CD-R or DVD-R drive on your computer, just as you would to any other folder. It writes the files onto the CD as you copy them, taking a lot of the complication out of burning CD or DVD discs with Windows.
     Is it necessary?Only if you actively use the feature. If you burn CDs and DVDs in a traditional way, such as starting up the CD-writer application and choosing files from there, then you can safely disable this program from running at startup.
     I donot know what utilites  you tend to use from the thinkvantage menu so cant answer regarding those processes.
     Hope my info helps you
    Message Edited by vijaysaradhi on 05-22-2009 09:21 PM
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • OSB project artifacts first time loading causing delay

    Hi,
    We are facing a delay between our proxy service and business service. The proxy service is loading its WSDL and schema from a common project which is having around 2500 wsdls and 6000 schema. The delay occurs first time we hit the service and again after 10 mins or sometime after 1hour. If we hit the service just after first time hit, then we don't see any delay between proxy service and business service. We have tried using routerruntimecachesize property but its not helping much as we only have 60 proxies and the default value for routerruntimecachesize is already 100.
    Please suggest if you have faced this issue and if there is any tuning or change that we can do. This has become blocker for our go live.
    Thanks

    All the symptoms you quote sure sounds like a bandwidth issue to me. 
    Obviously when you load a project directly from your hard drive then there's no issue with bandwidth.  But if you're pulling down 10 megs from a web server and it takes a while to start then bandwidth is the obvious issue.  I agree that 3-4 minutes sounds excessive for a 10 meg file but that depends entirely on how many users are sharing your bandwidth.  Try getting your people in these different locations to visit one of those websites that allows you to test your actual bandwidth.  It might not be as much as you think.
    On another note...What do you have your preloader set to?  The default is 100% but you can usually set it to something like 25% without too much trouble.  That should cut the start time down appreciably but nothing is going to eliminate it completely because there'll always be some initial lag the first time your learners view the content.

  • Preloading Queries via ABAP

    Hello Experts,
    Using standard below function modules I want to preload queries with variants.
    RRI_REPDIR_READ
    RRI_REPORT_GENERATE
    RRX_REPORT_OPEN
    RRX_VARIABLES_FLUSH
    RRX_GRID_CMD_PROCESS
    RRX_REPORT_CLOSE
    All abap staffs are ready, but somewhere deep inside the sap someone hide an functionality to start sap function modules one after another automatically.
    All is ok when i'm starting it by hand one after another, but when i'm trying to start it via function module (also via RFC), another report (submits with different background jobs) or a process chain, even when I set a huge delay between respective queries only the last query has working entry in cache. Sap for unknown reason not used the rest of good entires. I suppose that one of user temporary table should be cleaned before report runs. 
    Did you have similiar situation with starting report or fm automatically one after another?

    HI Karl,
      Some good news for you ! I know for sure that Blackberry is supported by SAP, because I saw their demo of Travel Expenses and Time Sheets applications on the Blackberry devices !!!
      I also heard, that there are some limitations on what you can do with BW reports on Bleckberry device, e.g. you can see pre-configured report, but can not drill it down.
      Here is another quote from SAP: "Every mobile application based on WebDynpro is rendered appropriately for a BlackBerry device.
      For user convenience, SAP has integrated single sign on to SAP systems via the BlackBerry device. The user only has to enter the password to unlock his BlackBerry, and is able to access SAP applications online without any further logon screens".
      To get more detailed info on your query, you may contact one of the following guys in UK, who can have first-hand info:
      - Alberto Zamora (Solution Principal, SAP Mobile Business): [email protected]
      - Nicola Grant (Business Manager, O2 Solutions): [email protected]
      - Nicole Van Gheluwe (Alliances Marketing Manager, EMEA, Research in Motion): [email protected]
      Hope it helps.
    Best regards,
    Laziz

Maybe you are looking for

  • Get the user name of  sso user who  logged in from my partner application

    Hello, I have created a jsp web application and i registered it under oracle sso server. How can i get the user_name of the user logged in to the sso server from my web application in order to personalize my web page ??? Thanks in advance.

  • Cloing HD reality check please.

    HD on my Imac g5 is failing-S.M.A.R.T. error. I have a replacement but I want to clone my drive to save all the data a programs that are installed on the existing disc. Q1: Since I have a new drive, would it be logical to buy an external enclosure an

  • Activate function "Duplicate Line" in a UDO - SAP 8.8

    He everybody, I've created a basic UDO in SAP 8.8... How can I activate "Duplicate Line" function in this UDO, like exist in SAP B1 default forms?? It is possible?? Rgrds, Wagner

  • Home Sharing - controls?

    I have a 1st generation IPad and a 2nd generation IPad along with an Iphone 4. I have setup each of these on the home sharing though Itunes however my 10 yr old uses the 1st IPad and I do not want her to have access to all of the movies which I have

  • XDCAM offline-online editing

    I'm trying to edit XDCAM offline, but can't really find a useable workflow. What I've tried so far is: 1) Convert XDCAM files in Media Encoder to DV 2) Edit DV 3) Mark DV-Clips as offline 4) Re-Link with XDCAM clips The problem is the XDCAM folder-st