Is there any way to see the output from corona so that I can tell where in a file the problems are?
This is when running under the visual studio emulator.
Is there any way to see the output from corona so that I can tell where in a file the problems are?
This is when running under the visual studio emulator.
Is there any way to see the output from corona so that I can tell where in a file the problems are?
This is when running under the visual studio emulator.
No problem. Found the solution in one of the other threads. Apparently I needed to set the debugger to native.
Glad you figured it out.
For everyone else’s quick reference, you can see your print() output via Visual Studio’s “Output” panel by doing the following:
Right click on your application project in Visual Studio.
Select “Properties” from the popup menu.
Select the “Debug” tab on the left.
Go to the drop-down box under “Debugger Type\UI Task” and select “Native Only”.
Run your application in debug mode.
Just be aware that print output has large performance impact on WP8 while attached to the Visual Studio debugger. I’ve found that it takes about 3-4 milliseconds per print() statement. The native C/C++ printf() functions, Win32 OutputDebugString() functions, and .NET System.Diagnostics.Debug.WriteLine() methods are just as expensive.
Is there any way to see the output from corona so that I can tell where in a file the problems are?
This is when running under the visual studio emulator.
No problem. Found the solution in one of the other threads. Apparently I needed to set the debugger to native.
Glad you figured it out.
For everyone else’s quick reference, you can see your print() output via Visual Studio’s “Output” panel by doing the following:
Right click on your application project in Visual Studio.
Select “Properties” from the popup menu.
Select the “Debug” tab on the left.
Go to the drop-down box under “Debugger Type\UI Task” and select “Native Only”.
Run your application in debug mode.
Just be aware that print output has large performance impact on WP8 while attached to the Visual Studio debugger. I’ve found that it takes about 3-4 milliseconds per print() statement. The native C/C++ printf() functions, Win32 OutputDebugString() functions, and .NET System.Diagnostics.Debug.WriteLine() methods are just as expensive.