frames

How to write bitmaps as frames to H.264 with x264 in C\C++?

How to write bitmaps (RGB) as frames to H.264 with x264 in C\C++? Some Examples with source would be great! ...

Keep a permanent connection to the server while navigating a website

Hi, We are a young start-up launching a unique chat product next week. Our chat is currently based on Jabber (using Openfire as our Jabber server) via BOSH (using Punjab), with jQuery for our client side scripts. Right now our most critical issue with the current setup is with the site navigation, when navigating between pages in our we...

How to write mp3 frames from PCM data (C/C++)?

How to write mp3 frames (not full mp3 files with ID3 etc) from PCM data? I have something like PCM data (for ex 100mb) I want to create an array of mp3 frames from that data. How to perform such operation? (for ex with lame or any other opensource encoder) What do I need: Open Source Libs for encoding. Tutorials and blog articles on ...

Is it possible to use CSS to update parts of an HTML page in a way similar to frames?

Is it possible to use CSS to work like frames? What I mean is, when we use frames (left, right for example), clicking on left will refresh only the right section using the 'target' attribute. Is it possible to create this effect with CSS? Thanks. ...

Replacing frames with code that uses scrollable div; div doesn't maintain position

I've got an ASP page that I've converted from frames to scrollable divs, but when I post back to the page I lose the position in the scrollable div. The users want me to return back to frames if I can't solve the problem with DIVS.Any ideas? I'm using classic asp. ...

How can I parse a URL called between pages in a frameset?

I have a 2-frame HTML page: FrameA contains a list of links to various pages, or anchors within pages FrameB displays the individual pages. Some of the pages contain slideDown sections, with trigger text - i.e. clicking this text shows/hides the slideDown section below it. The parent element of the trigger element also contains an ...

How do i get a webpage to open up in a frame?

How do i get a webpage to open up in a frame? (i'm using netbeans and java) e.g in a html page you can use <FRAME src="http://www.google.com"&gt; and it will display google in the frame. i don't want it to open a browser, just to open up within the form. thanks ...

paasing values between wx.frame wxpython

I have one frame where one TextCtrl and a button. I would like to enter a value in that TextCTrl and to be displayed in another frame TextCTrl and use that value for computation in that new frame as well. Any idea would be appreciated. ...

Transparent frameset in iframe ie white background

I'm trying to nest a frameset in an iframe and I can't get the background of the frameset to show as transparent in IE. Firefox displays correctly. Here's the iframe: <iframe src="frameset.html" name="myframe" width="500" height="500" frameborder="0" allowtransparency="true"></iframe> And this is Frameset.html: <!DOCTYPE html PUBLIC...

Extract individual images (QImage) from a video stream in Qt

I have successfully written a Qt program to play a video from a RTP stream (or other sources). I am using the Phonon classes MediaObject and VideoWidget. My question is: how can I gain access to the individual frames? I wanted to do motion detection by differencing successive frames. Many thanks for your advice. wpoet. ...

How to get firefox to remember URLs visited in a frame across browser restarts?

Hi, I've written a greasemonkey script that modifies craigslist search results to appear in two frames, a frame on the left with the results listed and a frame on the right to display each posting if clicked on from the left frame (I modify the URL of each result to say target="rightframe"). The problem I have is that the 'visited' stat...

Bookmarklets that work with Frames?

Over the next year, I'll be hacking on an off-the-shelf web app from a Major Software Vendor. While we will have access to large portions of the code base, I'll be working blind on some of the web forms. Of course, Major Software Vendor only supports IE 6 & 7. It would be really nice to use some of the bookmarklets I use in more "modern"...

Populate a user control from a containing frame

I have a troubling task. I have a page contained within an outer frame, on the outer frame is a user control which i need to populate with some data from within the containing page. The problem is the outer frame is rendered before i can get hold of the required data. How can i accomplish this? ...

Sending frames in java

Can I send raw frames (low-level internet packets) in java ? ...

WPF - print the contents of a frame

I have a WPF window that contains a frame that displays varions WPF pages. Is it possible to print the contents of that frame? If so, what are the objects I should be looking at? ...

WPF - pagination when printing a visual

I have a WPF window with a frame. I have some code to print out the content of the frame using the printdialog and printvisual. But this will only print what appears on the screen even though the frame scrolls and other parts are available. Is there a way to add pagination and make sure that the entire content of my frame will print. ...

How can I get the frame source with Perl's WWW::Mechanize?

Using WWW::Mechanize::Firefox, I can get the source of the page I visited. However, if the page contains a frame, I get the frame tag and not the actual source of the page that is loaded. Mechanize::Frames seems to be what I am looking for. Is there a way to use them together? ...

Javascript to set focus in a framed page

Hi, I have a page with frame in it, the left side being a jsf form and right side is an applet. The actions on the jsf form on the left cause the applet to refresh from time to time (e.g on a button press on form). The problem is that since the jsf page renders before the applet finishes it's refresh, the applet steals the focus from t...

Navigation xBap problem with frames

Hi all I have a problem in navigation in xBap I created two pages (Page1 and Page2) Page1 have one button for navigation to Page 2 <Button Height="23" Width="76" Name="button1" Click="button1_Click">Page2</Button> private void button1_Click(object sender, RoutedEventArgs e) { NavigationService n = NavigationService.GetNav...

Can't appendChild to a node created from another frame

I have a page with an iframe and would like to extract a DOM node from the child frame and put it on the parent page. This works in Firefox (3.5), but not in Internet Explorer (7). I've broken down the code to the simplest I can. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict...