Interaction Flash Lite  with another applications

Hi:
I would like to know if exists any posibility of communicate
or interact my flash lite app with another non-flash application
(for example using JNI or any kind of median layer between my flash
app and another app). This non flash app may be a java app for
example or another symbian app that I have developed
Thanks

Hi there,
Yes it is possible. You can use FSCommand("launch") to do
this.
///example:
The following example would open wap.yahoo.com on the
services/Web browser on Series 60 phones:
on(keyPress "9") {
status = fscommand("launch",
"z:\\system\\apps\\browser\\browser.app,
http://wap.yahoo.com");
Hope this helps,

Similar Messages

  • Interaction with another applications

    Hi:
    I would like to know if exists any posibility of communicate
    or interact my flash app with another non-flash application (for
    example using JNI or any kind of median layer between my flash app
    and another app).
    Thanks

    Hi there,
    Yes it is possible. You can use FSCommand("launch") to do
    this.
    ///example:
    The following example would open wap.yahoo.com on the
    services/Web browser on Series 60 phones:
    on(keyPress "9") {
    status = fscommand("launch",
    "z:\\system\\apps\\browser\\browser.app,
    http://wap.yahoo.com");
    Hope this helps,

  • TS1702 I'm not able to update Smurf's Village. Tried most of the things proposed on the net including restarting the iPad and trying syncing with the computer. Had a similar issue with another application. Had to delete and reinstall it, with all history

    I'm not able to update Smurf's Village. Tried most of the things proposed on the net including restarting the iPad and trying syncing with the computer. Had a similar issue with another application. Had to delete and reinstall it, with all history lost.
    Tried following up with the developer's instruction. Didn't help. Developer suggested contacting Apple if their instruction didn't work. Tried the various methods recommended on the Apple site. Same result.

    Telling is that you tried most of the things on the net doesn't tell us exactly what you did try, so we are all still left to guess .....
    Sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again
    If that doesnt work - go to Settings>General>Date and Time - set the date ahead by a few months. Try to update again. If you get an error message of any kind - go back and change the date and time to automatic again. Then try again.
    If that doesn't work, restart your router and reboot the iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Must duplicate my photo because "this photo was previously edited with another application..."

    I've always used both iPhoto and Adobe Photoshop Elements for editing my photos. Previously, I could edit in the external application (Adobe PE), save the photo (back to iPhoto), go back into iPhoto and then still edit that photo within iPhoto if I wanted to.
    Recently, though, if I edit a photo in Adobe PE and save it, if I attempt to edit it further within iPhoto, I am warned: "Image Cannot Be Edited: This photo was previously edited with another application or with an early version of iPhoto. Duplicate this photo to edit it."
    I don't WANT to keep duplicating my photos - it's a stupid waste and I just want to tweak my previously edited photo.
    When did iPhoto start requiring duplication in order to edit a photo that had been worked on in another program?
    And why?
    And is there any way I can change this or get around it?
    Thanks.

    Where are you seeing these Jpegs when you duplicate the Raw?
    Duplications are virtual. Try this test.
    Select a Raw and go File -> Reveal in Finder -> Original
    That brings you to the Master file in the iPhoto Library. It's selected.
    Apply a label to it - In the Finder: File -> Label.
    Now, back to the iPhoto Window and gp Photos -> Duplicate
    You now have a second snap in the Event  -> My Photo - version 2
    Select Version 2 and go  File -> Reveal in Finder -> Original
    Notice that it brings you to the same file.
    So, you've duplicated the Photo, not the file.
    Regards
    TD

  • Cookies (working with another application)

    Hello,
    I am currently working on a project. I finished everything in the project but there are many requests to bypass the login page. Currently users log on to a facutly site which then gives them the link to my application. The password for the faculty site and my own differ. They are requesting that the login page can be avoided when opening the application from the faculty site.
    I read a similar thread at Re: How to co-work with another application with Cookie or something
    So, the faculty page would authenticate. My application uses the same database, but should work well as is. There is no transfering of information between applications. Basically all my application needs to do is log the user in automatically.
    I believe this is done via cookies. I've tried some OWA_COOKIE procedures, but I think I am doing it all wrong. It is an area that I've never covered.
    Any help would be great. Thanks
    -Tim

    On a further note,
    I used the same logic as in the thread Re: How to co-work with another application with Cookie or something
    On page 150 I set the cookie using:
    begin
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
    expires => sysdate+10,
    name=>'TEST',
    value=>lower('testing'));
    wwv_flow.g_unrecoverable_error := true;
    owa_util.redirect_url('f?p=&APP_ID.:200:&SESSION.');
    exception when others then null;
    end;
    Then on page 200 I read it using:
    declare
    v varchar2(255) := null;
    c owa_cookie.cookie;
    begin
    c := owa_cookie.get('srprt');
    :TEXTFIELD1 := '';
    :TEXTFIELD1 := c.vals(1);
    exception when others then null;
    end;
    this works. So what I would like to do now is read in a cookie from the other site. Is this at all possible?

  • How to interface a tuxedo app with another application that uses tcp/ip socket  messaging

    How would you interface a tuxedo app with another application that
    uses tcp/ip socket messaging? I have a vendor product that offers
    a tcp/ip message interface, and would like to know how best to
    integrate it into a tuxedo application. I could write a C application
    that listens and accepts incoming request from the vendors application,
    and then make a tuxedo client call to a service. But this doesn't
    allow me to control the listen thread through tuxedo. The C application
    would have to be started seperately and would not take advantage
    of the tuxedo restart facilities etc of a tuxedo service.

    You can make an empty server only with tpsvrinit that starts your client
    listeners and a tpsrvdone that stops them. Be carefull with sharing ipcs
    between processes, or your clients may get puzzled!!!
    Another choice can be builting a custom WSL/WSH but I haven't done
    this yet and I don't know exactly the troubles related with making them.
    R.G.
    Travis Ward wrote:
    How would you interface a tuxedo app with another application that
    uses tcp/ip socket messaging? I have a vendor product that offers
    a tcp/ip message interface, and would like to know how best to
    integrate it into a tuxedo application. I could write a C application
    that listens and accepts incoming request from the vendors application,
    and then make a tuxedo client call to a service. But this doesn't
    allow me to control the listen thread through tuxedo. The C application
    would have to be started seperately and would not take advantage
    of the tuxedo restart facilities etc of a tuxedo service.

  • Open with another application

    Is it possible to open a photo with another application, without a pre-conversion to tiff by Lightroom? I love Active D-Lighting, it saves me a lot of shadow/highlight recovery, but Lightroom doesn't support it. I edit most of my photos with Capture NX, but I use Lightroom to catalog them and edit others. I can't find a way of opening a nef file directly in CaptureNX from Lightroom.
    Thank you.

    You can open a photo with another application, but not from within Lr (except for Photoshop). You can open  NEF on Capture NX by locating it in your OS (Mac Finder / Win Explorer) and go <Open with> but there is no way to do that from within Lr.
    And, when you open a NEF in Capture NX that has previously been edited in Lr the edits will not be visible in Capture NX. And the vice versa is also true: if you edit a photo inCapture NX these edits will not be visible in Lr.
    This is so because both programs write the edits in a proprietary format that can only be read by the program writing it. Apart from that Lr stores the edits in its catalog which can only be read by Lr.
    It all comes down to the following: You either edit in Lr or you edit in Capture NX, but a cross-over editing is not possible - unless you create a TIF after the edit and open that in the other program. By creating a TIF the edits are written into the image pixels which then can be read by any photo editing software - if it can open and read TIfs that is.
    BTW: The Active D-Lighting works only if you shoot JPGs - as far as I know. Far better would be to shoot Raw and edit the highlights in Lr.

  • Flash lite with motion sensor

    Hi,
    Any idea on how to develop a Flash light application which
    can work with mobile's built-in motion sensor?

    Hi eliminater,
    This forum is for the Flash Lite 3.1 Distributable Player,
    please look at the feature set for Flash Lite 3.1 at this url.
    http://www.adobe.com/products/flashlite/version/flashlite_feature_comparison.pdf
    Mark

  • Interactive Flash Presentation with Quiz

    Hello,
    I am College student that has been asked to create a Flash based presentation for High School students, showing them some of the available facilities, some general topics for the major and what not. I am not Flash Savvy, but I do know that keynote can export a keynote presentation as an interactive flash
    file (swf ?).
    My question is this, does anyone know of a way to create a simple quiz type functionality in Keynote; where the High School students could enter the answer for a couple questions and get a score back ?
    I hope that's not terribly confusing.
    Thank you and best regards
    quicksilver Duel 1ghz 1.5GB Radeon9800pro 128mb   Mac OS X (10.4.8)  

    There's not a way to get a score back with Keynote as there's not a "counter" variable you can increment in order to report a total at the end.

  • Sync Logic with another application

    Hi, I would like to sync Logic Pro with another program (Band in a Box). I am pressing "synchronize" and "record" get the program on hold (with a red/pink band at the top). I then set Band in a box to send "midi sync" to the virtual port. I expect logic to start recording, but it doesn't. On the other hand, I can see the midi notes coming in ( see them in logic's transport bar); also if I manually start recording, the notes get recorded. If I get the midi notes, why doesn't logic start authomatically? Manually I can not synchronies properly both programs...I have tried all different options in logics midi and synchronies options, but don't get it to work...appreciate any help

    Logic does not sync to MIDI Clock. Anymore. Send MTC from BIAB or from Logic (in case BIAB can sync to MTC) instead.
    Christian

  • My application wants to open with another application

    I have never had this problem before and can't figure out how to correct it. When I went to my Photoshop 7.0 folder to open Photoshop, I saw that that application icon was NOT the usual icon for Photoshop. This was also true for ImageReady. They appear as blank sheets of paper. They will not open either application.
    When I click on the Photoshop Icon to get info, it says that it is an application (Power PC) - and lists the correct version etc. Under Name & Extension it lists Adobe Photoshop 7.0. Here is where it gets odd - the Open With window is there and is set to Script Editor (2.1.2) It also gives me the choice of Automator Launcher.app, Automator.app, Easy Card.app and Microsoft Language Register. The same is true for Image Ready. Of course this window option shouldn't be there at all. I trashed the entire program and reinstalled
    and the same thing happens. I checked my backup on an external drive and it has changed. I use these programs all of the time and this just happened in the past week. I just can't figure out what happened or why. Can someone please help me get this resolved. Thanks.

    Hi RLS_NJ, and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If it still doesn't work try Reset Launch Services...
    http://www.thexlab.com/faqs/resetlaunchservices.html#Anchor-Reset-47857
    Reboot.

  • HT201341 Ever since I tried to update or install Yosemite---I can not access my iPhoto! It is stuck saying that it is in use with another application or has become unreadable.

    I can't access iPhoto after Yosemite install/upgrade on my Mac. Upgrade appears to be complete. There are no other applications that need to be updated. I've disconnected my external My Passport for fear of pictures being lost in there. I think Yosemite is the first operating system that I upgraded to?

    Upgrade appears to be complete.
    Do you mean, the iiPhoto application has been upgraded to iPhoto 9.6, or the iPhoto Library has already been upgraded to iPhoto 9.6 format?
    I've disconnected my external My Passport for fear of pictures being lost in there.
    Where is your iPhoto Library? On your My Passport or in the default location in your Pictures folder?
    If the iPhoto library is on your external drive, then check the filesystem. iPhoto needs the iPhoto Library to be on a drive formatted MacOS Extended (Journaled). If the filesystem should be wrong, move your iPhoto Library to a drive with the correct filesystem.

  • Flash paper with flex application

    hi, i m flex develper and can any one tell me how can i
    convert programmatically the doc file onto a .swf file and display
    the content of .docfile into flex component?

    Flash (swf) Files had a built in option to be exported as class files way back during Flash 2.0's heyday. Macromedia opened up the swf format quite a while ago. You can probably use Java|C++ to create an swf if you really wanted to. There is a PHP package called Ming that with produce swf's on the fly (similar to Macromedia's generator). As far as scripting a flash obj(swf), you can do that with Javascript from an HTML page, but this isn't the place for that information.
    Good Luck,
    -Jack

  • Problem with another application after install Adobe Illustrator CC 2014

    Hello, I write you because we don't know how to fix this problem.
    We've encountered a problem after install that software in our corporative computers, for some reason the default font of Lotus Notes changes after install Adobe Illustrator.
    It changes Calibri font by The Times New Roman font. Those problems have been detected in the 100% percent of tests made. (Uninstalling Adobe and/or Lotus, installing the software in many PCs and suffer the same issue).
    There is a compatibility problem between those programs ?
    Thank you in advance for your help.

    d,
    I am afraid Illy is reluctant to recognize Calibri as a (proper high quality) font and therefore replaces it whenever she comes across it.
    Have you had the same issue with the original CC or even earlier?

  • Distributing the Flex SDK with another application

    Hi,
    I understand that the Flex 2 SDK is a free download from
    Adobe, but am I also allowed to redistribute it?
    For example, if I write a program where I need to generate
    swfs dynamically, can I distribute the Flex SDK with the program,
    so that all I need to do is generate SWF files and invoke the
    mxmlc?
    Thanks,
    Roy

    The name of the self-signed cert that is generated in the "Create the APK package file" step is sampleCert.pfx, but the name of the file in the next step is sampleCert.p12. This should be fixed.

Maybe you are looking for

  • Adobe pro 8: how to make an existing secure encrptyed form unfillable after editing

    Hello, as the discussion topic says. adobe pro 8: how to make an existing secure encrptyed form unfillable after editing?  Is it even possible to do in adobe pro 8? For work there's a secure and encrptyed form.  I want to write in the form and save i

  • I accidently delate my game folder icon how do i get it back?

    i checked my world in the installed tab  it seems all the games are still there because it says the word delate if it really was deleated it would say reinstall i search all the folders the games arent there i tried updating the system but its alread

  • SQL Server PowerPivot for SharePoint

    We already have SQL Server 2012 standard edition installed with SharePoint 2013. We then upgraded SQL Server 2012 to the Endterprise Edition. Now we want to install Powerpivot and we did but it looks like we did or could not previously check the box

  • Inbound proxy with system error.

    Hi Experts,                 I desighned an inbound proxy scenario which is file to ECC.                I test the proxy from 'SPROXY" t.code.                Because of wrong data, it throws an exception as below.        - <cls:CX_XMS_SYSERR_PROXY id=

  • Getting null value on socket

    Hi, I have written a program which is sending a data to client and gets an acknowledgement from client. The data is received by client and when the acknowledgement string is sent by the client; at server side its received as null. please help.