Flash movie interactive

Hello,
I imported a Flash movie (created in 8, saved in 6 to work
with Captivate). It's a graphic of an engine with a list of engine
parts on the left. The student needs to drag the engine part name
to the engine part in the graphic. My question is: Does Captivate
allow for an imported Flash to be interactive?
The inverse of that question would be this question: If I
exported the entire Captivate project to Flash (it's about 5
slides), what is the latest edition of Flash that will work with
Captivate? I tried exporting the project to Flash 8 and got a
warning that the latest Macromedia version that works is 2004, but
I have since upgraded to Macromedia Studio.
I'm just looking for whatever scenario will allow my cool
Flash drag n' drop to be a part of this Captivate-created practice
test.
Thanks!

Hi naimahav
Take a look at the following link and you be the judge as to
whether drag-n-drop can be used in a Captivate movie...
Click here to
see the page
Captivate can be coaxed to work with Flash 8. Take a look at
the link below for details.
Click here to read the
TechNote
Cheers... Rick

Similar Messages

  • Flash Movie Interactivity

    I am an intermediate flash developer trying to understand
    this dynamic app. But I am having some interactions problems. I
    could really use some help. I have some buttons on my stage. I
    would like to have them load a clip onto the stage, but first
    remove the previous viewing clip before loading the new clip. Can
    someone help me with this please? I know it involves some action
    scripting. I am not sure which needs the action script
    though.

    if you want to display a transition from one swf to the next
    you'll need, at least, two target movieclips. one to contain the
    current swf and the other to contain the next swf that's to be
    displayed.
    the next swf should be loaded into a target that has
    _alpha=0. when loading is complete you'll start the transition of
    the currently loaded swf (to "zoom" and "fade out"). sometime prior
    to or when that zoom and fade are complete you'll start the
    transition for the next swf to display.
    the next swf to display will load into the previously zoomed
    and faded-out target movieclip.

  • Integrate an interactive flash movie into a Java component?

    Is it possible to integrate a flash movie into a Java component? - say by shoving a certain web page into a JEditorPane (content type = html)? - even if java doesn't know anything about it?

    Theoretically... yes.
    You would have to write a java flash player... so... no - for real.

  • How can HTML call a Flash movie?

    Greetings Everyone!
    I'm sincerely hoping that someone has the answer for me. I'm
    a newbie, but trying so very hard to understand... :) I've read
    books, pages & pages of this forum, 'net searches - I haven't
    found a complete answer to my challenge so far - thanks in advance
    for any help you can give...
    Here's where things are:
    1) I've created a series of swf Flash movies that loop (at a
    particular size so they can play inside of an html table cell)
    2) I've created html buttons in another cell
    What I'm trying to do:
    1) Like a swap file in HTML (where you click a button and an
    image changes elsewhere on the page, click another button, and that
    image swaps to a different image file)
    I want to have a flash movie play on a click of a button, click
    another button, and a different flash movie plays in the same
    spot.
    The challenge is the interaction between Dreamweaver and
    Flash and getting HTML to talk to Flash.
    Here's the code direction I've been heading ...
    ...IN MY HTML code...
    I have a onMouseClick event for each button link. In this
    code I set some variable names inside it.
    onMouseClick="setFlashVariables('sendmovie','myMovie=activeMovie1')"
    ---- this would be for button 1.
    onMouseClick=
    "setFlashVariables('sendmovie','myMovie=activeMovie2')" ---- this
    would be for button 2
    onMouseClick
    ="setFlashVariables('sendmovie','myMovie=activeMovie3')" ---- this
    would be for button 3
    Basically, I'm setting a 'myMovie' variable to 'activeMovie1'
    or 'activeMovie2' or 'activeMovie3' when one of the buttons is
    clicked.
    If 'myMovie' variable is equal to 'activeMovie1' by clicking
    a link, this will tell a flash movie: (" Hey flash! Variable
    'myMovie' is equal to 'activeMovie1'. Act accordingly."). When the
    2nd button is clicked, 'myMovie' will be equal to 'activeMovie2'
    and so on.
    I need to declare the 'myMovie' variable in my flash movie -
    how do I do that?
    ...IN FLASH...
    1. I need to create one variable which will act as a variable
    receiver from HTML. (What I called "myMovie")
    2. I gather I need to create an IF statement so that
    "myMovie" is set to which "activeMovie" ( it could be
    activeMovie1/activeMovie2/activeMovie3 etc ) ,
    ----->Question:
    Where should the IF statement be and
    How should it be written?
    Admittedly I don't know Action Script 3 very well.
    if myMovie is equal to "activeMovie1"
    then load a movie. (This movie will be a movie related to my
    1 Button.)
    else if myMovie is equal to "activeMovie2"
    then load a movie. ((This movie will be a movie related to
    your 2 Button.)
    else if myMovie is equal to "activeMovie3"
    then load a movie. ((This movie will be a movie related to
    your 3 Button.)
    Here's where I'm stuck....
    1) If I've already made my movies into swf files where does
    an IF statement go?
    2) I'm missing the mechanics of how to connect the dots here
    - how do I get button 1 to load movie 1 and start playing
    automatically? When I click button 2, movie 1 is replaced by movie
    2 and starts playing automatically.
    It's a detailed explanation (I know) - I'm hoping someone has
    an answer for me that's equally explicit. Thanks so much much for
    taking the time to read it!!

    Anybody?

  • Flash movie controlling Captivate navigation in an Aggregator project

    Hi everyone,
    I have a Flash movie which shows a Continue button after an interaction is completed by the user. This functionality prevents the user from clicking through the interaction slides so there is no captivate playbar or nav available. This Continue button works fine in advancing the Captivate movie that contains the Flash movie while published as an individual captivate file. However, when I take that published captivate movie and load it into an aggregator project, the communication of the cpCmndGotoSlide variable does not function properly. I'm using the following code in the Flash movie:
    // captivate access...
        var myRoot:MovieClip = MovieClip(root);
        var cptxMovie:MovieClip = MovieClip(myRoot.parent.root);
        var slide:String = cptxMovie.cpInfoCurrentSlide;   // get current slide for workaround below
    // Continue button handler...
    // cptxMovie.cpCmndNext = 1;  // wouldn't work at all
    var theNextSlide:Number = Number(slide) + 1;       // workaround for cpCmndNext not working
    cptxMovie.cpCmndGotoSlide = theNextSlide;
    Is this because I'm calling the root, and the root is the outermost parent (the aggregator movie) and I need to communicate with the immediate parent of the flash movie (the submodule captivate)?
    How can I access the intermediate captivate while it is in aggregator?
    This is an AS3 flash and captivate and I'm using Captivate 5.
    Thanks in advance!
    Brian

    Hi Tristan,
    Thanks for the reply and the great code!
    I tried it out and got the dynamic text field to display that it had found the main timeline, however, it still would not advance properly. Maybe I'm not doing something right with it. Here's how I had it:
    // captivate access...
    var cptxMovie:MovieClip = getParentWithProperty("cpCmndGotoSlide", this);
    var slide:String = cptxMovie.cpInfoCurrentSlide;
    function getParentWithProperty(propertyName:String, startFrom:DisplayObjectContainer):MovieClip {
              if (startFrom.hasOwnProperty(propertyName)) {
                        trace("Found the Captivate Main Timeline");
                        checkCode.text = "Found the Captivate Main Timeline";
                        return startFrom as MovieClip;
              else if (startFrom == stage) {
                        trace("Could not find the Captivate Main Timeline");
                        checkCode.text = "Could not find the Captivate Main Timeline";
                        return null;
              else {
                        return getParentWithProperty(propertyName, startFrom.parent);
    // advance button handler...
    function advance(e:Event):void {
              for (var i:uint=0; i < orangeCircleArray.length; i++) {
                        orangeCircleArray[j].removeEventListener(MouseEvent.ROLL_OVER, onRollover);
                        orangeCircleArray[j].removeEventListener(MouseEvent.ROLL_OUT, onRollout);
              var slideNum:Number = Number(slide);
              var theNextSlide:Number = slideNum + 1;
              cptxMovie.cpCmndGotoSlide = theNextSlide;
              btnContinue.removeEventListner(MouseEvent.CLICK, advance);
    Thanks! Brian

  • Need help with FLV type SWF playback in flash movie

    Hi,
    I have three external SWF files from a client without FLA
    sources. The SWFs were done 3 years ago by someone else so there is
    no way to modify the existing SWF files. These contain no
    interactivity but may involve nested clips on the main timeline.
    They are AS1 or AS2 files so they need to be done with AS2
    scripting to keep it simple.
    I need to call these SWF files inside another flash movie and
    play them in a player window as if they were video files with
    play/pause, seekbar and volume controls. The needed functionality
    is similar to FLV players. My controls will use custom graphic
    buttons and sliders mimicking the look of CNN video player window.
    Does anyone know a good tutorial on how to script these
    controls for SWF?
    Most likely I think I will load it in a clip and I am
    thinking that I will need to get the duration of the loaded swf in
    order to set up the seekbar.
    Thanks in advance,
    Attila

    I think your professor, or somebody, gave you directions with ActionScript 2 programming. In AS2, what oyu have here would have worked just fine. But, in AS3, you need to use a fairly different approach. Your buttons, and their instance name, can remain the same. But now, in AS3, you have to add event listeners in the following manner:
    yourButtonName.addEventListener(MouseEvent.CLICK, yourListenerFunction);
    In your case, you can do one of two things - A) assign a unique listener function to each button, or B) assign the same listsner to both functions:
    A)
    start_btn.addEventListener(MouseEvent.CLICK, startPolygon);
    stop_btn.addEventListener(MouseEvent.CLICK, stopPolygon);
    function startPolygon(e:MouseEvent):void{
        polygon.play();
    function stopPolygon(e:MouseEvent):void{
        polygon.stop();
    B)
    start_btn.addEventListener(MouseEvent.CLICK, controlPolygon);
    stop_btn.addEventListener(MouseEvent.CLICK, controlPolygon);
    function controlPolygon(e:MouseEvent):void{
       if (e.target.name == "start_btn") {//Test for the name of the object that dispatched the CLICK event
          polygon.play();
       } else if (e.target.name == "stop_btn") {
          polygon.stop();
    When I'm using several buttons that do the same/nearly similar things, I favor approach B over A, as it keeps me to jsut one single function to deal with.

  • How To Get Adobe Flash Movie To Work On Another Computer?

    Somebody please please help me.
    I use a English language Windows operating system, forgive me.
    I made an interactive book in Adobe Indesign CS 5. The content, which are all graphics, was all originally created in Adobe Illustrator CS5, but I exported it into SWF.
    The end result was that I have this interactive book, a mirror of the printed version – which itself is formatted in Adobe Indesign CS5 – that I exported to Flash Movies.
    On my Computer I can operate the interactive book and all is fine, I can see the interactive version of the printed book I have Adobe Suite CS 5.
    However when I download the end result to a CD Rom and try to play it on another computer, which has no Adobe software, it doesn’t work. My questions are the following 
    1.       What software does another computer that is working on Microsoft Vista have to download so they can see the developed interactive book?
    2.       What software does another computer that is working on Apple OS have to download so they can see the developed interactive book?
    Will someone who has a non-English OS, for example Japanese or Chinese, need to download anything else to see the developed interactive book?
    Thanks In Advance
    I'm Going Mad.
    Gary.

    Thanks again for your reply.
    Eventually what I've done is convert the swf files to exe files and they work on all PCs, no matter whether the OS is English, Japanese or Chinese.
    The way I did it was from
    http://forums.adobe.com/thread/212109
    'to convert a swf to exe just open the swf alone then go to file > create projector this will create a standalone exe file that will run on virtualy any PC computer with or without the flash player '
    The above is for anyone else who has to make a digital interactive book.
    Thanks though ʇɐb ɹəuəllıʍ and you have a nice weekend.
    Gary.

  • How To Get Adobe Flash Movie To Work On Another Compter?

    Somebody please please help me.
    I use a English language Windows operating system, forgive me.
    I made an interactive book in Adobe Indesign CS 5. The content, which are all graphics, was all originally created in Adobe Illustrator CS5, but I exported it into SWF.
    The end result was that I have this interactive book, a mirror of the printed version – which itself is formatted in Adobe Indesign CS5 – that I exported to Flash Movies.
    On my Computer I can operate the interactive book and all is fine, I can see the interactive version of the printed book I have Adobe Suite CS 5.
    However when I download the end result to a CD Rom and try to play it on another computer, which has no Adobe software, it doesn’t work. My questions are the following 
    What software does another computer that is working on Microsoft Vista have to download so they can see the developed interactive book?
    What software does another computer that is working on Apple OS have to download so they can see the developed interactive book?
    Will someone who has a non-English OS, for example Japanese or Chinese, need to download anything else to see the developed interactive book?
    Thanks In Advance
    I'm Going Mad.
    Gary.

    Thanks Ned for the quick reply.
    Forgive me my ignorance but
    1. Can they download the Flashpayer without an internet connection - a stand alone version of both Microsoft and Apple - and where can I get such a stand alone version so that I could include it with the CD Rom package of the interactive version of the book?
    2. If their computer is operating on a Japanese or Chinese version of Microsot/Apple, do they need a a specific language version of a Flash player download that would enable them to see the interactive book that I created in an English version of Adobe Indesign CS5 and exported to an English version of Adobe SWF movie?
    Thanks again for the quick reply.
    Gary.

  • Please Help!!!!!dynamically changing a flash movies size...

    Hi i'm working on my final year dissertation and have become
    intensely stressed out/frustrated & almost mental in achieving
    this particular aim!!!!
    what i need to know is how to
    dynamically change a flash movies document size in real time,
    without squashing or stretching the content,much like the banner
    adds frequently seen on hotmail by companies such as orange,lexus
    etc.. where the flash movies size expands on interaction
    Help on this will be greatly greatly appreciated!!
    Thank you.

    RE: "P.S. I  found it aggravating that I couldn't copy and paste text  here, it wanted me to insert as a link or an image, how do you insert plain  text?"
    I take it you tried using the "right click" menu?   That doesn't seem to work, as you noted, but, you should be able to paste text by pressing your CTRL key  and while holding it down, press the "V" letter  key.
    CTRL + C = COPY
    CTRL + X = CUT
    CTRL + V = PASTE
    HTH,
    Ortho_Fan

  • How large can a flash movie be ?

    i am buiilding a larger interactive site than i have before,
    that contains a lot of images.
    i haven't posted it on the web yet, but in testing the movie
    it seems to freeze or go extremely slowly while "exporting flash
    movie "
    is there a limit to how much you can put in a flash movie,
    and what is it ?

    Probably the limit of what you can stand! There is a limit of
    16000 frames in the timeline, but that probably isn't what you are
    running into here.
    If you have lots of images and maybe some video, and your swf
    is maybe over 1Meg or even 500K then perhaps you are taking the
    wrong approach. You should probably look into having external
    assets that are cleverly preloaded just when they are needed.
    This will cut down on publish time, but will also produce a
    better experience for the end user and allow the flash player to
    better manage memory usage.
    Look into the MovieClipLoader class.

  • Adobe Flash Media Interactive Server 3.5

    Hey, I am thinking about making a web site that streams HD movies and videos that I have created myself. I was wonder could you use Adobe Flash Media Interactive Server 3.5 to do so I know i would have to buy a dedicated server and a fast one with a good load of bandwidth. The big question am asking is that can you base a website or content management system around the interactive server.

    FMS isn't reall suiatable for serving a website or CMS. I suppose you -could- use the included Apache installation to handle your HTTP traffic, but it would require installing a database, an application server, and whatever else you would need. You'd then need to maintain the installation yourself... FMS doesn't have any sort of package manager to handle updating Apache or anything else you might want to attach to it.
    I think you'd be better off using a package manager like Plesk or Cpanel, and let it take care of your httpd server and supporting services. My advice is to just use FMS for purposes that specifically call for it.

  • Flash movies in html

    I am having difficulty impanting a flash movie into my
    homepage. You can see my problems at the link below:
    VIEW SITE HERE
    problems:
    1. The drop down menus from my navigation bar fall behind the
    flash movie. I've tried working with layers, but I can't figure out
    how to get the flash movie to fall behind.
    2. The flash movie contains interactive content, but you have
    to click once on the movie itself before you can scroll over and
    see the interactive parts.
    How can I fix these problems? Any help is much appreciated.

    > 1. The drop down menus from my navigation bar fall
    behind the flash
    > movie.
    > I've tried working with layers, but I can't figure out
    how to get the
    > flash
    > movie to fall behind.
    All Active content on a page will always rise to the top, so
    to speak,
    including Flash, certain form elements, Java applets, and
    Active X controls.
    This means that each of these will poke through layers. There
    is not a good
    cross-browser/platform reliable way to solve this issue, but
    if you can be
    confident in your visitors using IE 5+ or NN6+, then you can
    use the Flash
    wmode parameter (however, Safari does not support this
    properly!).
    Adobe articles:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15523
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14201
    > 2. The flash movie contains interactive content, but you
    have to click
    > once
    > on the movie itself before you can scroll over and see
    the interactive
    > parts.
    It's IE-only behaviour as a result of changes Microsoft made
    several
    years ago to their browser, regarding how Active Content
    (Flash, Quicktime
    etc)
    is handled, after losing a high profile court case.
    http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/
    Background:
    http://en.wikipedia.org/wiki/Eolas
    See also
    http://www.adobe.com/devnet/activecontent/
    If you're running Dreamweaver 8.0.2/CS3, the fix is already
    built into DW's
    interface.
    If not, try
    http://blog.deconcept.com/swfobject/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "GUwebmast" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am having difficulty impanting a flash movie into my
    homepage. You can
    >see
    > my problems at the link below:
    >
    >
    http://barney.gonzaga.edu/~outdoors
    >
    > problems:
    >
    > 1. The drop down menus from my navigation bar fall
    behind the flash
    > movie.
    > I've tried working with layers, but I can't figure out
    how to get the
    > flash
    > movie to fall behind.
    >
    > 2. The flash movie contains interactive content, but you
    have to click
    > once
    > on the movie itself before you can scroll over and see
    the interactive
    > parts.
    >
    > How can I fix these problems? Any help is much
    appreciated.
    >
    >
    >

  • Totally new to flash, editing interactive cd

    Hi i am completely new to the whole aspect of flash and dreamweaver etc. and have recently been given a project of editing an interactive CD rom which was produced for a client by an outside company.
    I have managed to grab the basics of changing the text and the images and stuff, but when i export it as a .swf flash movie, when i view the cd, all of the slides come on in very quick succession, it is supposed to be the first slide and then you click on a "next" button for each other slide, i know i've messed with the interactive elements somehow but i don't know how, or how to fix them as i haven't got a clue about the interactive aspects to flash.
    Any help with this would be greatly appreciated!
    Thanks.

    If the intention is to stop in the first frame, then you need a stop(); command all by itself on the timeline, not on the button.  Select frame 1 and in the actions panel type:
    stop();
    For your button code, having a stop(); in it doesn't do anything for you.  If the intention is to click the button to go to the next rame then you only need...
    on(release){
         nextFrame();
    The nextFrame function advances the timeline to the next frame and stops it there.

  • Flash movie not playing in Catalyst

    I'm a novice to FC, but have some website design experience.
    With that said, I'm having a hard time figuring my problem out. I created a interactive tour for the non-profit organization that I work for, everything works perfectly when I preview it in catalyst. However, when I publish it to dreamweaver and import it two things happen when I preview it in a browser. 1. the sound that I have during a mouse over doesn't work. 2. All of my five panels have short 2-3 min. flash movies that will not play.
    If I play the swf in dreamweaver everything works, it's just when I preview it in a browser that it fails. I have tried both the "insert swf" option and the html code. In the html code the sound happens during a mouse over but the videos still won't play. I have tried to look through the flash code but can't find the link to my media. Please, Please help.
    One more note: I have tried to save the movie in both FLV and FL4 format with no luck either way.

    Hi Jim,
    Due to Flash Player security restrictions, you usually can't use the same SWF file both for previewing locally and for uploading to a website.  Basically, the rule of thumb is:
    If you're looking at a file:// URL, you need to use the run-local folder's contents
    If you're looking at an http:// URL, you need to use the deploy-to-web folder's contents
    So, when working locally in Dreamweaver you'll want to use run-local, but then substitute deploy-to-web when you're ready to upload your site to a webserver.  If you want to make sure your substitution worked, you can always upload to a temp "staging" folder on your server and then test it in your browser before going fully live with the content.
    - Peter

  • Captivate/Flash Movie Starts Automatically

    I'm learning to use RoboHelp X5 and tried placing an .swf
    (Flash movie) that I created with Captivate within my WebHelp. In
    Captivate I added a playback control bar (forward, pause, play,
    etc.), which works great standalone. However, after generating the
    WebHelp, when I view the page that the movie is on, the movie
    starts automatically---actually it waits about 8 seconds, but then
    just starts. I would expect the person viewing the movie to have to
    use the playback control to manually start the movie. Is there an
    option somewhere that I need to turn on/off?
    Thanks,
    John

    Hi John and welcome to the community
    There are two ways I'm aware of that can be used to
    accomplish this.
    The first and possibly simplest way is to simply insert a
    click box at the very beginning of the movie. By default, click
    boxes are configured to pause the movie until the user interacts by
    clicking the click box area. Actually, if you are presenting your
    movie in .EXE format, I believe this is the only way you can
    accomplish it.
    The second way is to configure the HTML code used in the HTML
    Companion page. Obviously this only works if you are presenting
    your movie in .SWF format and using the companion HTML page to
    display the movie.
    Captivate creates the following code when you create Flash
    (SWF) output and select the Export HTML option.
    <!-- saved from url=(0013)about:internet -->
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    <title>Movie Title</title>
    </head>
    <body>
    <center>
    <object classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    width="640" height="480" ID="Captivate1">
    <param name="movie" value="MovieName.swf">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="loop" value="0">
    <embed src="MovieName.swf" width="640" height="480"
    loop="0" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" menu="false"></embed>
    </object>
    </center>
    </body>
    </html>
    If you amend this code by inserting <param name="play"
    value="false" /> and play="false", you achieve the goal of
    displaying the movie in a "paused to begin with" state.
    Amended code is below
    <!-- saved from url=(0013)about:internet -->
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8">
    <title>Movie Title</title>
    </head>
    <body>
    <center>
    <object classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
    width="640" height="480" ID="Captivate1">
    <param name="movie" value="MovieName.swf">
    <param name="play" value="false" />
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="loop" value="0">
    <embed src="MovieName.swf" play="false" width="640"
    height="480" loop="0" quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" menu="false"></embed>
    </object>
    </center>
    </body>
    </html>
    Hope this helps... Rick

Maybe you are looking for

  • Folder in iPhoto not Visible with Apple TV

    I've had the new Apple TV for about a month now and love it. I created a folder/event in iPhoto to move a bunch of photos to so I could use as a screen saver when I play music. I can see the folder and it's contents in iPhoto, but when I go to Apple

  • Re: Satellite L550-11J - Crashes if I play a game

    Modell Nr. : PSLN8E-012013GR Installed: Windows Vista Ultimate 64bit ( all drives at latest version ) Hi, I am presuming that the main fan of my L550 is not running correctly. For example I want to play a high detailed game with DX10, every thing run

  • How to get active session details

    Dear all in my application i want to display number of users online in a list and their details,for that how can i get the active session details in a jsp , or any other ways to do this.any suggestion regarding this is very much helpful to me. thanks

  • Query Selection Critieria

    Hi experts, My users would like the query selection critieria to allow them to choose a particular selection or select all results For example: Where t0.slpname = [%0] will allow them to select a particular salesperson for the query results. Is there

  • Problems creating JCO connector

    We are having some problems when attempting to follow the steps indicated in the Post-Installation Slide Deck of RAR version 5.3. In step 4 (Create JCO Connectors) we are not able to create a new JCO connector associated with the given models in the