Advanced Forum Search Results
-
The deal if the following, I can't afford Visual Studio, and the Express version isn't so good if I aim Silverlight. Eclipse, just sucks, I've never been in the open source world. I do have a Visual Studio with a student or somewhat license which let me use VS a study and investigation tool, not for production, therefore my comercial ...
-
I'm not the type of guy who likes to work with VS, I just work with a regular text editor, therefore most of my work is done manually, like compiling, debuging etc... I've been trying to embed a XAML file to a DLL assembly as a resource while compiling. I've also loaded the XAML inside the application but I get no result at ...
-
I'm simply interestred in using the SilverlightContrib assemblies to manage a zip file. I'm having problems adding the assembly. In the AppManifest.xml I added the following lines:
<AssemblyPart Source="SilverlightContrib.dll"/>
<AssemblyPart ...
-
I've been working in a project in SL2.0, in which you load some data at startup. The idea is to load the data in JSON format inside a javascript file. To reduce size it was packed server side in a xap file, therefore the file size decreases about 80%.
The whole process starts when the client makes the request to a linux server ...
-
Is there any webcam support in SL2? The idea is to build a Touchless SDK version for Silverlight, so I'll need to access the webcam to control de application with gestures. Also, in the Touchless SDK the System.Drawing namespace is used to manage the image capturing and processing, therefore, in SL2 I would need to find a way to make it ...
-
I've tried the getHost() method before and it has it's moments when it doesn't want to colaborate. Use my functions:
function MyObj(id)
{
return eval(document.all? document.all[id] : document.getElementById(id));
}
function MySLObj(name)
{
return (new ...
-
You must add a StoryBoard object that fades out the opacity property.
<Canvas x:Name="test" MouseLeave="hideTest">
<Canvas.Resources>
<Storyboard x:Name="testFadeOut">
...
-
There's no difference betwen them, yuo can call the parameters any way you like. The only thing you should have in mind is to work inside the function with the same name. For instance you can call the parameters par1 and par2, but you assign names that can easily relate the variable or parameter with the data contained inside, so in this ...
-
I have a bit of unorthodox method to work with the Silverlight elements. The following are my main functions whenever I work with BLOCKED SCRIPT
function MyObj(id)
{
return eval(document.all? document.all[id] : document.getElementById(id));
}
function MySLObj(silverlightHostID, name)
{
return (new ...
-
I'm not using the KeuUp/KeyDown events, since I want to capture any key available such as @ ot %&$, that can't be captured by the Silverlight events. At this momento I have already solved the puzzle, I can capture the keys, any of them, the problem now is related with the focus on the plugin. Somehow, the plugin gets focus whenever I ...