frames

Getting the height of a frame in javascript

I'm currently working in a system with a bit of a legacy presentation layer -- it uses frames (actual, in a frameset frames). To get some event handling up and running I would like to get events when the frame resizes or at least be able to measure the height of the frame somehow. There seems to be no cross browser way to do this. Has ...

Frameset not showing up in FireFox or IE. Fine in Chrome..??!?

For some reason, this very basic page shows up fine in Chrome, but not FireFox or IE. I've never really needed to use Frames before, but they seem simple enough. Is there a problem with using a single frame within a frameset? I am trying to replace an iFrame with this single frame. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 frameset//...

When should I use HTML frames?

I have heard countless reasons on why not to use HTML frames, from their lack of accessibility, the general lacking in UX, their being completely inefficient/unmaintainable, or them just being outdated. This all brings me to two questions: Does this general consensus of hate apply to iframes as well? In what scenario(s) is it accepta...

IE not recognizing post data using LoadVars from flash inside a frameset

This code is being run from a frameset in IE8. When the new window is opened, the form data is not being recognized. It appears that the http header, "content-type: application/x-www-form-urlencoded", is not being passed into IE and this is causing the post data not to be processed. The data is there, IE is just doing nothing with it. T...

Break only Google image iframes? (but allow other iframes)

Hi! Is there any "frame buster" that breaks Google Image's iframes only? I just want to bust Google Image - but allow for example, Google Translator and others.. Can this be done? I'm sorry about my English. ...

Scrolling a video remotely?

How do I scroll a video hosted on a remote site. I need to write up a program that has the ability to scroll a video and download a particular set of frames. The hosting site will expose the video and my program will connect to the site and consume the video. Any ideas how this could be done? ...

Using an external class with multiple frames on the timeline and multiple stage placed buttons

I have a problem when making flash applications with more than one frame that has symbols placed on it in that I can't declare all of the event listeners for the objects at the same time and I have found that even if I put them all on the first frame, add the event listeners, then click through to the next frame then the buttons won't wo...

How can I write a hook to activate when any emacs frame is raised/focused?

Under Win32, each emacs frame shows up as a different window when Alt-tabbing, which makes sense. However, when I select my main editing window, I'd also like my speedbar frame to auto-raise along with it. Writing a function to raise all frames (or even all currently NOT visible frames) is relatively trivial, but I can't figure out hoo...

Edit item in all frames of a timeline layer in Flash CS5

I'm confused as to how Flash CS5 treats symbol instances across different frames in a given layer; If I add an object to a layer, and then add a keyframe to the existing frame set, are there now two instances of the object, one for each frame? When I change the color of the instance in the first key frame, the second keyframes instance ...

How to make an HTML frame unmovable?

How can I modify this frames so that users can not move those frames? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"&gt; <html> <head> <title></title> </head> <frameset border="1" rows="100, 200" > <frame src="page1.html"> <frameset border="1" cols="20%, 80%" > ...

Parsing html frame

Hi2all, what a good-way for parsing html page, by using QWebKit (lang cpp). I need to view frame, trimmed <div id="chat_wrapper"> *any_html_data* </div>? ...

Intercept Link Clicks from Frame

I have a old fashion page that uses a frameset containing a top frame and bottom frame. The frameset is defined in "index.html" and my code is as follows: <html> <head> <script src="jquery-1.4.2.min.js" type="text/javascript"></script> <script> $(document).ready(function(){ $('#mainFrame').ready(function() { ...

Desktop application - how do I dynamically create and destroy forms.

Hi all, I'm creating a small crypto app for the desktop using java. I'm using JFrames (import javax.swing.JFrame) with Oracle JDeveloper 11g under Linux. I want to have a "welcome" form/frame where users can choose their encryption method, and then on choosing the method, I want to dynamically create the appropriate form for the chose...

flash cs5: when i change frames in a movieclip, event listeners pointed to one object in the previous frame are removed

Hello. I have a movieclip that contains two frames, each frame contains a different set of buttons. it seems that i cannot add the event listeners to buttons that are not in my current viewed frame. so.. problem one: is there a way to add event listeners to all the elements in the movieclip even if the elements are in a different frame...

How to use Delphi Dlls without enabling Build with runtime packages

Recently i started a project with so many forms , frames and extra controls, so my application was swelling up and i am using 3 exes in my projects(all made in Delphi 2009) and these applications are also sharing same frames and forms. so i used dlls to share these forms. but a problem came saying different Tfont error. so i refferd on...

Change name of iframes/frames dynamically

Hi I'm trying to have a website that hosts different applications (also websites) in iframes. Note: only one application is active (displayed) at a time. My problem is that links that rely on targets are loaded in the wrong iframe (the first that is found). To avoid problem with links that rely on a specific target, the script changes ...

Frames in erb Rails

Hi, I need the information to create frames in erb rails. I need to display the links in a frames instead of provide as link to new window. Eg. a href="taxas?[gm]=<%= prefer.genus_name %>&[sp]=<%= prefer.sp_epithet%>" target="new">Link /a This should be modified as frame href="taxas?[gm]=<%= prefer.genus_name %>&[sp]=<%= prefer.s...

Javascript: communications between frames

I have two different applications loaded into different frames. I need them to communicate I know that javascript security model does not allow frames loaded from different domains to communicate but since I control both applications maybe there is a way to allow frames loaded from specific another domain to communicate with this frame ...