Languages

Menu
Sites
Language
Launch Emulator Browser using sdb, passing url as parameter

Hello,

Is there a way to open a new web page in the Emulator Browser directly from the command line of the host terminal?(something similar to this, for Firefox:

http://kb.mozillazine.org/Command_line_arguments)

So far, I am only able to start the Browser application using sdb with this command:

sdb shell /opt/apps/kmcele1k0n/bin/Internet

Also is there a reason why the browser crashes when trying to start it directly from the shell of the emulator?

As a note, I am using  the TIZEN 2.0 Magnolia SDK.

Any help is most appreciated.

 

 

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

3 Replies
Lakshmi Grandhi
Hi Alexandru Blanda, Internet application is a c++ code, after looking into source code from http://download.tizen.org/releases/latest/2.0-emul/repos/main/source/ apps.Internet-1.0.0.0-1.2.emul.src.rpm it is processing command line arguments, launching of internet with predefined url in web application is working properly new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view","http://tizen.org", null, null, null); Kindly check in native application forum.
Alexandru Blanda
Hello, I'm not sure if this is what I am looking for. I will try to explain better: I am not trying to develop a web application that launches the Internet Browser App. I am trying to launch the Emulator Browser from the terminal of the host on which I am running the emulator with a predefined URL, using sdb. Is that possible? Thank you for your help.
Lakshmi Grandhi
I understood your point of launching internet application with predefined url from command line. Normally all c++ apps will process command line arguments, similarly internet app also process the arguments, my point is here that sdb shell /opt/apps/kmcele1k0n/bin/Internet http://google.com will be argument to shell not to internet application.