Render webpage into an image using Adobe Flex
I want to render a webpage into a small thumbnail image in an Adobe Flex application. Does anyone know of a method to do this? ...
I want to render a webpage into a small thumbnail image in an Adobe Flex application. Does anyone know of a method to do this? ...
Hi, I use newest sIFR version. It works on some browsers and does not on other. Flash version doesn't seem to matter, and on one computer it works on IE8 but won't go with FF3. The thing is that if it fails to work it just displays nothing, no regular text/typefaces, just an empty space. The site is http://www.winaisery.pl/ Do you hav...
I've been using Flying Saucer for a while now with awesome results. I can set a document via uri like so ITextRenderer renderer = new ITextRenderer(); renderer.setDocument(xhtmlUri); Which is nice, as it will resolve all relative css resources etc relative to the given URI. However, I'm now generating the xhtml, and want to render it...
Our web analytics package includes detailed information about user's activity within a page, and we show (click/scroll/interaction) visualizations in an overlay atop the web page. Currently this is an IFrame containing a live rendering of the page. Since pages change over time, older data no longer corresponds to the current layout of ...
I can think of a million not-so-automatic ways to render a model in Rails, but I'm wondering if there's some built-in way to do it. I'd like to be able to this <%=@thing -%> obviously with partials you can do it (I mean, calling render :partial), but I'm wondering if there's some standard way to associate views with models. [Thanks i...
We are using SQL Server 2005 and SSRS to produce reports for a .NET2.0 C# web application. When viewing reports in Safari or Chrome we are having issues with: Missing toolbar controls - Export, Resize etc. Font size is very large. Example: When viewing in IE7/8 the font appears to be 12pts. When viewing it in Safari the font is 24pts...
Hi all, I could use some help figuring out what's going on. Check the log output below -- why would rails treat the two renders differently? Why does one succeed, without any related SQL calls and the second fail -- with an SQL access. (It's not an ActiveRecord model, no SQL should be involved in this render.) Background I have a cu...
Why are those lines appearing in my shape? I'm initializing OpenGL like this: glDisable(GL_TEXTURE_2D); glDisable(GL_DEPTH_TEST); glDisable(GL_COLOR_MATERIAL); glEnable(GL_BLEND); glEnable(GL_POLYGON_SMOOTH); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glClearColor(0, 0, 0, 0); And drawing the shape like this: glClear(GL_CO...
For a level generator for a computer game, I need a way to programmatically render a 3D scene. To be more precise, I don't mean 3D-APIs like OpenGL or Direct3D, the scene shouldn't be rendered at runtime of the game, but rather the scene should be rendered off-line for later use. I know of RenderMan, but I'd be interested if there are o...
I have an XYPlot in JFreeChart with multiple XYDatasets. JFreeChart creates a key at the bottom of the plot with an entry for each series by default. I would like to disable the drawing of entries for all of the series in one of my datasets. I do not want to disable the drawing of entries altogether. Is this possible without modifyin...
Hi -- I can't render a view to a string and then redirect, despite this answer from Feb (after version 1.0, I think) that claims it's possible. I thought I was doing something wrong, and then I read this answer from Haack in July that claims it's not possible. If somebody has it working and can help me get it working, that's great (and...
I have a contour plot and I am using the current rendering: set(gcf, 'renderer', 'zbuffer'); but it is giving me this thick red line in the plot and I don't know how to get rid of it. I tried switching to: set(gcf, 'renderer', 'opengl'); but the quality is poor and I really need to have high quality images. Any suggestions? ...
I have a problem with IE7. I have a fixed layout for keeping the header and a sidepanel fixed on a page leaving only the "main content" area switch can happily scroll it's content. This layout works perfectly fine for IE6 and IE8, but sometimes one page may start "hiding" the content that should be showing in the "main content" area....
Hi, I am trying to fix client target in whole site so it would render as ie5 (dhtml etc) I can do it induvidualy on each page with protected override void FrameworkInitialize() { base.FrameworkInitialize(); ClientTarget = "ie5"; } and i have seen http://msdn.microsoft.com/en-us/library/6379d90d%28VS.85%29.aspx <clientTarg...
I have a fairly straight forward screen that contains two modal popups. The first confirms a delete type operation and the other allows you to edit form details. As soon as you open either for the popups they appear like they should but do not go away. At the bottom of the page they are rendered by asp.net with the exact same markup. I...
I'm using the Facebox jQuery plugin from FamSpam to load external page content (from the same server) into a Facebox popup. The content looks great in all browsers except IE 7. It looks like IE 7 is rendering this content the same as it renders other content when in 'Quirks Mode'. The fonts are not solid and sharp, the font that the tex...
I made a class, which has to register to the Event.RENDER event so that it will know when the stage is being rendered. The simplified version of my code looks like this: package { import flash.events.Event; import flash.display.Sprite; public final class Test extends Sprite { public final function Test() { ...
I've got the accordion working fine on pageload, however upon user interaction with some elements on the page, I am using ajax to rebuild the HTML of the accordion. Then, I try to re-initialize the accordion again with $('#accordion').accordion({ active: false, autoHeight: false, clearStyle: true, collapsible: true, heade...
Greetings, I have designed a site that shows nice via FF or Chrome while fails to render with IE. I am looking for some kind of software inorder to find the parts that causes the render issue. Thanks ...
I would like to render two scenes in OpenGL, and then do a visual crossfade from one scene to the second. Can anyone suggest a starting point for learning how to do this? Cheers ...