I HAVE TO INSTAL A PRODUCT C LLED "KUDANI AIR " . FAILURE TO DO SO IS BASED ON  ADOBE AIR , SO I AM TOLD . HOW CAN I MAKE SURE THAT IS THE CASE ?? HOW CAN I SOLVE THE PROBLEM IF THIS IS THE CASE ??

I HAVE TO INSTALL A PRODUCT CALLED "KUDANI AIR " . FAILURE TO DO SO IS BASED ON  ADOBE AIR , SO I AM TOLD . HOW CAN I MAKE SURE THAT IS THE CASE ?? HOW CAN I SOLVE THE PROBLEM IF THIS IS THE CASE ??

if you try to install an app that depends on adobe air, you should be prompted to download and install adobe air (unless it's already installed).
you can download and install directly so you're not prompted by that app, Adobe - Adobe AIR

Similar Messages

  • I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    I have changed the email signature on my iPhone, when composing a new email the signature is there, however when I am replying to an email it is not, how can I make sure that the signature is at the end of every email I send?

    Yes I know what you mean about it cluttering the thread and for personal emails it is better without the signature. However this relates to sending business emails from an iPhone so I need the signature present on every email.
    I can't find anything in Settings so I was hoping someone may have some knowledge/information/experience regarding this problem.

  • I purchased three albums last week and only two of them were charged.   How can I make sure that the third album gets charged in a timely fashion?

    I purchased three albums last week and only two of them were charged.   How can I make sure that the third album gets charged in a timely fashion?

    Well, thanks for feeling with me, patkosanke ... AND for your wise advice.
    I did followed your advice immediately and erased all the service number as well as S/Ns.
    Can you, however, give me any "direct number" through which I can get hold of someone and request for what you're suggesting?
    I believe I had talked with the person by the name of "Charlie" (I think... I hope I'm correct...) when I was having the same problem with the last device. He was very kind and helpful, though I ended up getting the device that brought the same problem.
    Charlie told me that if I had any more problems I should call him. But I forgot to take down his direct number.
    Or maybe I should call the main office and ask for him. But my memory is questionable as to his name, and besides I don't even know his last name either. There could be more than one "Charlies" in Palm.
    So, if you could somehow email me some direct number (other than the one that keeps on hooking me up with those people in the overseas who are answering the phone only to sympathize with & apologize to me but can only issue a false hope with the SRO#. More than once I was given the promise that the supervisor would call me back within an hour or two but I ended up calling back after I had been left hanging in the air all night long.) where I can talk to someone like I did with Charlie last time who can truly carry out the promise, I would truly appreciate it, patkosanke. ^^
    Thanks
    jcinlovewpalmTX
    Post relates to: Palm TX
    Post relates to: Palm TX
    Message Edited by jcinlovewpalmTX on 03-05-2009 06:36 PM
    Message Edited by jcinlovewpalmTX on 03-05-2009 06:36 PM

  • HT5114 I lost my iphone 5 without signing out my account but I have bought another one. How can I make sure that the person in possesion of the phone is not using my account to make purchases? ?

    I lost my iphone 5 without signing out my account but I have bought another one. How can I make sure that the person in possesion of the phone is not using my account to make purchases? ?

    Thanks for your prompt response... will changing my password also stop the authomatic download of my new applications and music from downloading to the stolen phone?

  • HT1349 we both have the same Iphone, how can we make sure that we both have different account on the same network?

    my partner and i have the same models of Iphone. how can we make sure that when she logs on to our home network, it recognises her phone and doesn't down load to my phone?

    Did you try to rename one of them? iTunes: How to rename your device
    iTunes remembers the settings for each phone when you sync, even if both phones are called "My iPhone".
    So make sure to set it up like you want to, after that iTunes will do the rest.

  • When trying to locate songs in my iTunes library, often when I find the song it asks me if I would like it to find other missing files. Sometimes it can't find other missing songs. How do I make sure that it is looking at all of my hard dirves?

    Locating missing songs in my iTunes library. How do you make sure that all drives are being looked at for the missing songs?

    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    Delete the "songs" that do not play in your iTunes library and reimport them.

  • How can I make sure that in RAM our sql server is not facing any mermory crunch issue?

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks
    The best way to make sure you are not facing memory pressure is to use perfmon counters and monitor various memory counters
    For SQL Server 2005 - 2008 r2 use below counters
    SQLServer:Buffer Manager--Buffer Cache hit ratio(BCHR): IIf your BCHR is high 90 to 100 Then it points to fact that You don't have memory pressure. Keep in mind that suppose somebody runs a query which request large amount of pages in that
    case momentarily BCHR might come down to 60 or 70 may be less but that does not means it is a memory pressure it means your query requires large memory and will take it. After that query completes you will see BCHR risiing again
    SQLServer:Buffer Manager--Page Life Expectancy(PLE): PLE shows for how long page remain in buffer pool. The longer it stays the better it is. Its common misconception to take 300 as a baseline for PLE.   But it is not,I read it from
    Jonathan Kehayias book( troubleshooting SQL Server) that this value was baseline when SQL Server was of 2000 version and max RAM one could see was from 4-6 G. Now with 200G or RAM coming into picture this value is not correct. He also gave the formula( tentative)
    how to calculate it. Take the base counter value of 300 presented by most resources, and then determine a multiple of this value based on the configured buffer cache size, which is the 'max server memory' sp_ configure option in SQL Server, divided by 4 GB.
      So, for a server with 32 GB allocated to the buffer pool, the PLE value should be at least (32/4)*300 = 2400. So far this has done good to me so I would recommend you to use it.  
    SQLServer:Buffer Manager--CheckpointPages/sec: Checkpoint pages /sec counter is important to know about memory pressure because if buffer cache is low then lots of new pages needs to be brought into and flushed out from buffer pool, 
    due to load checkpoint's work will increase and will start flushing out dirty pages very frequently. If this counter is high then your SQL Server buffer pool is not able to cope up with requests coming and we need to increase it by increasing buffer pool memory
    or by increasing physical RAM and then making adequate changes in Buffer pool size. Technically this value should be low if you are looking at line graph in perfmon this value should always touch base for stable system.  
    SQLServer:Buffer Manager--Freepages: This value should not be less you always want to see high value for it.  
    SQLServer:Memory Manager--Memory Grants Pending: If you see
    memory grants pending in buffer pool your server is facing SQL Server memory crunch and increasing memory would be a good idea. For memory grants please read this article: 
    SQLServer:memory Manager--Target Server Memory: This is amount of memory SQL Server is trying to acquire.
    SQLServer:memory Manager--Total Server memory This is current memory SQL Server has acquired.
       8.  Free List Stalls/sec – Number of requests per second that had to wait for a free page
       9. Free Pages – Total number of pages on all free lists (free lists track all of the pages in the buffer pool that are not currently allocate to a data page, and are therefore available for usage immediately)
    NOTE: If you have NUMA system don't use PLE to monitor memory condition it wont give correct value
    From 2012 Onwards
    Memory management has become easy from 2012 onwards as
    Max server memory also allocated memory for requests which require memory >8KB
    SQLServer:Memory Manager:Free Memory (KB)
    SQLServer:Memory Manager:Target Server Memory (KB)
    SQLServer:Memory Manager:Total Server Memory (KB)
    For NUMA system its also wort monitoring each node.
    Object - SQLServer:Memory Node:Total Node Memory
      (KB)
    Object - SQLServer:Memory Node:Target Node Memory
      (KB)
    Object - SQLServer:Memory Node:Free Node Memory
      (KB)
    Ideally if target server memory is less than or equal to total server memory there wont be memory pressure if target is > total it does not always means its memory pressure
    BCHR would also give you good idea about memory pressure
    If memory grants pending is frequently non zero there is memory pressure
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • How do I make sure that my second-hand iPod is not a stolen product?

    My husband recently recieved an iPod shuffle from a friend of his. His friend told him he could have it since the friend didn't have a computer to download songs from or charge the iPod with. He states that he thought the iPod already had songs pre-recorded on it, and even if he used someone else's computer to get the songs, it's too much trouble. My husband had lent him some money to pay a utility bill and he was using this iPod that he just happened to have laying around to pay my husband back. I don't trust my husband's friend. How can I make sure that he isn't trying to push a stolen iPod off onto my husband? We haven't used it yet. My husband doesn't have much use for the shuffle, but I would love it, if only I could find out whether it was stolen or not. I don't want to take it to the police and start a big fight or get his friend in trouble, but if it is stolen I want to know so I can send it back to Apple or who ever owns it.

    Hi pyrausagi,
    You sound like a very honest and sensible person, who is taking very reasonable precautions against becoming a second victim of theft. Others on these forums have been less cautious and have lost their recent purchases.
    My suggestion would be to make sure the person offering the iPod shuffle is easily identifyable. Make sure he/she has a real address and you know what it is. Get a picture of the person and make sure they know you have it. If they are not above board I'm fairly sure they won't allow this.
    There are a number of online databases of stolen merchandise. Look them up and check the serial number of the iPod against these databases.
    Apple will not tell you if the item is stolen. Their phone agents that work with the public do not have that kind of information.
    Note that doing all this will not guarantee you don't get a stolen iPod. Only purchasing one new (or refurbished) from Apple or an authorized reseller can do that. It does, however, give you a better chance.
    Best of luck. Enjoy whatever iPod you get.

  • HT4946 how can I make sure that itunes saved my contacts and photos on last back up ?

    How can I make sure that itunes saved contacts and photos FROM my iPhone on last back up ?, i just bought this phone and store transfer contacts from old non-smart phone and dont want to loose them !

    Look in whatever software on your computer handles your contacts and photos. Neither will be part of the backup file. This may be of help:
    http://support.apple.com/kb/HT1296
    Regards.

  • EDiscovery_SharePoint 2013_After a set of content is placed on hold in a location, how do I make sure that anything added to the same location

    Hi everyone,
    After a set of content is placed on hold in a location, how do I make sure that anything added to the same location,that meets the filter (e.g. keyword) gets added to the hold automatically ?
    Right now the only way I can do this is to take off the hold ,re-apply the filter to the source and then enable the hold. That isn't sustainable.

    @arcycapa,
    If you have a Mac, you can download iDentify2 (http://identify2.arrmihardies.com/). It is free. You can use that change or set your contentRating. If you are on Windows, there is a commercial tool called MetaX. or download a free command line tool called AtomicParsley from (https://bitbucket.org/wez/atomicparsley). Unzip the file and run this command (AtomicParsley "C:/Users/Home Videos/name of the file.mp4" --contentRating R) from the DOS prompt without the parenthesis. Please keep in mind the forward slash in the path name listed above. This would generate a temp file. You can rename the temp file to the original file name. Just a word of caution, please make a copy of your original file somewhere. Just in case.
    Shekhar.

  • HT1355 If I am playing a song from my phone on speakers, how can I make sure that there are no interruptions like calls or notifications?

    If I am playing a song from my phone on speakers, how can I make sure that there are no interruptions like calls or notifications? My students are performing and it would be terrible if there was to be an interruption.

    You could turn on Do Not Disturb. This would block all notifications and incoming calls.
    Or just turn you're phone's Airplane Mode on if you're not streaming the music

  • How do i make sure that my creative cloud apps are RTL (hebrew) compatible?

    how do i make sure that my creative cloud apps are RTL (hebrew) compatible?

    In your Creative Cloud Desktop app choose Preferences, then under Apps,
    choose this App Language:
    Then each app you want will have an Install button next to it.
    After installing, go into Preferences for each app. Under Interface, choose English (Hebrew) for the UI language,and under Type, select Middle Eastern. Restart, and be sure your OS is set up for Hebrew.

  • How can I make sure that I don't get roaming charges when traveling with my iPhone?

    Hello everyone!
    I am going to be traveling to China next week (from Canada) and I want to bring my iPhone to listen to music, read books and use for Wifi as well.  However I don't want to use it for calls, browsing etc as I don't want to get charged roaming fees for these services.
    Is there a way that I can make sure that this does not happen?  I think that if I leave my phone on Airplane mode the whole time then I'll be fine and I can find Wifi wherever I am, but I just want to see if is this in fact correct or if there is anything else I can do instead.
    As well, if I do end up taking my phone and taking out the cellular service when I'm in China, will I still be able to use iMessage to text people back home if I really have to?
    Thanks!

    Put the phone in Airplane mode...this turns off all iPhone radios...but, you can go back into settings & turn WiFi back on. You can then use iMessage.
    No nasty surprises if you do that.

  • How do I make sure that CS5.5 Merge clips encodes Audio at correct volume?

    Windows 7 x 64, 2 TB, 12 GB RAM,
    I am using the Premiere Pro CS5.5 Trial (full version), particularly because of the new Merge clips feature.
    The Merge clips works intuitively and easily; this is a fantastic advantage. I am creating these clips to use in Captivate 5.0.
    But, when encoded, the Audio volume has blown out so that it shatters the ear drums.
    I am not sure whether this is a PP problem, or an AME 5.5 problem.
    A second problem is this with the Merge Clips. In the Project panel, if you check the Duration of a Merge clip (in PP) it shows the original duration even although it has been altered on the Timeline.
    If I encode the video clip separately from the Audio,  I can adjust the Audio volume in Captivate, but, this:
    1) increases the overall file sizes-something I don't want for the web.
    2) the video duration and the audio duration do not match, even though they did on the Timeline. This did not happen in CS5.
    I know this is a new version, but has anyone any ideas that I might try. I have alread delayed my project waiting for CS5.5 to become available.

    Sounds like Media Encoder is actually recording the audio as a stereo file but the audio is panned to one side.
    Check that you haven't accidentally panned the audio in the mixer to one side.

  • I need to restore my phone, how do I make sure that it backed up?

    I made the mistake of putting a new lock on my phone & now I can't remember what it was. I started the back up process last night & it said it needed 14 hours. This morning around 7am it said there were 3 hours remaining (it's been awhile since I updated/backed up). I came home from work and nothing was on the screen except itunes. I clicked something & it put my purchased songs from my phone to my itunes. Now I'd like to restore it, but would like to make sure it backed up. How do I do so?   Thanks!

    In iTunes, go to Edit>Preferences>Devices and look in the list and see what the backups are and the dates/times. If you had not done a sync for a long time, that would explain the extended length of time for the backup, but you can also try and do another backup if you are willing to risk the time by right-clicking on the iPhone in the device pane and select backup. If the earlier backup was successful, this one should be very short since you really didn't change anything since the last backup, and they are incremental now.

Maybe you are looking for