54 Topics

Member Avatar for
Member Avatar for soccermiles

I would like to embed the python interpreter, but not in the way most other people do. I don't need to multi-thread unless it's necessary to do as follows... What I need is control over when execution happens. More specifically, I would like to use a python script to call …

Member Avatar for soccermiles
0
263
Member Avatar for casey_sunako

Hi. I would just like to know if there is a way to embed a VLC media player inside windows form in visual basic 2010? Thanks.

Member Avatar for casey_sunako
0
204
Member Avatar for JimPatrick

Hi Guys, We are having an issue with the video playing on our client's site. The video plays fully locally but not fully once set live on the any of the browsers, it plays just the first 15secs, then it stops. Can anyone share some ideas as to how we …

Member Avatar for sun-tzu
0
174
Member Avatar for scarcella

Hi guys, i was wondering how could i embed my youtube cannel's latest youtube video. I dont want to have to go and update this every time i upload a new video. Thanks, Marais

Member Avatar for Database Shardi
0
103
Member Avatar for jimib

Here's the code I use to show an swf file that's located inside my project (in the directory SWF. It works fine. However, SWF files are huge and I would like to keep them in an external directory. I put some in my development server (C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\10.0\SWF) …

0
94
Member Avatar for kalodakilla

Hi all, i'm pretty new to java applets and been struggling to embed it into a webpage. I made a java applet using eclipse, and ran it using eclipse's applet viewer just fine. However i cannot embed it into my webpage. I placed the jar file i exported from the …

Member Avatar for NormR1
0
291
Member Avatar for kanjigirl

I don't have access to the original Flash file - can someone help? Here's my test page. You can see that first test banner not working at the top, with the code provided by the advertiser: [URL="http://www.riftcache.com/test.php"] http://www.riftcache.com/test.php[/URL] If I remove the "?clickTAG...." part from the "embed src" section, it …

Member Avatar for j_rome
0
148
Member Avatar for darkslide

Hello :) I was just surfing this forum and i want to thank you, because it really helped me. Also, i find the sections of the site very useful. Thank you! :) I've recently started a website that embeds youtube videos, and i have a question. From what you wrote …

Member Avatar for Azmah
0
194
Member Avatar for nquinlan

I'm trying to find a way to find the URL of an external HTML document when it embeds an image generated by PHP. So for example I would want the following to happen if these two documents occurred. [B][url]http://example.com/index.html[/url][/B] [CODE=HTML] <img src="http://otherplace.org/image.php" /> [/CODE] [B][url]http://otherplace.org/image.php[/url][/B] [CODE=PHP] header('Content-Type: image/gif'); readfile("test.gif"); $thelocation …

0
93
Member Avatar for 612wharfavenue

I wrote this to trigger a video when an image is clicked, but its not working. Any help? [CODE] <head> <style> #movie {} #img {} </style> </head> <body> <embed type="application/x-vlc-plugin" name="VLC" target="mymovie.webm" id="movie" > </embed> <img src=myimage.jpg" id="img" /> <script> var v = document.getElementById("movie"); var i = document.getElementById("img"); i.onclick = …

Member Avatar for parmarsanjayr
0
180
Member Avatar for amishraa

Slight problem when embedding HTML inside PHP. Problem #1 logon php page contains the form for user to login. With successful login, it brings up the user to the resume page. In order to maintain the uniform design throughout all the pages on the site, the logon page contains the …

Member Avatar for amishraa
0
205
Member Avatar for dcarrawa

I have a question about embedding Perl scripts in C. I wrote most of the program in C and a portion of it in Perl. As of right now, to call the Perl script I'm using pipe(), fork() and dup2() to create another process and have the Perl application write …

Member Avatar for dcarrawa
0
251
Member Avatar for Roy Murphy

Could someone please help with an issue that's preventing my video from showing in IE8. It play's on all other IE versions...and plays fine in Firefox & Chrome. [code]<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="768" height="466"> <param name="movie" value="../media/video/anassa.swf"> <param name="quality" value="high"> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowFullScreen" value="True" /> <embed src="../media/video/anassa.swf" quality="high" …

Member Avatar for Roy Murphy
-1
161
Member Avatar for marian99us

Hello, I have been looking for a solution for a long time. I have embedded a SWF app in html page using SWFObject. Now I need to give the Flash app the address where it is currently embedded, since the same SWF file is embedded in more than one locations! …

Member Avatar for rajarajan2017
0
180
Member Avatar for Derek Chou

I have a heap of amazing videos, and I want to upload and embed those videos into my personal website as video tutorial. Could someone recommend me a easy-to-use and intuitive software to complete this task?

0
98
Member Avatar for 00 freedom

hi all, i would like to ask if do you know how to Embed the Remote Desktop ActiveX Control in a Web Page using C#? any help would be greatly appreciated!! thanks!

Member Avatar for murugavel84
0
218
Member Avatar for imb4uin

Hi can someone who knows html please help me out? I have my webpage, [url]http://users.igl.net/ash/index.html[/url] It has a javascript on it. I am trying to embed my homepage on my league site. so I write the code as follows <embed height="200" name="homepage" hidden="never" width="200" src="http://users.igl.net/ash/index.html" allowscriptaccess="true" /></embed> My homepage loads …

Member Avatar for imb4uin
-1
118
Member Avatar for diafol

YT spits out invalid xhtml for embed code, so have been trying to get to grips with validating pages with embedded videos. Came across this today. Any thoughts? Does it work with all browsers? I've got the modern ones - so can't test the oldies. [CODE]<object type="application/x-shockwave-flash" data="[B]http://www.youtube.com/v/vUzTQWn-wfE&amp;hl=en_US&amp;fs=1&amp;rel=0[/B]" width="400" height="326"> …

Member Avatar for MidiMagic
0
143
Member Avatar for subhan222

Hi, I am trying to embed python in c++. everything is working fine apart from couple of issue. what exactly i am doing is creating an API for C++ functions in my application to be accessible using python script. When i run a script its runs fine and when i …

0
106
Member Avatar for GReddy4u

I'm attempting to add a skip intro button within the intro. I've tried using methods that have worked with regular animations but they aren't working. I tried this code with no luck so I'm hoping someone else has something that will work. [CODE]monkey_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); function mouseDownHandler(event:MouseEvent):void { navigateToURL(new URLRequest("http://www.domain.com/")); }[/CODE]

Member Avatar for rajarajan2017
0
260
Member Avatar for jonow

This may be the wrong place to be posting this but here I go. I have a search on my site that uses Google Custom Search. I would like it to also search my Google Calendar. I can't find any method to search just the Google Calendar. I was wondering …

0
101
Member Avatar for ebrutekim

[CODE]#include <iostream> #include <string> #include "Python.h" using namespace std; #define py PyRun_SimpleString(pythonCommand.c_str()) int main() { string pythonCommand; //Python started Py_Initialize(); pythonCommand = "import sys";py; pythonCommand = "from math import sqrt";py; pythonCommand = "sys.setrecursionlimit(1000000)";py; //factorial function pythonCommand = "def ft(x): return(1 if x==0 else x * ft(x-1))";py; //equation using function pythonCommand …

Member Avatar for ebrutekim
0
174
Member Avatar for theonlyhugeg

ok i'll try to explain it simply and clearly. i have looked for a solution for a long time but they either didnt work and were too complicated for my little skill. so i have a main .swf which im working on. i then have buttons which when clicked, launch …

Member Avatar for JasonHippy
0
314
Member Avatar for GuyClapperton

Reports just in suggest that a couple of manufacturers are about to launch televisions with the capacity to view films immediately built in. At least that's what the confusingly-worded [URL="http://uk.reuters.com/article/technologyNews/idUKTRE5040E820090105?feedType=nl&feedName=uktechnology"]news report[/URL] I picked up said (unusual for Reuters to confuse us in this way). What it means is that TVs …

Member Avatar for Salem
0
204

The End.