Questions tagged [launching]

61 questions
0
votes
2 answers

Launching html file in c++

I am trying to open a local html document using Shell Execute(). But, what i need is, Suppose if that particular document is already opened and if ShellExecute is triggered again, then that particular file should not be opened again instead bring…
Vicky
  • 39
  • 2
  • 2
  • 6
0
votes
1 answer

Why My project Run goodly But dont shown in emolator?

I am a new linux user and when I installed eclipse and sdk for android in linux.I get below error when I start emolator and wait for 15 minute. I ran my project.my project run very good and below message is shown. [2013-05-30 09:53:13 - RamzNegar]…
Mahdi-bagvand
  • 1,376
  • 19
  • 38
0
votes
1 answer

how to open Home Activity from any another Activity without using Intent

In a interview someone asked me this question. Suppose there are 4 activities in application. He wants back button to work normally on first three activities(i.e. going to previous screen on back button press); except the last. He wanted that, when…
Shirish Herwade
  • 10,601
  • 18
  • 66
  • 105
0
votes
2 answers

how to launch shell script from finder

I have some shell (Bash) scripts that process some video files in a directory. Instead of everytime launching a (Open)Terminal window, then typing the script name, I'd prefer to install an icon in the Finder's explorer toolbar so that a simple click…
user1458153
  • 105
  • 1
  • 8
0
votes
1 answer

My AVD emulator doesn't get loaded at Ubuntu

I usually develop my android tests at Windows using the Eclipse IDE. But now that I am needing to do the same at Ubuntu, for some unknown reason the emulator isn't getting loaded, but is getting frozen at the android launching screen. It doesn't…
0
votes
1 answer

I Can't Run Some Ant Tasks In FDT

Some of my Ant tasks fail in FDT. The error is usually: BUILD FAILED Problem: failed to create task or type fdt.invoke.launchConfiguration Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been…
Alan Klement
  • 1,228
  • 7
  • 18
0
votes
3 answers

What is the method for WebView finish loading?

I need a method like - (void)applicationDidFinishLaunching:(NSNotification *)aNotification but I need it for my WebView IBOutlet WebView*webView;. What is the right method?
Viper OS X
  • 283
  • 1
  • 4
  • 14
0
votes
1 answer

Windows Store App launch

I'm having issues with my Windows Store App launch. When I use the "close app gesture" (slide the app from top to bottom) and then launch the app again very fast, sometimes a blank black screen appears and when I click on it, it, the Start menu…
Martin Zikmund
  • 34,962
  • 7
  • 63
  • 83
0
votes
1 answer

TextMate refusing to launch in Lion

I found this post useful and important to share, so if anybody has problems running textmate after updating to OSX lion, do as follows...
headkit
  • 3,207
  • 4
  • 49
  • 99
0
votes
1 answer

To setStatusBarStyle when app is launching

The status bar style is set as following: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ [application setStatusBarStyle:UIStatusBarStyleBlackOpaque]; } But the status bar style when app…
lu yuan
  • 7,049
  • 9
  • 40
  • 77
0
votes
1 answer

Android app: Help screen on startup unless user sets preference not to. How?

There are posts that touch on this question, but no one that I can find that really directly approaches it or solves it. I have a main Activity that I want to call/create a help screen (it is really a second activity) when the user first gets into…
user1418094
-1
votes
2 answers

How to launch python script for other people to run it on their machines?

I made a game that runs in your terminal using Python and curses. Now I want to launch it so that when people visit the repository on GitHub they can download it and play it on their own machine. I have a Dockerfile but I don't really know if it is…
Phil
  • 107
  • 6
-1
votes
1 answer

Using CreateProcess to run a game executable

I'm making a custom UI at the moment so I'm trying to launch a game from within my C++ application using CreateProcess. Here is my code so far PROCESS_INFORMATION Processinfo; STARTUPINFO StartupInfo; ZeroMemory(&StartupInfo,…
-1
votes
2 answers

launching apps (using google apis) in android device directly from eclipse

My android app is using MapView and hence using the google api's. Problem is that for testing my app I have to export apk file with my keystore , install the app in device and then run it for checking the output and it consumes a lot of time. Is…
-2
votes
2 answers

How to open a specified activity inside my android application through voice command( google assistant) using android

I have three activities in my app and the initial activity is LauncherActivity,this is the starter class. I would like to launch an activity (named MainFormActivity) in my app using voice command. i.e, Google assistant. Could anyone help me to…
varsha jeevan
  • 49
  • 1
  • 10