Can Flash be used as the GUI for an application

Can Flash be used as the GUI for an application (desktop software, not web based) written for the .NET framework? I want to author an application that would be perfect for flash as a the GUI, but it would need to be able to support a pretty full API for Flash and the wrapper application, written in c#, as they would be passing a lot of data between eachother, as well as getting and sending data over the web. So, can Flash be used in .NET? What kind of API does it have? Or am I stuck with the Windows look/feek thanks, 

i'm no expert on this, but read up on Adobe Air. In the most basic terms it allows you to create flash apps that can be deployed on the desktop and will run mac/windows.
this article here might address your exact query:
http://ajaxian.com/archives/commandproxy-integrating-air-and-net

Similar Messages

  • Query to find out the time used by an user for an application

    Hello All,
    I want to know the query to find out the whole time used by the user for an application. Please view the below data
    Employee:
    SNO EMP_ID EMP_NAME EMP_DATE LOGIN_TIME LOGOUT_TIME
    1 10 Visu 21-Nov-2010 06:30:00 07:30:00
    2 10 Visu 21-Nov-2010 06:40:00 07:20:00
    3 10 Visu 21-Nov-2010 06:50:00 07:50:00
    4 10 Visu 21-Nov-2010 07:30:00 08:30:00
    5 10 Visu 21-Nov-2010 09:30:00 10:30:00
    By checking the above data we can say that the total time Visu used the application is
    8.30 - 6.30 (From 1,2,3,4 records) = 2hrs
    10.30 - 9.30 (Based on 5th rec) = 1hr
    So the total time Visu used the application would be 3 hrs = 180 mins.
    Could you please help me in getting the result from that data using a query?

    odie_63 wrote:
    I think it may be solved with analytics too.
    with t1 as (
                select 1 sno,10 emp_id,'Visu' emp_name,'21-Nov-2010' emp_date,'06:30:00' login_time,'07:30:00' logout_time from dual union all
                select 2,10,'Visu','21-Nov-2010','06:40:00','07:20:00' from dual union all
                select 3,10,'Visu','21-Nov-2010','06:50:00','07:50:00' from dual union all
                select 4,10,'Visu','21-Nov-2010','07:30:00','08:30:00' from dual union all
                select 5,10,'Visu','21-Nov-2010','09:30:00','10:30:00' from dual
         t2 as (
                select  emp_id,
                        emp_name,
                        emp_date,
                        to_date(emp_date || login_time,'DD-MON-YYYYHH24:MI:SS') login_time,
                        to_date(emp_date || logout_time,'DD-MON-YYYYHH24:MI:SS') logout_time
                  from  t1
         t3 as (
                select  t2.*,
                        case
                          when login_time < max(logout_time) over(
                                                                  partition by emp_id,emp_date
                                                                  order by login_time
                                                                  rows between unbounded preceding
                                                                           and 1 preceding
                            then 0
                          else 1
                        end start_of_group
                  from  t2
         t4 as (
                select  t3.*,
                        sum(start_of_group) over(partition by emp_id,emp_date order by login_time) grp
                  from  t3
         t5 as (
                select  emp_id,
                        emp_date,
                        min(login_time) login_time,
                        max(logout_time) logout_time
                  from  t4
                  group by emp_id,
                           emp_date,
                           grp
    select  emp_id,
            numtodsinterval(sum(logout_time - login_time),'day') time_spent
      from  t5
      group by emp_id
      order by emp_id
        EMP_ID TIME_SPENT
            10 +000000000 03:00:00.000000000
    SQL> SY.

  • We have developed a desktop application using Flash software and published the same for MAC environment. When we double click on the index.app file, the application is working perfectly in Mac 10.6.7 at our office. But if the same index.app file is double

    We have developed a desktop application using Flash software and published the same for MAC environment. When we double click on the index.app file, the application is working perfectly in Mac 10.6.7 at our office. But if the same index.app file is double clicked in Mac 10.6.7 at out clients location, its not opening. For your information the client is able to open this same application by double clicking on index.swf file. The main problem is that client is not able to open the application using index.app file at their office whereas we are able to do so at our office. Can anyone give some suggestions to sort this problem?

    The most common reason is different versions of Flash, or different versions of web browsers used.  Some users may elect to not have Flash installed at all because of the processor overhead of Flash.  If you are going to make an application for a client, check what operating system and browser versions they are using first.  Then determine if a stand alone application is required, or if they have the necessary plugins to run specific browser enhanced code.
    P.S. MAC is an acronym for Media Access Control.  Mac is the shorthand for Macintosh, the operating system and computers made by Apple Inc.

  • Currently using Lightroom 5 as a standalone on a mac and two windows machines one desktop one laptop. with CC can i still use all the machines or do i have to take out an individual license for each?

    with CC can i still use all the machines or do i have to take out an individual license for each?

    Your LR5 license allows for activated installations on two machines.  Of those two machine, only one can be using the licensed software at a given time.  The same applies with CC, except with CC you won't be able to sneak in the third machine.  What you can do though with CC is have it installed on all three and sign in and out of the different machines as needed.
    If you intend to be using all three machines at the same time then you do need three separate licenses/subscriptions to be in compliance with the license agreement.

  • I currently have a D-Link DI-604 broadband router with windows computers.  How can I add wifi to the network for use with ipad?  Can I use AirPort Express?

    I currently have a D-Link DI-604 broadband router with windows computers.  How can I add wifi to the network for use with ipad?  Can I use AirPort Express?

    Yes. You can directly connect an 802.11n AirPort Express Base Station (AXn) using an Ethernet cable. The AXn would then just need to be configured as a bridge to allow the D-Link to continue to provide both NAT & DHCP services for all network clients connected to either router.
    In this configuration, the AXn would broadcast a wireless network for your wireless network clients to connect to.

  • How can I get (using API) the current sort column for some report

    hello,
    How can I get (using API) the current sort column for some report ? For example something like "fsp_sort_1_desc" - if the user sorts by the first column ?
    I cannot use the :REQUEST for this, sometimes the current sort column is not in the :REQUEST, but it is still active.
    I thought it was posssible by using
    APEX_UTIL.GET_PREFERENCE (
    p_preference IN VARCHAR2 DEFAULT NULL,
    p_user IN VARCHAR2 DEFAULT V('USER'))
    RETURN VARCHAR2;
    function, but I don't really know which preference should I pass as parameter.
    looking in WWV_FLOW_PREFERENCES$, i saw preferences_names like FSP4000_P527_R6281510839654570_SORT , I'm not sure how this name is formed.
    I'm using generic columns for that complex report (which has a flexible number of columns shown), and the idea is that sometimes I have to overwrite that sort column, in case the user chose the version of the report with fewer columns than the previous one.
    Can I get (using API) a list of all preferences set for some user ?
    Thank you,

    seems that it is FSP<app_number>P<pagenumber>R<regionnumber>_SORT.
    is there anyplace where I can get these kind of things documented ?
    Thank you.

  • Hello, my iphone for several times shows me this message "this iphone can't be used because the Apple Mobile Device service not started". I need help because i'm enable do download the new update. Thanks

    Hello, my iphone for several times shows me this message "this iphone can't be used because the Apple Mobile Device service not started".
    I need help, because i'm enable do download the new update.
    Thanks

    Type "Apple Mobile Device service" into the search bar at the top of this age by "Support" and read the resulting help articles.

  • I have an IPhone 5 with 2 email accounts and I can't seem to change the sound for my primary account. When I change the sound it is for my secondary email account which I hardly use. How do I change the sound for my primary account?

    I have 2 email accounts on an IPhone 5 and can't seem to change the sound for my primary email account.

    Try going to Settings>Notifications>Mail, tap your primary account, then tap New Mail Sound and set as desired.

  • I buy adobe creative suite for teachers and students about one year ago but now i'm not longer a student. Can I still use this programs legally for commercial purposes or do I have to buy some upgrades or something like this? Please help

    I buy adobe creative suite for teachers and students about one year ago but now i'm not longer a student. Can I still use this programs legally for commercial purposes or do I have to buy some upgrades or something like this? Please help

    The license did not have use restrictions Licenses and terms of use | Adobe
    BUT... when your one year Education account ends, I do not think you will be able to renew at the Education rate

  • This iphone can not be used because the required software is not installed. Run the itunes installer to remove itunes, then install the 64bit version of itunes

    This iphone can not be used because the required software is not installed. Run the itunes installer to remove itunes, then install the 64bit version of itunes
    I keep getting the above error everytime I plug in my iphone.
    I am not daft, I do have the 64bit version of iTunes installed already. When I installed itunes 10.5 and more recently 10.5.1 I got an error message that rolls back a section of the installation (The updater I think) before finishing off installing iTunes.
    After the installation iTunes will work normally apart from when I try to connect a device. At which point I get the title error message and I can not sync my phone.
    It's probably down to Itunes not installing properly however no matter what I try I can not sort the problem out. I've tried uninstalling all apple programmes followed by a registry clean, then reinstall. I've tried the same again but in a specific order. I've tried repairing iTunes, repairing the updater etc etc. Nothing seems to work. I'm out of ideas.
    Has anybody had this problem? Please can somebody tell me how to fix it!
    Getting an iPad this Christmas and if I can't sync that up to my PC I may just have to go over to ANDROID!!!

    Is there a way to install this on its own?
    Yeah, let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunes64Setup.exe installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunes64Setup.exe, and select "Extract to iTunes64Setup". WinRAR will expand the contents of the file into a folder called "iTunes64Setup".
    Go into the folder and doubleclick the AppleMobileDeviceSupport64.msi to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport64.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does an iTunes install go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • I have 2 itunes accounts. I can no longer use my first one for purchases so I had to start a new one and it will not sync from my new one without deleting everything on my same ipod from my previous account. How do I sync between both accounts?

    I have 2 itunes accounts. I can no longer use my first one for purchases so I had to start a new one and it will not sync from my new one without deleting everything on my same ipod from my previous account. How do I sync between both accounts?

    Wayland wrote:
    The CS.com service account has long been closed. I cannot get it to respond to my years ago password for that account. So I ask them to send me a new password and of course it goes to my years ago email number.
    Don't have it send email.
    Answer the security questions.

  • How come iTunes keeps saying:"this iPod can not be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64 bit version of iTunes?"  Wth...i am using the 64version.

    Hi. How come iTunes keeps saying:"this iPod can not be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64 bit version of iTunes?"  Wth...i am using the 64 bit version of itunes. Why does it keep saying that? Will someone Help me please!? This is is getting frustrating. I already had done a full removal of everything! I even removed and deleted my library...then had to put all 500 songs back on one by one. So, i don't have to remove everything again, just to get my ipod to work on here. You, know before the itunes update, my ipod and itunes were working just fine.

    wow, that was a quick reply. lol. but i have removed everything. I wasn't even able to get iTunes on my computer for a little while. i kept getting errors on that. Now it's saying that the required software isn't installed. Hmm, could it be referring to Apple Mobile Device Support? That is supposed to be installed with when iTunes gets installed right? I only ask, because that  didn't get installed with the itunes setup.

  • HT4623 latest iTunes will not recognize new iPod. i get message "this ipod can't be used because the required software is not installed. Run the iTunes installer to remove iTunes then install the 64 bit version of iTunes." 64 bit version of iTunes is inst

    I have a new iPod Touch 5th gen. My computer works on Windows 7. Latest ITunes gives me this message: "this ipod can't be used because the required software is not installed. Run the iTunes installer to remove iTunes then install the 64 bit version of iTunes." I have already removed and reinstalled a couple of times--making sure to remove all the related applications as well--Bonjour, Apple Software update, Apple Application Support. Help!

    (apologies for barging in, lllass.)
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does your device connect without that message now?

  • When i plug in my Ipod i get a strange message "this device can not be used because the apple mobile device service is not started."

    What does "This ipod can not be used because the apple mobile device service is not started" mean.  After I updated my Itunes I get this message when I plug in my Ipod and it doesn't come up in Itunes.

    If you are using Windows 7, go to:
    Control Panel>Programs>Programs and Features
    Look for a program called 'Apple Mobile Device Support'
    Right-click on it
    Click 'repair'
    Wait until the repair operation is complete, and voila, your problem should be solved, itunes will recognise your iphone/ipod once more. This worked for me.

  • Why my Toshiba mobile hard drive (1TB) can not be used in the macbook air?

    Why my Toshiba mobile hard drive (1TB) can not be used in the macbook air?

    If you are speaking of the USB 3.0 Canvio, you are not alone. Call Toshiba and check on their progress in alleviating the problem. I heard they are blaming Apple, but since theirs is the only drive that exhibits this problem, I think the burden is on Toshiba.
    Some users have reported that by using a micro USB 2.0 connector (see bottom picture), instead of the 3.0 that comes with the drive, that it is a workaround. Notice that the 3.0 connector has sort of a "dual head" nature to the construction. One part of it is 2.0 USB micro compatible. I've never tried it myself though.
    Read ths thread for a discussion on the subject.
    https://discussions.apple.com/thread/3510032?tstart=0

Maybe you are looking for

  • Oracle9iAS Portal Installation problem on Windows 2000

    I'm trying to install distributed oracle AS environment. There are two servers(A, B) with Windows2000+SP2 and one of them, Server A, has domain controller in it. Server B is a member of that domain. In server A, I installed Oracle9i and Oracle9iAS in

  • Help with iTunes/iPhone/Software update

    Hi all, I have a MacBook Pro and am running OS X version 10.5.8 on it.  However, when I plug in my iPhone 4GS in it now, it says that it can't be used unless I have the new version of iTunes (currently showing version of iTunes 10.6.3)--- however, wh

  • ADD-ON Document Number is not Increase

    Hi All,         My Company use One Customize ADD-On . The Problem is that ADD-on From Document Number Some Time is not Increase Automatically in ONNM And NNM1 Table .Thats why when add any document the massege show_'Document Allrady exists* '_*. Beco

  • Inspection factor in a process industry

    Hai Gurus, I have one scenario. My Final product is Rectified Spirit which follows the following sequence of operation. 1) Milling - Corn is made powder and mixed with water to form slurry 1 2) Cooking - Slurry is mixed with enzymes and sulfuric acid

  • How I can implement actionlistener

    I want to implement the actionlistener in this program to get an action when I press a button I have tried but I get compiler errors can someone help me? import java.awt .*; import javax.swing.*; import java.awt.event.ActionEvent.*; public class sann