Questions tagged [launching-application]

285 questions
10
votes
1 answer

Can not launch android project from xml layout file in Eclipse

I've just updated Eclipse IDE for android to the newest version. In this version, when I press ctrl + f11 in layout file (or any xml file,however in activity file, it works as expected), nothing happens!! It's not what I want! In the previous…
Kingfisher Phuoc
  • 8,052
  • 9
  • 46
  • 86
10
votes
2 answers

Default-568h@2x.png for iPhone5

I want to update my app so that can be deployed on iPhone5. Xcode(4.5) has a Default-568h@2x.png which is a black image(640X1136). In iPhone5's simulator, it still loads the old Default@2x.png. I wanted to know whether it will be same on the actual…
Mil0R3
  • 3,876
  • 4
  • 33
  • 61
9
votes
2 answers

How to use the eclipse launch configuration string prompt for two values?

Prompting the user in the Eclipse external tool run configuration is simple enough: ${string_prompt:"Enter a string":"DefaultString"} However, is there a way for me to configure my run configuration to use this as two separate arguments to my…
kevinmm
  • 3,136
  • 4
  • 21
  • 24
9
votes
3 answers

Launch custom app with URL by domain

Even though the YouTube app is now not a built-in app by Apple, it looks like when tapping a youtube link (in mail, for example), which starts with http://www.youtube.com, opens the YouTube app right away. Is there a way to this for custom apps in…
Danra
  • 9,546
  • 5
  • 59
  • 117
8
votes
4 answers

How to check first time app launch in Flutter

I am a beginner in a flutter, I have created my application but I want to check if the user opens the application for the first time after installing, I have seen this article but did not know how that? This is the splash screen code, the code move…
Abdullrahman Wasfi
  • 401
  • 1
  • 7
  • 13
8
votes
2 answers

Launching an Mac App with Objective-C/Cocoa

When launching Path Finder app with command line, I use open -a Path Finder.app /Users/. Based on this idea, I use the following code to launch Path Finder. Can I have launch app without using open command line? NSTask *task; task = [[NSTask alloc]…
prosseek
  • 182,215
  • 215
  • 566
  • 871
8
votes
1 answer

Android app starts very slow at first launch but normally on next launches

I create quite a heavy app using Eclipse and deploy on 4.2.2 device. At the very first launch, it takes quite a long time (3~5 seconds) until UI is displayed completely. After that, even after app killing and restart, everything goes fast, take 0.5…
giang.asl.8
  • 313
  • 2
  • 11
8
votes
4 answers

Specify monitor when opening file. (.bat)

The following .bat file below simply opens two text files overlaying them, but I'm wondering if it's possible to define a specific display source, or if anyone can assist in providing the correct parameters. @echo off START /max /wait NOTEPAD.EXE…
7
votes
1 answer

Simulate Launch Options

in my appDelegate, I have some specifications when the App is launch with a File from i.e. Mail app. When I launch my App, everything works normal. When I launch the App via File from Mail, the App crashes. Unfortunately, I am not able to debug it…
Faser
  • 1,256
  • 1
  • 18
  • 36
7
votes
5 answers

Android Application creating two launcher icons

I am having a very confusing problem with an application I have been working on for some time. Suddenly, when running my application, I found an immediate force close upon launch. Upon further investigation, I found two launcher icons in my…
feztheforeigner
  • 317
  • 1
  • 4
  • 12
7
votes
1 answer

Prevent Eclipse Add required plug-ins from adding fragments

I am working on RCP application which contains plug-ins(functionality) and fragments(tests) in Eclipse Luna. "Add required plug-in" adds plug-in with all its fragments even if fragment isn't necessary. How can I force eclipse to make absolute…
7
votes
0 answers

Launch the app with Options or With Custom URL scheme after installing from iTunes

Is it possible to navigate user to specific screen of our app when he/she installs the app from a link to iTunes Store. let's suppose i shared a link of our app to some friend via email, if the app is already installed on his/her device then our app…
W.S
  • 931
  • 1
  • 10
  • 36
6
votes
4 answers

Running File from Notepad Plus Plus and Current Directory

There are a number of examples on the web of how to run a file from the Notepad Plus Plus (NPP). But they all fail to account for the fact that the current working directory is the location of the NPP's executable, and not the location of the…
mcu
  • 3,302
  • 8
  • 38
  • 64
6
votes
1 answer

how to launch a second application in a second screen in WPF?

I actually work on two little wpf application for track, one is on the principal computer, you can wrote the time of the pilot on, the second must display in a big screen connect to the principal computer in hdmi and just display the time to the…
nicar
  • 157
  • 1
  • 14
6
votes
5 answers

protocol handler

Requirement: We want to launch an external compare tool (like BeyondCompare or WinMerge) from a web page, through a button or link. The text file paths should be passed to the tool on its launch, so it understands them and opens them in the left and…
1
2
3
18 19