Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
6answers
42k views

How to embed fonts in HTML?

I'm trying to figure out a decent solution (especially from the SEO side) for embedding fonts in web pages. So far I have see the W3C solution, which doesn't even work on Firefox, and this pretty cool ...
28
votes
10answers
9k views

Which Javascript engine would you Embed in an application?

Just to make it clear, I'm not interested in DOM scripting or writing Javascript in a browser. What I want to do is embed Javascript in a hobby game engine of mine. Now that we have the 5th generation ...
22
votes
5answers
46k views

differences between using wmode=“transparent”, “opaque”, or “window” for an embedded object on a webpage

when embedding a Flash object with the <object> and <embed> tag, there is an attribute called wmode. It seems that most of the time, wmode="transparent" is the same as wmode="opaque" as ...
16
votes
4answers
860 views

Running Android apps on web browser

I work for company which specializes in Native mobile app development. The company does both Android and iOS apps. Now to show our apps to executives for different companies we use pieceable.com to ...
16
votes
1answer
478 views

Google Chrome escapes WYSIWYG Javascript

So my problem is relatively simple, I've Googled all over to find a solution but I've yet to find one. The problem is, I've developed a WYSIWYG plugin for Drupal's WYSIWYG module/framework (not sure ...
15
votes
11answers
30k views

How to embed YouTube videos in PHP?

Can anyone give me an idea, how can we show or embed a YouTube video if we just have the URL or the Embed code. Thanks for the help
15
votes
4answers
7k views

WebKit support for Delphi

Is there a way to embed the WebKit engine into a Delphi application?
11
votes
5answers
6k views

Posting an embedded video link using the Facebook Graph API

When manually attaching a video link (from YouTube, Vimeo, etc) to a post using the Facebook web interface, Facebook automatically recognizes the link as a video, and allows the resulting status ...
11
votes
5answers
2k views

How to embed a Python interpreter in a PyQT widget

I want to be able to bring up an interactive python terminal from my python application. Some, but not all, variables in my program needs to be exposed to the interpreter. Currently I use a ...
10
votes
2answers
288 views

Embed an R process in a VBA macro

the title exactly -- is there a way to call an r process from an excel macro?
9
votes
1answer
811 views

Embedding Office in Java

I'm trying to get Office 2007/2010 application embedded inside a Java application using SWT using the following code: import java.awt.Canvas; import javax.swing.JFrame; import org.eclipse.swt.SWT; ...
9
votes
12answers
3k views

Scripting language for embedding into C#/.NET applications?

[The only similar question I can find was answered long ago and contains a reference to mostly IronPython. I want to consider other options as well] We have a complex data analysis application ...
8
votes
7answers
866 views

Linking directly to a SWF, what are the downsides?

Usually Flash and Flex applications are embedded on in HTML using either a combination of object and embed tags, or more commonly using JavaScript. However, if you link directly to a SWF file it will ...
8
votes
14answers
27k views

Embed a PowerPoint presentation into HTML

Is it possible to embed a PowerPoint presentation (.ppt) into a webpage (.xhtml)? This will be used on a local intranet where there is a mix of Internet Explorer 6 and ...
7
votes
2answers
896 views

A simple mongodb question: embed? or reference?

I'm new to mongodb from a relation-database background. I want design a question structure with some comments, but I don't know what I should do: embed? or reference? A question with some comments, ...
7
votes
2answers
344 views

Which interpreted language can work on on microchip PIC32?

I'm looking for an interpreted language that work on microchip PIC32. Currently, I found that LUA and PAWN are working but before choosing I would like to know if some other languages are known to ...
7
votes
2answers
3k views

Magento - How to allow certain tags (iframe, embed) in Magento's CMS editor?

I would like to allow to enter certain html tags such as iframe and embed in Magento's CMS editor. Magento does not allow those tags. Is there a model or controller that I can edit to allow iframe ...
7
votes
2answers
2k views

How to embed a video into GitHub README.md?

Is it possible to embed a flash video into README.md on GitHub? It isn't showing up: https://github.com/mattdipasquale/PicSciP
7
votes
2answers
956 views

How does YouTube embedding work without a classid in the object tag?

A typical code fragment obtained from the YouTube embed feature looks like this: <object width="660" height="405"> <param name="movie" ...
7
votes
12answers
34k views

Embedding Windows Media Player for all browsers

We are using WMV videos on an internal site, and we are embedding them into web sites. Now, this works quite well on Internet Explorer, but not on Firefox. I've found ways to make it work in Firefox, ...
6
votes
1answer
273 views

Embedded youtube videos blocked by network admins stopping web page loading

This is a curly one. We've developed a website for one of our clients which has some embedded youtube videos. Unfortunately, the clients internet filtering software blocks youtube access - this ...
6
votes
3answers
698 views

How should I embed Python in a C++ Builder / Delphi 2010 application?

I'm interested in experimenting with embedding Python in my application, to let the user run Python scripts within the application environment, accessing internal (C++-implemented) objects, etc. I'm ...
6
votes
4answers
2k views

How to embed a satellite assembly into the EXE file

I got the problem that I need to distribute a C# project as a single EXE file which is not an installer but the real program. It also needs to include a translation which currently resides in a ...
6
votes
5answers
4k views

HTML Embedded PDF's & onload

I'm embedding a PDF in a web page with the following html :- <object id="pdf" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="1024" height="600"> <param ...
6
votes
3answers
3k views

Embedding icon in .exe with py2exe, visible in Vista?

I've been trying to embed an icon (.ico) into my "compyled" .exe with py2exe. Py2Exe does have a way to embed an icon: windows=[{ 'script':'MyScript.py', 'icon_resources':[(1,'MyIcon.ico')] ...
6
votes
4answers
6k views

Best way to embed flash in html

It exists too many method for embedding flash in html, which way is the best? Requirements are: Cross-browser support Support for alternative content (if flash is not supported by the browser) ...
5
votes
1answer
258 views

How to specify parameters to google chrome adobe pdf viewer?

I have an embed tag like this: <embed src="../../Content/PDF/StockReport.pdf#zoom=50" width="100%" height="100%"> the #zoom=50 is a parameter that tells the pdf reader to zoom to 50%. This ...
5
votes
1answer
1k views

Yet another question about embedding ZXing in android app

so im another unlucky android development beginner who needs to have ZXing barcode scanner embedded in his app. There is plenty of questions asking how to do this here on stackoverflow but none of ...
5
votes
2answers
1k views

How do I allow script, object, param, embed, and iframe tags in HTMLPurifier?

This is kind of a special combination of tags that I want to allow in HTMLPurifier, but can't seem to get the combination to work. I can get script tags to work, but then embed tags get removed (I ...
5
votes
2answers
2k views

What exactly am I embedding when using WebKit in C#?

As I understand it, both Safari and Chrome use WebKit. There are many projects that allow you to embed WebKit, but want I actually want is to embed Chrome (for Windows) in a C# app so that my ...
5
votes
5answers
218 views

How can I enable use of math in my html web page

I have a blog where people can post their comments. My problem is that I need to enable people to be able to use math formulas using latex syntax. I cannot make any changes to the server. I can only ...
5
votes
2answers
5k views

android: using ActivityGroup to embed activities

Im in the conceptualizing/design phase of building an app and i've hit a bit of a snag. Essentially i was looking for a way to embed one activity into the UI of another similar to how a ...
5
votes
2answers
4k views

Dynamically change embedded video src in IE/Chrome (works in Firefox)

I'm trying to dynamically change an embedded video on a page. It's working in Firefox but for some reason it's not working in IE and Chrome (strange combination). Here's the HTML: <object ...
5
votes
5answers
1k views

Display web page from another site in asp page

Our customer has a requirement to extend the functionality of their existing large government project. It is an ASP.NET 3.5 (recently upgraded from 2.0) project. The existing solution is quite a ...
5
votes
2answers
1k views

How to Embed/Link binary data into a C++ DLL

So I have a Visual Studio 2008 project which has a large amount of binary data that it is currently referencing. I would like to package the binary data much like you can do with C# by adding it as a ...
5
votes
1answer
4k views

Is there a legal way for me to embed the Calibri font into a website for non Windows Vista/7 visitors?

I would like to use Calibri for my website. I would like to use the Calibri font for my website even when the visitor does not have the font installed (ie. non Windows Vista/7 visitors). Does ...
5
votes
4answers
661 views

Embedding part of a web site

Suppose I want to embed the latest comic strip of one of my favorite webcomics into my site as a kind of promotion for it. The webcomic has the strip inside of a div with an id, so I figured I can ...
5
votes
1answer
3k views

Html - embed image directly in html (old school style)

I know you can embed images in html today with: <IMG SRC="data:image/gif;base64,RAAA...more data....."> But back in the day, when Netscape was a browser to implement for, there was another ...
5
votes
4answers
729 views

java equivalent of swfobject

looking for a javascript class like swfobject to embed java and have a simple fallback if the user doesn't have java or refuses the security prompt. thanks, Josh
5
votes
5answers
6k views

Changing arbitrary flash objects wmode to transparent

I need to change wmode of arbitrary flash objects to transparent from external js file to make sure they don't hide menus without using Jquery or similar libs. In FF I use ...
5
votes
5answers
4k views

Embedding web browser window in Java

Does anyone know a way to open up an instance of the platform's (Windows/Linux/Mac) browser within a Swing window that is integrated into a Java application. No other actions would be preformed other ...
5
votes
7answers
2k views

What are effective options for embedding video in an ASP.NET web site?

A quick glance at the present-day internet would seem to indicate that Adobe Flash is the obvious choice for embedding video in a web page. Is this accurate, or are they other effective choices? ...
4
votes
1answer
97 views

onEnded event not firing in dojo dialog

I am trying to get an event to fire when a movie finishes playing. The movie appears when a link is clicked and is in a dojo dialog. I am using the tag to play the movie and have attempted to use ...
4
votes
1answer
203 views

Show alert on a button click

I'm using the default Facebook embed code: <div id="fb-root"></div> <script src="http://connect.facebook.net/en_US/all.js#appId=176702405718664&amp;xfbml=1"> </script> ...
4
votes
4answers
713 views

Is it possible to embed and run exe file in a Delphi executable app?

Resource files (.RES) accept any kind of binary files but if it is an exe file how to run it?
4
votes
1answer
347 views

How to embed resources into a single executable?

If you've ever used the tool Game Maker, it's a bit like that. I want to be able to take all my sounds, images, and everything else of the like and embed them into a single C++ executable. Game Maker ...
4
votes
1answer
808 views

Play Youtube video in MPMoviePlayerController or play RTSP - 3GP link

I've checked on stackoverflow and searched all over the internet but haven't been able to find a solution to my problem. In my app I need to have control over the way a youtube video is shown. I need ...
4
votes
1answer
265 views

Help! Journey Won't Stop Playing! (Changing Embed Object's Values With JQuery Doesn't Change Playing Video)

I have a page with the following video player: <div id="flashContent"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="589" height="470" id="Take5" ...
4
votes
1answer
443 views

How to invoke Rhino compiled JavaScript methods (class files) in the Java program?

I compiled following JavaScript file, "test.js", into the "test.class" : var test = (function () { var that = {}; that.addNumbers = function (a, b) { return a+b; }; return that; }()); ...
4
votes
1answer
64 views

what are good practices / strategies for making content embeddable on external websites?

I have HTML/JavaScript content on my website that I want other websites to be able to embed. What are some good strategies? Should I send json with a script to embed? Should I create an iframe for ...

1 2 3 4 5 21