1
vote
1answer
39 views
How to host an IronPython engine in a separate AppDomain?
Hi All,
I am using the below code to execute the IronPython Script on separate "appDomain" from c#.
(I used this approach to resolve memory leakage issue)
The scripts which take a lesser time (less …
10
votes
4answers
296 views
Embedding instead of inheritance in Go
What is your opinion of this design decision? What advantages does it have and what disadvantages?
Links:
Embedding description
1
vote
3answers
279 views
Embedding Fonts in AS3 - Dynamic Text Field disappears
This is hopefully a new problem or just me missing something obvious. Please help! I'm embedding a font into my AS3 application. I'm doing everything by-the-book and it half-works.
In my main class,
…
2
votes
3answers
156 views
Is Haskell Embeddable?
I'm wanting to know if it's possible to develop applications in or on Haskell to Windows Mobile, also if there is any version of hugs or ghci for Windows Mobile. Thanks.
2
votes
1answer
86 views
Embedding Python Design
There are lots of tutorials/instructions on how to embed python in an application, but nothing (that I've seen) on overall design for how the embedded interpreter should be used and interact with the …
0
votes
3answers
36 views
sIFR Only the first font-style of glyph in my swf will display, cannot seem to call up the others.
I've uploaded my .swf with bold, normal and italic glyphs of the font embedded. I then go to my sifr-config.js file to style the text using CSS. All properties except the font-style:italic; and …
0
votes
2answers
344 views
ActionScript 3 & font embedding
hey!
I have a problem with doing proper font embedding in a actionscript 3 project (flash CS4, not flex).
I followed this Adobe guide to do font embedding:
…
4
votes
2answers
69 views
How do I embed IPython with working generator expressions?
Certain list comprehensions don't work properly when I embed IPython 0.10 as per the instructions. What's going on with my global namespace?
$ python
>>> import IPython.Shell
>>> …
1
vote
4answers
302 views
Python interpreter as a c++ class
I am working on embedding python in to c++. In some peculiar case I require two separate instances of the interpreter in same thread.
Can I wrap Python interpreter in to a c++ class and get services …
2
votes
1answer
95 views
Embedding IronScheme in a C# app
I'm trying to add a plugin architecture to my C# app. I've chosen IronScheme as the language, and also because it's built on the DLR, which should make it easier to embed.
On the Codeplex Wiki, they …
0
votes
1answer
48 views
Possible to launch JWS applet within browser instead of standalone?
Is it possible to embed an applet in HTML so that it will be displayed within the browser window yet launched through Java Web Start via a JNLP file instead of using the browser's Java plugin? If so, …
0
votes
1answer
88 views
How to make GhostScript PS2PDF stop subsetting fonts
I am using the ps2pdf14 utility that ships with GhostScript, and I am having a problem with fonts.
It does not seem to matter what instructions I pass to the command, it insists on subsetting any …
0
votes
1answer
82 views
Excel OLE - .NET COM AddIn behaves differently when Excel is embedded in an application
I have a .NET (C#) addin that uses a COM Shim dll to load itself into Excel. The addin works fine without any problem when Excel is run normally. The addin displays its own custom toolbar in Excel …
0
votes
3answers
99 views
How to get to the IronPython Lib directory?
I am embedding IronPython in a C# program. I understand that I need to call ScriptEngine.SetSearchPaths with a list of search paths so that my Python code can import modules. In particular I have to …
0
votes
2answers
36 views
How are strings embedded in binary files?
I'm writing my own bytecode and virtual machine (on .NET) and one thing i can't figure out is how to embed strings into my bytecode. Any ideas now how i should do it?
