Hi
Is there a way to "universally" program a NFC tag with a task that automatically take a picture from the front camera?
I am building a tool with some stickers and I need such feature in order to automate this task.
Thanks for the help
Related
Question:
Would it be possible to set a certain program to start in an orientation you specify?
For example, I'm a big gaming nerd, and I would like my PocketNES emulator to start in landscape mode as soon as I click on the icon to run it. Or my hacked AIM, I want it to always start in Portrait mode, whether the keyboard is out or not. The program would then function normally after the initial startup.
Is there any way I can accomplish this? Whether it is a 3rd party program, a registry key edit, etc.? Any help would be GREATLY appreciated. Thanks in advance.
aNiMeMaN14 said:
Question:
Would it be possible to set a certain program to start in an orientation you specify?
For example, I'm a big gaming nerd, and I would like my PocketNES emulator to start in landscape mode as soon as I click on the icon to run it. Or my hacked AIM, I want it to always start in Portrait mode, whether the keyboard is out or not. The program would then function normally after the initial startup.
Is there any way I can accomplish this? Whether it is a 3rd party program, a registry key edit, etc.? Any help would be GREATLY appreciated. Thanks in advance.
Click to expand...
Click to collapse
Not sure if there is such an app, but i do know Phonealarm by Pocketmax can change rotation depending on the profile your using, and you can also assign a particular app to execute when using that particular profile. What im saying is try to make a profile (phonealarm settings) wherein your desired Screen rotation and program will execute when choosing that profile... but im not sure if this will work 100% since some apps does not follow the screen rotation. www.pocketmax.net
Use Mortscript to change orientation and then launch your app.
PHM does little applets for changing screen orientation etc. Use the two together perhaps for some magic, if Mortscript doesn't natively support rotation.
V
hi,
I have made a simple panel that opens up google maps (only tested on uk rom) But i have only been able to run the program after u press on a button to start up.
Does anyone know the code (html) to make a program autostart on open up?
I have attached the panel for anyone who wants it
ps. this panel should be able to run any software on the phone as long as u have the path to the exe (change code in the source file)
Also is there a way to have a option menu in the panel manager for panels made with the html generator?
Added V2 with autoload
Nice...I'll try it...give you some feedback...care for a screenshot?
Thanks
added pics
the panel manager screen capture did not get the whole screen but u can see it top middle
Great contribution !!
Adding to the panels library
Keep up the good stuff !!
Maybe it will be useful when it can autostart. As it is now, I'd rather have a shortcut to start the program than a panel.
Ganondolf said:
hi,
Does anyone know the code (html) to make a program autostart on open up?
Click to expand...
Click to collapse
<body onLoad="extended://app:start?app=Program Files/GoogleMaps/GoogleMaps.exe">
Edit:
Well, that didn't work at all, so I guess the HTML Panel thingy doesn't support that parameter.
Tried <meta http-equiv="refresh" content="5;url=blah blah"> too, but no go. I'm out of ideas I'm afraid.
yh, i tried lots of different code lines (even tried to add flash code as the new panel manager works with flash in panels) but did not work.
but there must be a way as the over panels auto load.
I have a cab extracter software and going to see it i have extract the panels software and then add my own code to it.
but im not very good with the development side of things
Couldnt you just ask the guys that made the youtube or navigation panel?
Or maybe look at what the code says
dr3minem said:
Couldnt you just ask the guys that made the youtube or navigation panel?
Or maybe look at what the code says
Click to expand...
Click to collapse
had the same idea going to have a close look at the nav panel
Added auto load version to first post
ps. remember to uninstall v1 first
Hello all,
is there a way to use the gsensor to start/toggle programs ?
I think : shake device = second Home
shake again = TF3d
regards
That is a cool idea
There is an application I came across that is able to lock the screen by rotating the device in an anti/clockwise motion, so I am assuming you are able to use the Gsensor for function commands.
Here is the link to the app http://www.pocketpcfreeware.mobi/download-sensorlock.html
they have this on that new Toshiba phone. the TG01?? I think that's what it's called. but it's great that there's a way to do it on the TP2!!!
Hello,
I know that it's possible to add applications to whitelist for built-in screen rotation function in HTC Leo.
But this is very inconvenient. You need determine Class of application and then add it to registry...
Could anyone write a simple application, which could be mapped to hardware button. For example, when I use long button press - it automatically determines open (active) application window class and adds it to HTC Leo rotation whitelist. Second long press will remove this application from whitelist.
It will be very useful and convenient and no need to use external applications like Gyrator, because using built-in HTC abilities - is much better.
I'm sure this thing will be very popular and needed application.
Is anyone from developers interested in coding this idea ?
Hi, I have recently bought a HDC HD2 and am trying to port one of my own applications to it. I have problemes detecting when the device changes orientation (landscape/portrait). I have anchored the controls as suggested at MSDN and when rotating the emulator, the layout changes ok.
It looks to me like my program is not told when the screen is rotated. The resize event handler does not help. I am using MSDEV 2005. Does anybody knows what I am missing - has ideas on how to investigate further?
TIA
Hi,
Add the reference Microsoft.WindowsMobile.Status to your porject
then add this to your form load
Microsoft.WindowsMobile.Status.SystemState MyScreenOrientationMonitor = new Microsoft.WindowsMobile.Status.SystemState( Microsoft.WindowsMobile.Status.SystemProperty.DisplayRotation)
MyScreenOrientationMonitor.Changed+=new Microsoft.WindowsMobile.Status.ChangeEventHandler(MyScreenOrientationMonitor_Changed);
and the following event to be fired when the orientation changes.
void MyScreenOrientationMonitor_Changed(object sender, Microsoft.WindowsMobile.Status.ChangeEventArgs args)
{
//Do your stuff here
}
Thank you very much for your answer. However, it does not help me very much. It works very well in the emulator (like handling the resize event does), but nothing happens om the HDC.
I am wondering whether I have to do something on the HDC itself to facilitate the rorate-feature.
You can add the window to the registry to enable gsensor rotation.
Check out here