newbie question on flex connecting to HTML and video viewing

I want to have the tree component in an image from an html page and use the tree menu to select several html pages that would appear in a different framework. Is it feasible with the component of the tree? I understand that trying to make the html inside of a flex component pages wouldn't look very good. But how about video display related within a flex component - that is showing a youtube video link in the component of the tree?

You can use the iFrame to display the html code of the pages inside flex, you can see an example here

www.Deitte.com/archives/2006/08/finally_updated.htm

And disadvantages here

http://www.Deitte.com/archives/2008/07/dont_use_iframe.htm

Tags: Flex

Similar Questions

  • Simple Newbie Question - download flex applications

    I'm very new guy, sorry for the stupid question. It is my first adventure in Flex.

    I'm working on a graphic spring flex application and I went to show a worker co on his computer and it wouldn't work. I went to the html file in the bin-debug, it works on my machine, but not hers.

    This also got me questioning what I have to download online when I'm done so that it can work.

    The paths of the library are all absolute links on my machine like that

    C:\Program Files (x 86) \Adobe\Adobe Flash Builder 4\sdks\4.1.0

    Any help is really apprieciated. I did a few tutorials, but none of them actually go to upload files.

    Thank you

    Randy

    Hello

    Your Flex program will work on your computer if you are using Flash Builder because it puts in place a 'special' environment to allow you to test your applications at the local level.  These files are all based on mxml and do not work outside the Flash Builder environment.

    For others to access your application, open the Project menu, and then select 'Export Release Build'.  This will create the code html, swf and other files for people using your app.  The main application will be the same name as your project - something like: myApp.html.  (unless you have changed the default application)

  • Newbie question: installed Eclipse 3.4.0 and BlackBerry 4.5 and 4.6.1 4.7.0, only works in 4.5

    Here's what I did.

    I installed Eclipse 3.4.0 from the site Internet of Eclipse.

    I then installed the Blackberry Plugin for the Eclipse IDE.

    I then installed Companion Pack 4.7.0 4.5 and 4.6.1 in the Plugin Manager in Eclipse.

    I created a HelloWorld application by taking the HelloWorld application from the website development and cut-and-paste the code.  I went from my environment to 4.5.0 Package component and tapped "run", according to the video examples.

    Bingo!  It was working fine.  I had my HelloWorld app race, was able to get the menu, select an item and it showed me my dialog box.

    Now, whenever I go to the 4.6.1, or 4.7.0, component Package the behavior is exactly the same:

    Clean environment.

    Rebuild the application.

    Press "Run" to launch the application.

    The result?

    The Simulator starts, but the application never does.  I get a nice home screen bit and listed in the application directory.  I go to Applications (as directed by the video) and it never shows me a HelloWorld application.

    Same exact behavior in 4.7.0.

    Is there a magic button that I need to hit to make it work?  I looked on the BlackBerry site - for 5 hours - and looked for answers to this question, and I have found no resolution to it.

    Maybe it's just something stupid, but I find it really weird that I can run on 4.5.0, but 4.6.1 and 4.7.0 are completely dead in the water.

    Help!  

    Hmmmm, looks like it appears in downloads and not in Applications.  I tried it and all is well.

    This should probably be corrected in the online documentation to avoid confusion.  It confuses the heck out of me!

  • Newbie question - degree of connectivity to the internet required for CC?

    Hi, I am considering creating could but live in a country where the internet is unreliable and expensive. Sometimes I have to work on the 3G network.

    CC requires a lot of connectivity and data to run, or is it just for license checks?

    That is to say. The files are on the spot, not in the cloud?

    Appreciate any community can offer advice.

    See you soon

    Ben

    Hi Ben

    Yes, the software installs as usual applications. It can be used for periods up to 90 days without an internet connection. I often use Lightroom and Photoshop on my Macbook Pro when they travel and without connection, but I always try to stay connected when I get back home so as to not miss the updates and new features.

  • Connect ID Adobe and Content Viewer?

    I created a new Adobe ID account for a new publication. I have connected with this new identity in Folio Builder and have also used the producer Folio to publish this free folio.

    When I log in ACV on my iPad with this new Adobe ID account, I do not see this new folio, but I see also all other folios I realized that are not associated with this new Adobe ID. Is this correct?

    Tom

    Yes, you will continue to see folios you downloaded other accounts until you folios archive / deletion.

  • Interruption of the connection between audio and video

    Hello. Y at - there anyone out there that can explain why it does this Gyazo - 4c7ff4b6ffe628c097e099abeecab242.png when I'm flirting video, which was recorded toghether in Photo Booth on a Mac. I want to drag the video with the audio. I've done this before, but now he comes to change? Thank you.

    Select the audio and the video and click on "link".

  • Localhost UDP connection between FCR and Matlab

    Hi all

    I have a question about the connection between Matlab and FCR UDP. My idea is to Exchange data between Matlab and Labview on the same computer.

    So I found the 'UDP Simple' of the FCR 2.0 sample project where periodically a datasample is generated randomly and sent to the remoteport 61557 local host. In the project a 'fractional number of string for transmission' is used for the transmission of data. The receiver of the sample project reads from the same port to receive the datasample.

    Now, I'm interested to read this simple stream from Matlab (just at first), however, it does not work and I'm not sure why. What I do in Matlab is the following (code Matlab)

    delete variables;
    u = udp ('127.0.0.1', 61557); % Of installation UDP Object
    fopen (u); open reading port %
    A = fread (u, 1);  % read an element
    fclose (u);

    With this code, however, I get a timeout by saying: "' WARNING: unsuccessful reading: the amount of data specified has not been returned within the time limit." "

    I'm not sure why this happens, maybe you could help me out here? I guess that the formet serving to VCF is not the same as in Matlab? Maybe the Terminators are not the same?

    See you soon,.

    Steve0

    Hey

    So, regarding the problem actually, I found the solution today. It was not the firewall, but a simple configuration in Matlab seting the UDP port. So the side of Matlab, to change the definition of udp object according to

    u = udp ('127.0.0.1', 'Thelocalport', 61557);

    If you have

    u = udp ('127.0.0.1', 'Thelocalport', 61557);
    fopen (u);

    A = fread (u)

    fclose (u);
    Delete (u);

    Who does the trick and you can read from the port. Then of course you say Matlab that you read from the "LocalPort" x, which I wasn't aware of.

    On the transmitter side, you simply:

    u = udp ('127.0.0.1', 61557);

    fopen (u);

    fwrite (u, '1');

    fclose (u);
    Delete (u);

    Here, you set just the port of transmiting.

    About the format of the data: I used the simple UDP protocol streaming Comms project where a random number is generated as a double, transformed into a string (ASCII values) and transmitted. At the level of the receiver, you get as much the UDP packet with the ASCII values that you must turn if you want to find the number.

    I hope this helps anyone having the same problem.

    See you soon

  • Are the Photos and videos uploaded (iCloud Photo Sharing) equal to the (ios iphoto reviewed)? If not, what is the new equal to that? If so, can I organize the layout as I wish? can I convert (iphoto ios log backup) to the file (iCloud Photo Sharing)?

    I always use the ios 7 because I like my reviews of iphoto, ios 8 and after don't support is not iphoto, I intend to upgrade to the latest version of ios. so my question is:

    Are the Photos and videos uploaded (iCloud Photo Sharing) equal to the (ios iphoto reviewed)?

    -If so, I can arrange the provision in the way I want? What happens if you want to convert my old (iphoto ios log backup) to import (iCloud Photo Sharing) that it is?

    -If not, what is the new equal to that with the possibility of transferring these journals?

    Thank you

    No they are not really the same thing and you can't convert one to the other. When / if you update, you will simply lose your logs. You cannot influence other available photos of the order appear in

  • 2 blackBerry Smartphones newbie questions: do I need it, and how I spoil my phone?

    Sorry for the newbie questions:

    My IT has already set up my phone to receive email from their Blackberry Enterprise Server.

    (1) do I still need to install the desktop software?  Given that I can transfer files via Bluetooth from my laptop and my contacts/calendar/notes are stored on the Exchange Server, is there any point?

    (2) if I do not need to install it, given that my email is already working with BES, and the Office installation configures email settings, how do I keep the new Desktop install to mess up the current configuration of e-mail?

    Of all the notes of support on the software, looks like more trouble whereas at this stage.  I really need to treat it?

    Thank you.

    Janimal

    Hi and welcome to the Forums!

    Janimal wrote:

    (1) do I still need to install the desktop software?  Given that I can transfer files via Bluetooth from my laptop and my contacts/calendar/notes are stored on the Exchange Server, is there any point?

    There is not much need of DTM, but it is convenient to update the OS of your BB. Sometimes there will be releases of minor bugs corrections and such to your BB - DTM will be meaningless and install them, while updating wireless could not detect them. For a major OS update, you want DTM, as it will do a backup/complete restoration of your BB, including configuration settings, and others so that you don't have to redo those. But, to your e-mail, calendar, contacts, etc. - you are right, it is useless given that your Exchange Server is actually your master with your BB being actually a backup of that (in a sense).

    In addition, USB drivers (which are part of the package DTM) are necessary in order to charge your BB via your laptop USB. You can download and install all the USB drivers if this is the only part of the DTM you want.

    Janimal wrote:

    (2) if I do not need to install it, given that my email is already working with BES, and the Office installation configures email settings, how do I keep the new Desktop install to mess up the current configuration of e-mail?

    When you install it, it will ask if you are in a company - say Yes and it will install properly. Installation when your PC is connected to your corporate network and your Outlook is open. Who will get the best and fastest configuration. When you install, do not let it select the functions of auto-launch... If you wish, attach your BB and manually run the DTM.

    Of all the notes of support on the software, looks like more trouble whereas at this stage.  I really need to treat it?

    Thank you.

    Janimal

    Basically, on the whole, I vote 'YES'. You get the USB charging. You can save if you wish. You get the device OS and other updates. Most of the reported problems are people using it to synchronize via USB things - you won't do that because most of your stuff will be syncing via BES OTA. Other things, you can simply drag-and - drop (music, videos, etc.). .. .follow these instructions (use the latest 5.0 DTM):

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=BlackBerryDesktopSoftware&thread.ID=3...

    DL the latest version here:

    http://NA.BlackBerry.com/eng/services/desktop/

    Good luck!

  • Newbie question - javascript - php HTML5 and HTTPS w

    Hi all

    Newbie question...

    I'm having a problem with browsers, mac and javascript...

    simple story:

    1. If I put the test on site NO SSL folder - everything works ok

    2 but if I put the same test on HTTPS site folder - MAC SAFARI gets / data displays ok but firefox MAC and Chrome don't receive data

    Q: why not? How do I fix this so work all browsers?

    ---

    CONFIGURE LIKE THIS...

    Page1.html

    Gets the data with this line...

    What was...

    $.get ('getdata.php', function (data, status) {})

    ... etc.

    also tried this (absolute ref)...

    $.get ('https://mysite.com/getdata.php', function (data, status) {})

    ... etc.

    and displays the data on the same page page1.html

    Safari for MAC = works but firefox and chrome do not display data HTTPS site but all work 3 over HTTPS no alternate test site. (using only this local demand = $.get ('getdata.php', function (data, status) {}))

    BTW: if I manually go to getdata.php he gets php data and display the data in json package very well

    Q: How can I test / solve this problem, so all 3 browsers work on HTTPS site?

    Curious to know why MAC SAFARI OS 10.10.4 was an error?

    There are differences in the way different browsers support SSL.

  • Exchange server and Surface RT, can I use Mail app to connect to the Exchange Server for email (the same question is for contacts or people and calendar)?

    Hello

    Our company uses an Exchange Server for email, contacts and calendar.

    Can I use Mail app to connect to the Exchange Server for email (the same question is for contacts or people and calendar)?

    Kind regards

    Matej

    You must install the SSL certificate before connect you to the Regional service, the easiest way is to go to "desktop" IE10 open, go to the exchange server web access page, click on the notification of "certificate error" red and view / install the store "certificate authorities roots of trust." Then, make sure that your surface RT complies with the minimum requirements of security then connect to the exchange via the mail application server.

  • Squarespace user. Want more options on my site. Adobe has tutorials on Java Script, HTML, and CSS? [was: new user Question!]

    Hello!

    I am a new user to adobe creative cloud. I'm a Web site manager for pge production broadcast in my school and I use squarespace but I want to upgrade and have more opportunities with my websites. Adobe has tutorials on Java Script, HTML, and CSS?

    Not in the way, I think you mean. There are a number of very generous gurus on this forum that will help hard problem solve you your code, and the best way to learn is always, spoil, figure it out and move on to the next thing. :-)

    Googling a question will generally help to guide you on the right track and you can always visit W3 Schools or Code Academy for free tutorials or check if there is a Free Code Camp in your area. Sources for tutorials or classes are Lynda.com, Noble of officeand the General Assembly.

    Chris

  • Questions about CSS, XHTML, HTML and Dreamweaver behaviors

    Hi all

    First of all the CSS is the same in HTML and XHTML code codes coding? Because I know that the HTML and XHTML are different in the way that XHTML is much stricter coding wise you can't just type the coding uppercase higher as you can in HTML even if it's a bad practice do anyway.

    Is it true that in the future we web developers will use XHTML instead of HTML? In Dreamweaver CS3, I noticed that when I click on the sign more then go in "show events for" behavior it does not show IE 7.0 or FireFox browsers is there a reason why it does not work? I know I can get multiple behaviors to Dreamweaver CS3, but when I click on 'Get more Behaviors' it automatically their on the site Web of Adobe in the United States, is possible I could download them from there even if my software is the version of the United Kingdom?

    Thank you very much for reading this and maybe you respond to it.

    Kind regards

    Oliver

    DreamweaverStud84 wrote:
    > First of all the CSS is the same in HTML and XHTML code codes coding?

    Yes.

    > Is it true that in the future we web developers will use XHTML instead of
    > HTML?

    N ° the W3C intends to introduce a new version of HTML called HTML 5. Some
    will continue to use XHTML 1.0, others will switch to HTML 5, even
    others will use the XHTML than HTML 5 version.

    > In Dreamweaver CS3, I noticed that when I click on more behaviors
    > sign then go in "show events for", it does not show IE 7.0 or FireFox
    > Browsers is there a reason why it does not work?

    For events show indicates the minimum version supported. The default value
    adjustment (HTML 4.01) is that you must use.

    > I know that I can get more behaviors to
    > Dreamweaver CS3, but when I click on 'Get more behaviors' it automatically
    > them appear on the Adobe Web site in the United States, it is possible that I could
    > Download them from here, even if my software is the version of the United Kingdom?

    Yes.

    --
    Adobe Community Expert David Powers
    Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • A few newbie questions

    Ok, I am a fanboy of Adobe, Photoshop/Illustrator ACE but I'm a video / graphic guy My employer is about 'apps' that they average / envy = applications that run on all smartphones modern and major players in the Tablet world. I had a divorce with writing code about 4 years ago (we all have two happy summer separated from eachother) but it feels like I will be together soon.

    Looking for some quick info to get used to the speed (note that I Master Collection CS5.5):

    1. Type of code: Action Script 3 ? HTML? Or lazy build in Flash?
    2. We would start Flash or Flex SDK?
    3. Currently, they want to read on an iPad... then tomorrow a Playbook... but always on an iPhone and EVO... is it something to be considered early in the process?

    I realize, these are newbie questions VERY and it's a long way to follow, thank you for contributing to the trip!

    Nick

    Hi Nick,

    I think it depends on type of content/content/deployment.

    If it's only video content to be played in standalone or web apps that look like native and support wide range of devices - then your suite already comes with Dreamweaver 5.5 - who has for example jQuery Mobile for web based application development/deployment and PhoneGab for native-app - all code development with html/javascript and two of them takes charge of video content.

    With Flash CS5.5 you get timeline based development and authoring tools - but nothing in the simplified UI that comes with the spark in Flash Builder (Flex SDK). Outputs the CS5.5 Flash and Flash Builder 4.5 using the same development tools Adobe Air (more to read on the page of software development given).

    Oh: web development with Dreamweaver and jQM does not require App Store submission process required otherwise for the content generated with Flash CS/Flash Builder or with PhoneGap in DreamWeaver.

    Kind regards

    Peter

  • Simultaneous connect via Dock and via Bluetooth?

    Forgive the newbie question, but I use my Iphone6 to connect to my stereo system through a dock and also want to connect via Bluetooth to a speaker in a room? This can be done? Thank you!

    # You can only select an output for the audio stream. You cannot output audio to the dock and bluetooth connector at the same time.

Maybe you are looking for

  • I forgot my security answer

    Hello My account is *. Now, I forgot my security answer. I have send an email and you answered me. But I can't have more of your help to get new security answer, because he asked that I have the answer 2 answer to security question. Please, let me kn

  • Portege R830 cpu usage

    Hello! I recently purchased your Toshiba Portege R830 product for 4 days, and I notice some CPU usage when I start the computer and a bit of fan noise. Is it normal in the computer? Something related to the series? I followed the advice in other thre

  • K410 USB DOES NOT START

    I have Windows 8 64 bit on my K410 IdeaCentre and the start menu, when I press F12 at startup, does not recognize my Cruzer of Sandisk USB flash drive because it is not listed in the start menu. I have a Dell with Windows XP and my flash drive works

  • How to generate arbitrary waveforms FRO meter

    Hello I have a problem in the generation of the wave as shown in JPG below. Need to generate digital waveforms 2 1. with the help of counter0 - digital waveform will be with pulse 60 (58 - good pulsations and 2 empty pulse) 2. with the help of Freqou

  • T61p drivers on Windows 7 (64-bit)

    Hello I want to upgrade my laptop to Windows 7 (64-bit) Windows XP I use (instead of slow Vista) is old enough (and only 32-bit). I found there is no drivers for a lot of thing (tried the system update, but it downloaded only a few drivers). Finally