Can Flex do this?

Hi there,
I'm currently trying to figure out whether Flex is the best option for a new interactive educational program I'm involved in, and was wondering if anyone could let me know if Flex would be suitable to accomplish the following tasks:
1. I have a 270 degree video, about 400-500px high, however I only want to display approx. the center 120 degrees (700-800px) of it at a time. Can I make it so that the user can hover over the left of the screen (or click a button) to pan the viewer to the left or right, to view the remaining video (somewhat like the Immersive Media viewer - http://www.immersivemedia.com/#demo34). The video itself will be streamed via a high speed educational network so load times should not be an issue.
2. Since the video will be spherical, can (or should) it be mapped onto the inside of a sphere (I think this is how it needs to be done)? It seems the immersive media viewer works like this too.
3. Is it possible to blur the video slightly, in such a way that when you move the mouse over the video, the portion of the video within 100px or so from the cursor becomes clear? For example if theres a road sign in the video, you would need to move your mouse over it to be able to clearly read the roadsign.
4. Obviously this is a big, complicated job, so would you recommend spending a fortune getting a advertising agency to take care of it (with much of the budget making the directors rich), or are there specialised independent Flex developers out there that could get the job done well? Could be difficult since I am in New Zealand and we'd need someone local.
If Flex cant do any of this, could you recommend a way that would work (eg Silverlight - god forbid, I hate microsoft)?
Thanks in advance for your advice!
-Dave

Do this in Flash and then publish a SWF. You can then load this SWF in a Flex app and have it part of a more rich UI with a vertical TileList to select videos, etc.
See these links for help on incorporating SWFs built in Flash into Flex applications:
http://www.onflex.org/ted/2007/11/runtime-flash-cs3flex-integration-via.php
http://ria.dzone.com/news/passing-data-between-flash-and
http://weblogs.macromedia.com/pent/archives/2007/04/example_of_the.html

Similar Messages

  • Can Flex be used to design online questionnaire?

    I am completely out of my depth here, but I am looking to purchase a program that can be used to design my own online questionnaire. I would like the following features:
    1) abbility to generate followup questions (guided by input)
    2) hyperlinking / "hover over" help  to guide answering the questionnaire
    3) Dropdown boxes / databases to provide choices for answers
    4) Be able to generate reports from the answers given
    5) add images and perhaps sound bites
    Can Flex do this???

    Michael,
    Thank you for your input. I downloaded a trial of Captivate 4. It is indeed impressive. However, I do have some difficulty figuring out how to branch my questions, (exclude certain questions depending on prior answers).
    Also, is there a way that would accomplish the following:
    Q1: Do you have high blood pressure?
    A: Yes
    B:No
    Q2: Is your blood pressure well controlled?
    A:Yes
    B: No
    Can one generate a predesigned form or report (Certificate) that will read (amongst other responses) as follows:
    "Mr Smith has hypertension that is poorly controlled".
    If Q2 was answered as "yes", then the report will read:
    "Mr Smith has hypertension that is well controlled."
    Thanks
    Jan

  • How can i produce this type of line chart (yield curve) by using flex2 charting?

    help! I am a flex newcomer, how can i produce this type of
    line chart (yield curve) by using flex2 charting? Anybody can teach
    me how can i customize the width of each scales as below of line
    chart? anybody know this?
    Click
    Here To See

    I need to show the X and Y Co-ordinate in a message when I click on the graphic's point.
    thanks for the tips, I´ll try to understand the sample program.
    Noguti

  • Vurgent...help required. Can any1 solve this...

    Hi! I am new bie to flex. I am using flex builder3 to stream video from a streaming server. I have to complete this project in few days.
    To do that i am first of all trying to display a video from local computer. Its fairly simple to do that using video display component.
    Now i was trying to do that using action script. I am having lot of queries regarding that:
    1) Whenenever i try to make a separate action file, even a simple example as hello world: compiler shows an error message that "Packages cannot be nested". What do v mean by this error, and how can i remove this error.? the code i write is for eg.
    package         
      public class abc
              function xyz() : void
                             //code
    Such a simple code also give above error.
    2) Second, to display video using action script, I write code in action script file using netconnect(),netstream, video class.
         (i) First above error comes(that packages cant be nested) ,
         (ii) If i try to write this code in a function instread of in a package /class; it is not able to connect to that file.
    3) Can anyone provide running code for this. I tried code given in help contents, but couldnot get it t work.
    Any help in this regard will be greatly appreciated.
    Thx for reading.
    prd

    hi,
       probbably you are not writing this code in separate as
      you need to create separate actionscript file with name 'abc.as' for that in your project src folder and the paste that code in it
      the name of actionscript file should be same as your class file.
      you can do this by clicking
       file->new->ActionScript Class this will open new dialog
      enter your class  name in the name textbox and click finish
       now you can use this class in your main project easily
      by importing it
      import abc;
      then you will probbably call its constructer to use it
      var myabc:abc=new abc()

  • How  can i run this code correctly?

    hello, everybody:
        when  i run the code, i found that it dons't work,so ,i  hope somebody can help me!
        the Ball class is this :
        package {
        import flash.display.Sprite;
        [SWF(width = "550", height = "400")]
        public class Ball extends Sprite {
            private var radius:Number;
            private var color:uint;
            private var vx:Number;
            private var vy:Number;
            public function Ball(radius:Number=40, color:uint=0xff9900,
            vx:Number =0, vy:Number =0) {
                this.radius= radius;
                this.color = color;
                this.vx = vx;
                this.vy = vy;
                init();
            private function init():void {
                graphics.beginFill(color);
                graphics.drawCircle(0,0,radius);
                graphics.endFill();
    and the Chain class code is :
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        [SWF(width = "550", height = "400")]
        public class Chain extends Sprite {
            private var ball0:Ball;
            private var ball1:Ball;
            private var ball2:Ball;
            private var spring:Number = 0.1;
            private var friction:Number = 0.8;
            private var gravity:Number = 5;
            //private var vx:Number =0;
            //private var vy:Number = 0;
            public function Chain() {
                init();
            public function init():void {
                ball0  = new Ball(20);
                addChild(ball0);
                ball1 = new Ball(20);
                addChild(ball1);
                ball2 = new Ball(20);
                addChild(ball2);
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
            private function onEnterFrame(event:Event):void {
                moveBall(ball0, mouseX, mouseY);
                moveBall(ball1, ball0.x, ball0.y);
                moveBall(ball2, ball1.x, ball1.y);
                graphics.clear();
                graphics.lineStyle(1);
                graphics.moveTo(mouseX, mouseY);
                graphics.lineTo(ball0.x, ball0.y);
                graphics.lineTo(ball1.x, ball1.y);
                graphics.lineTo(ball2.x, ball2.y);
            private function moveBall(ball:Ball,
                                      targetX:Number,
                                      targetY:Number):void {
                ball.vx += (targetX - ball.x) * spring;
                ball.vy += (targetY - ball.y) * spring;
                ball.vy += gravity;
                ball.vx *= friction;
                ball.vy *= friction;
                ball.x += vx;
                ball.y += vy;
    thanks every body's help!

    ok, thanks for your reply ! I run this code in the Flex builder 3!and the Ball class and the Chain class are all in the same AS project!
      and i changed the ball.pv property as public in the Ball class, and  the Chain class has no wrong syntactic analysis,but the AS code don't run.so this is the problem.
    2010-04-21
    Fang
    发件人: Ned Murphy <[email protected]>
    发送时间: 2010-04-20 23:01
    主 题: how  can i run this code correctly?
    收件人: fang alvin <[email protected]>
    I don't see that the Ball class has a pv property, or that you even try to access a pv property in the Chain class.  All of the properties in your Ball class are declared as private, so you probably cannot access them directly.  They would need to be public.  Also, I still don't see where you import Ball in the chain class such that it can use it.

  • Can Flex see Local Resources?

    I am looking at Flex as a new development platform for my
    Point of Sale system. The requirements are:
    It must be a internet application that can also access local
    client devices without poping up message. I need to be able to
    print to two local printers, send data to a local display pole and
    read data from a USB attached digital scale and a USB attached
    credit card / check imager from MagTek.
    Does flex allow for this?
    Thanks, Jeff

    I would build it in AIR, which you can do via Flex. This way
    you have a nice installable program that will be able to access
    client devices without a problem.

  • Can Flex 4.6 connect directly with a MS WCF

    Can Flex 4.6 connect directly with a MS WCF without having to use a 3rd party tool like WebOrb.  I have several basic httpprotocal wcf services that I want to move to a mobile app with Flex. Any feed back or insight will be appriceated.

    The correct answer to this question appears to be that Apple's terms of service *do not* prohibit the loading of swf's on IOS from remote servers dynamically at runtime.  They prohibit the loading of swf's that *contain executable ActionScript code*. 
    I loaded a PPT into Adobe Connect and then retrieved the resultant slide swf's from the Connect server.  I took these swf's and loaded them into my iPad app, dynamically at runtime, from a remote server.  The swf's loaded and animations played.  I made no changes to my code.  I'm just using a plain old SWFLoader object.
    Loading swf's dynamically at runtime from remote servers into IOS works - if you make the swf's right.  How to do that I'm not sure.

  • How can flex tell if  it's a mouseup event when the user releases the mouse button outside the flex application?

    how can flex tell if it's a mouseup event when the user
    releases the mouse button outside the flex application? Say for
    instance mousedown was done within a 500x500 embedded flex app but
    mouseup is outside or relased on the HTML background. One more
    thing, when we have something draggable, Flex doesn't execute the
    stopDrag() when the user releases the mouse button outside the
    embedded swf or fles app. Pls. help me with this. Thanks!

    I don't think the flex app can tell what happens outside the
    app. But it can detect when it leaves the app, so I have found the
    following line works fine inside initApp():
    this.stage.addEventListener(Event.MOUSE_LEAVE, yourFunction);
    and you have to:
    import flash.display.Stage;
    Doug

  • The home button has stopped working on my iphone 5c. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode.

    Have an iphone 5c 8g. The home button has stopped working. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode and no evidence of damage.

    If you are playing in hockey arenas a lot or if you are bringing it into bathroom same time as shower it may not seem like much but overtime the steam can acquire and build up in the phones usb dock flex cable swell as the home button flex cable. Bring again into apple store and should be covered under warranty again. could also be a delay in a 8gb 5c software may just be very lag.

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • I have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i have 3 different itunes accounts and would like to combine them into just one for all my devices, a macbook pro, an iphone 4S, an older IPOD, and a ver sion one Ipad. how can i do this on all devices ?

    i had one for a long time, then when i got the ipad i didn't realize they would all still work under one so i set up the second one on that
    then when i got the new iphone i put in the info for the first and main one from my mac pro and it would not work at all, and i knew it was right, then it asked me to create a new one or i couldnt finish the setup
    hence why i have 3 now
    hard to believe you cannot combine into one
    oh well, i will just make them all accessible for all 3
    thanks

  • I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album?

    I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album? I was trying to move several albums onto a USB drive and it stated all other files exist at this location.  They are pictures taken at different times and have the same number I guess.

    In iPhoto albums may contain photos with the same file name - iPhoto handles that just fine
    If you are exporting them to move somewhere else use the sequential file name feature of export to give each file a unique name
    LN

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • HT204053 I use my iMac to help a friend with an IPAD and a different Apple ID to transfer their existing cps to iTunes on their iPad.  How can I do this without the content being merged into my own Apple ID Account

    I have an IMac which is my main computer and two IPads and an Ipod Nano.
    Obviously we use these in sync as an when required via Itunes.
    I have recommended a friend to have an IPAD2 and she wishes to load some of her existing cds into her Itunes Account.
    If I wish to do this with my own, it is simple as we simply use the Imac which transfers content into Itunes.
    However, my friend does not have a separate computer so I wish to load her CD's into Itunes and then sync to her Ipad without interfering with my own library and using her Apple ID.
    How can I achieve this?

    " how can I sync my iphone to my mac book without losing all the music and pictures on it?"
    You cannot.  Copy everything you want form the old computer to the new one, then sync it.
    it basically says you have to erase your iphone to sync to a new itunes!
    Correct Iphone will sync, or manually manage, with one and only one computer/library at a time. Syncing, or manually managing, to another will indeed erase the current content.

  • HT1296 I already have an itunes account on my laptop but have been setup on a mac and have songs that have not been purchased from the itunes store, I cannot get the songs from my iPhone onto my itunes account on the mac. how can I do this?

    I already have an itunes account on my laptop but have been setup on a mac and have songs that have not been purchased from the itunes store, I cannot get the songs from my iPhone onto my itunes account on the mac. how can I do this?

    You copy them from your old computer or your backup copy of your old computer.
    The iphone is not a backup/storage device.

Maybe you are looking for

  • Default password for voicemail?

    I had to reset my iPhone, and now it keeps asking me for my voicemail password (even though I currently have no voicemail to listen to). I did not have a voicemail password before the reset, and I was able to retrieve voicemail then just fine. If the

  • Report for delivery costs

    Hi, 1. I need to have a report for the paid delivey costs(planned and unplanned) for the given pos. 2. Is there any std transaction which can give the list of fast moving items based on movement types? Please help me, it is very urgent. Your help is

  • How to schedule a background Job based on events

    Hi, We are on 4.6 C. We have a background job that has two ABAP programs. We need to start the 2nd ABAP program only after the first one has run successfully. If the second ABAP program does not run, the the job should have a status "FINISHED". Help

  • Bug in LR 3.4 changing folders show not the 1st photo after setting rating filter

    Bug in LR 3.4 ? In the Library module, I have several folders. Folder 1 contains 100 photo's Folder 2 contains 100 photo's After rating the photo's in folder 1 (let say I rated 10 photo's with one star, then I changed the viewing status to Filters -

  • Does Java 7 cause OS X Mavericks to crash?

    Dear Apple Support Community, I have recently updated to Java version 7 update 67, to support the retina display capabilities of my Macbook Pro with third party software (Matlab R2014a, Mathworks). Mavericks has crashed several times since the update