Tagged Questions
The frame tag has no wiki summary.
16
votes
1answer
451 views
Saving JPEG file coming from Network Camera RTP Stream
I had a RTP Stream socket, receiving a JPEG Stream, from a samsung network camera.
I dont know much about how JPEG format works, but i do know that this incoming JFIF or JPEG stream is giving me the ...
14
votes
4answers
2k views
I know I can't say myView.frame.origin.x = val - But why?
I know that I can't use that
myView.frame.origin.x = 25.0;
that I have to use instead
CGRect myFrame = myView.frame;
myFrame.origin.x = 25.0;
myView.frame = myFrame;
And I'm doing it all the ...
10
votes
1answer
318 views
When using two frames in emacs, how do I prevent the compilation buffer from showing up in both?
I work with two monitors, and often use emacs with two frames open; one for each monitor. each frame is split into two side-by-side windows, like so:
a | b <-- frame 1 in monitor 1
-------
c | ...
10
votes
2answers
7k views
“Incorrect” frame / window size after re-orientation in iPhone or iPad
In my iPhone OS application I want (need) to watch for chances in the device orientation in order to rearrange certain portions of the screen. The approach I used was to use GRect frame = [UIScreen ...
9
votes
2answers
163 views
How are environments, (en)closures, and frames related?
I want to better understand how environments, closures, and frames are related. I understand function closures contain an environment, environments contain a frame and an enclosure, and frames ...
9
votes
3answers
1k views
How to prevent my site page to be loaded via 3rd party site frame of iFrame
How can I find out that my page is embedded as a frame to other site during page loading? I guess referrer request header can't help me here? Thanks.
7
votes
3answers
867 views
how to close a java frame with threads
I have a java frame that I want to close it automatically after 3 or 4 seconds. I found out I must used threads. but I dont know how exactly to do it, this a dumy part of my code :
package intro;
...
6
votes
4answers
827 views
Java Swing set “actual” Frame size (inside)
I have a JFrame which contains just one JPanel.
I have tried setting the Panel's size and packing the frame, but that has no effect.
If I set the JFrame's size, it will change the size so it includes ...
6
votes
2answers
4k views
How do you do transition effects using the Frame control in WPF?
I thought this would be easy but I guess not.
I have 2 pages that load in my frame control. I want to be able to either have
a nice slide effect from one page to the next or just a simple fade-In ...
5
votes
1answer
157 views
Delphi: problems with GDI+ & gradient frame/rectangle
Delphi XE2. There is a form & a frame.
The form and the frame are doublebuffered. GlassFrame is enabled.
I paint frame's background and try to draw a right aligned rectangle but have bugs. ...
5
votes
1answer
1k views
What is the maximum iframe width of a facebook page? (July 2011)
What is the maximum iframe width of a facebook page?
5
votes
2answers
361 views
AWT custom rendering - capture smooth resizes and eliminate resize flicker
I've been looking at this for several months and so far this is the best I have come up with.
The structure (render outside of EDT) is not up for debate, as our application operates this way and will ...
5
votes
2answers
99 views
I can't believe I'm working with frames (facebook)
I haven't dealt with this since the mid 90's.
<a href="http://www.google.com" class="learnmorebutton">learn more</a>
When I click a link to say http://www.google.com, facebook ...
5
votes
0answers
153 views
Is this stack frame I produced right?
For a question paper i'm doing I got a question on stack frames:
Consider the following function in Nada (a made up language), the language used in the lectures:
function f(x,y)
begin
var z
z := y - ...
5
votes
1answer
679 views
Processing Android camera frames in real time
I'm trying to create an Android application that will process camera frames in real time. To start off with, I just want to display a grayscale version of what the camera sees. I've managed to extract ...
5
votes
6answers
211 views
Regarding stack reuse of a function calling itself?
if a function calls itself while defining variables at the same time
would it result in stack overflow? Is there any option in gcc to reuse the same stack.
void funcnew(void)
{
int a=10;
int ...
5
votes
1answer
1k views
How to get UIView frame position after transform?
I want to get the current position of a UIView after a transform rotate has been applied to it. How can i do that ?
In the UIView doc i found this about the transform property :
"If this property ...
5
votes
1answer
5k views
How do you set a Tkinter frame size?
This is the code that's giving me trouble.
f = Frame(root, width=1000, bg="blue")
f.pack(fill=X, expand=True)
l = Label(f, text="hi", width=10, bg="red", fg="white")
l.pack()
If I comment out the ...
5
votes
4answers
874 views
Possible to prevent our website from running inside another domain's frameset or IFrame?
We've been having an problem recently where other sites are running our e-commerce site inside a frameset where our site (with the offenders affiliate id tacked on) is the only content in a single ...
4
votes
2answers
204 views
How to create a flexible frame for photo in iPhone?
I try to create a flexible frame for in my iPhone app with some small pictures. CustomView inherit UIView and override it's setFrame: method. In setFrame:, I try to call [self setNeedsDisplay]; Every ...
4
votes
1answer
369 views
SetFrame works on iPhone, but not on iPad. Auto resize mask to blame?
I'm trying to resize a UITextView when the keyboard shows. On iPhone it works beautifully. When the the system dispatches a keyboard notification, the text view resizes. When it's done editing, I ...
4
votes
1answer
71 views
Java Socket prevents panel?
I am trying to create a panel while I have already connected to a server with socket, but in java it shows frame but not inside of frame. Panel is only shown after socket closed, but I need it while ...
4
votes
4answers
267 views
Fullscreen Swing frames not focusing correctly in Linux (Windows is fine)
I've got an application which spawns several fullscreen-no-decoration frames (basically controlling all screen space). My problem, is some buttons on certain frames are designed to "switch screens", ...
4
votes
1answer
194 views
Mangled View Frame with Split View Controller
In my application which features a split view controller I have a loading view. My Root View Controller is a subclass of UITableViewController; while loading data I save self.view and transition it ...
4
votes
2answers
124 views
Resizable frame emulation
I understand that <frameset> and <frame> tag are becoming depreciated. Is there a way to emulate resizable frames? What I want is a narrow separator separating the area either horizontally ...
4
votes
2answers
2k views
How to access frame (not iframe) contents from jQuery
I have 2 frames in one page like this (home.html)
<frameset rows="50%, 50%">
<frame id="treeContent" src="treeContent.html" />
<frame id="treeStatus" ...
4
votes
1answer
1k views
WPF frame source questions
I've created a WPF application with a frame inside. I can attach some other pages to this frame like
frame1.Source = new Uri("Page1.xaml", UriKind.RelativeOrAbsolute);
The question is after loading ...
4
votes
4answers
2k views
How to set the activity indicator in the navigation bar?
I am new to iphone development.I want to set an activity indicator in the navigation bar.I see my activity indicator below the navigation bar.My code is here
-(IBAction) gomethod : (id) sender
{
...
4
votes
2answers
813 views
java - get mouse events outside of a component
i'm having the same issue as the person here, in that i need to track a frame location while it is being dragged on OS X. The question had not been resolved there, so:
how do i tell a frame that a ...
4
votes
5answers
1k views
Why should I not use HTML frames?
I haven't used frames since 1998. They seem like a bad idea and in all my development I've never had a situation where frames were the right solution, or even a decent solution.
However, I'm now ...
4
votes
5answers
1k views
Python database application frame work and tools
I have been building business database applications such as finance, inventory and other business requirement applications. I am planning to shift to Python. What would be the tools to start with ...
3
votes
1answer
48 views
frame by frame video library
I am writing an Android application in which I'll have to create a video frame by frame using pictures from the phone. Looking around for some time, I haven't come across any suitable library for what ...
3
votes
1answer
114 views
Saving first and last frame of a video as an image on Android
I want to save the first and last frame of a video as an images.
Is there any way to do this?
3
votes
2answers
49 views
jQuery: Finding an element, regardless of frame
Our dev and corporate sites have a slightly different frame hierarchy.
Very occasionally I need to reference an element in a different frame.
Unfortunately, I don't know where that frame will be in ...
3
votes
2answers
153 views
Figuring out initWithFrame:self.view.frame 20 pixel (status bar) issue once and for all
I have a simple UINavigationController. In the init method I am creating and adding a UITableView as a subview.
- (id)init {
self = [super init];
if (self) {
NSLog(@"%@", ...
3
votes
1answer
342 views
Is there a client-side way to detect X-Frame-Options?
Is there any good way to detect when a page isn't going to display in a frame because of the X-Frame-Options header? I know I can request the page serverside and look for the header, but I was ...
3
votes
3answers
56 views
How do I convert the .place() method in python to java?
I am trying to convert my Python Code to Java. I need a GUI that is similar to python where I can use widgetname.place(x,y) to place objects anywhere I want in the window. I want to be able to specify ...
3
votes
2answers
107 views
Python, how i can get gif frames
I am looking some kind method to get gif frames number. i am looking on google, stackoverflow and any outher sites and i find only rubbish!! Someone know how to do it? i need only simple number of gif ...
3
votes
2answers
98 views
How to do not repaint JFrame? Just paint
I need help with simple program. I would like, when I click program marks it. I would like to see my moves did in past. Like pencil in paint.
class Test.java
import java.awt.*;
import ...
3
votes
1answer
96 views
How to get maximum frame size of each function compiled by gcc?
Is it possible to get maximum frame size of each function compiled by GCC?
I have a bunch of C and C++ source files in my project and I want to have a statistics of stack usage of each function, ...
3
votes
1answer
74 views
how to call compoment from another frame
hi i have two frames created in the same way:
public class DateFilter extends JFrame {
private final JDateChooser dateChooser = new JDateChooser();
private final JDateChooser dateChooser_1 = new ...
3
votes
1answer
63 views
Book suggestions for Low-level ethernet/networking (e.g. MII)
I had a colleague who is using Xilinx's LocalLink TEMAC (read:http://www.xilinx.com/support/documentation/ip_documentation/xps_ll_temac.pdf)
While I find the DS interesting, I would like to learn ...
3
votes
1answer
47 views
The implementation of the game on Iphone [closed]
I will implement a game in which the ball must move across the screen, and its board should reflect that.
Example: http://itunes.apple.com/us/app/blocksclassic/id286136632?mt=8
Only in my case the ...
3
votes
1answer
418 views
UIWebView and Animation
I am wondering if there was a way to animate the size and position of a UIWebView.
If I do sth like this:
[UIView animateWithDuration:1.0 animations:^{
self.frame = CGRectMake(20.0, 20.0, 80.0, ...
3
votes
1answer
600 views
Google Chrome Frame doesn't work
Hey there.
I have to use the Google Chrome Frame to support certain HTML5-features such as the Canvas for Internet Explorer 8.
I've implemented the code, but it doesn't seem to work at all.
The part ...
3
votes
1answer
470 views
Weird behavior of UIView frame after rotation in iPhone
Create a square UIView object testView_, and add this at viewDidLoad:
- (void)viewDidLoad {
[super viewDidLoad];
CGRect initialRect = testView_.frame;
NSLog(@"before rotation: w %f h %f x %f y %f", ...
3
votes
1answer
192 views
How to get Kerberos TGS and use it in a GUI application in JAVA?
i'm trying to make an application with the Keberos protocol and the GSS-API in Java, and i've already made the authentication and the context establishement before calling the doAsPrivileged method.
...
3
votes
2answers
70 views
What is the best way to empty the content on an IFrame
I am wondering what would be the best way to empty the content of an IFrame. The iframe contains an HTML document that comes from another domain. The HTML document may contain videos with voice. At ...
3
votes
1answer
239 views
Animate embedded UIWebView frame property
after a long search with no results,
maybe someone knows an answer to the following problem:
I have a UIView which contains a UIWebView as a subview. The UIView is just a wrapper, so that I can place ...
3
votes
3answers
366 views
Performance Issue With HTTPWebRequest on Server 2008 (fine on xp)
I've developed a .net 3.5 application which uses an HTTPWebRequest to fetch data from a vendors web server, this then returns an XML document. On my own workstation which is xp (32bit), it works very ...