effects

Java 3D: Where can I insert a "post rendering" FX?

Hi, I extended a Canvas3D and then I override the method "postSwap()", but my odd-even line effect is flickering a lot, what could be another good point for inserting this process? public void postSwap() { Graphics2D g2 = (Graphics2D)this.getGraphics(); Map map = new HashMap(); map.put(RenderingHints.KEY_ANTIALIASING, Render...

Binding effect properties inside effect tags not working?

We're trying to do this: <rollOverEffect> <AnimateProperty property="scaleX" toValue="{originalWidth + scaleFactor}" /> </rollOverEffect> However, it seems as though the effects toValue is always NaN. If I set the value to a constant the effect works. Isn't it possible to use databinding for effects like this? Addendum: Both or...

OpenGL Screen Transitions Effects?

Hello! Anyone familiar with resources or sample source code that demonstrates screen/page transition effects using plain OpenGL? (Preferably C/C++ and not using QT). Thanks. ...

Create tab blinking effect (like IM programs) using wxNotebook

How can I Create Tab blinking effect like IM programs do using wxNotebook? A good example of this is would be any tabbed IM program that blinks to show the user that they received a new IM. ...

how to implement grayscale rendering in OpenGL?

When rendering a scene of textured polygons, I'd like to be able to switch between rendering in the original colors and a "grayscale" mode. I've been trying to achieve this using blending and color matrix operations; none of it worked (with blending I couldn't find a glBlendFunc() that achieved something remotely resembling to what I wan...

Swing: How to read graphic information underneath a component?

Hello! How could I "read" graphic information underneath a component (let's say as BufferedImage)? I want to make that component half-translucent (already done) and apply graphic effects on underlying stuff, such as blur all elements under that component (but not the component itself). My approach is probable wrong: I try to get gra...

How can I apply effects to retrieved elements within an array in jQuery?

I was wondering if it was possible to apply effects to retrieved elements within an array. I know I can output the contents of the array via the: .text() or the .html() functions in jQuery. But I have been trying to fadeIn() the content, and it never works. How can I accomplish this? ...

make html image area ‘coord’ blinking or glow …

i trying to make html image <area coord tag more clear to viewer. any javascript sample to make those coordinate blinking effect or similar as long as it each coord is clear to viewer? p/s: problem with paste < area .that why you didn't see the full of my message.sorry repost ...

jquery buffer/queue for effects? Or to tell if an effect is in process?

Hi there, I have a click event that checks to see if a form is correct i.e. filled out details.. and then i call a function that does this $('#message_text').html(text); $('#message_system').fadeIn("slow"); $('#message_system').animate({ opacity: 1.0 }, 5000) .fadeOut('slow', function() { $(t...

jquery moving from postion X to position Y slowly - animation?

Hi there, i have a simple jquery animtion using fadein and it works but once faded in ... i wish to MOVE using TOP property 30 pixels upwards.. but slowly.. this is what i have so far. $('#Friends').fadeIn("slow"); Any ideas? I have both jquery and jquery UI loaded... ...

Help saving a visual to file with PixelShader effect - WPF.

Hello, I'm trying to save a wpf control to file, but I'm applying a PixelShader effect to it, and when I try to save, the saved image is entirely white, black or red... deppends on the parameters of the effect. I'm using the code here: http://stackoverflow.com/questions/59958/wpf-programmatic-binding-on-a-bitmapeffect how can I proper...

Reordering of item in TileList with dataChangeEffect does not work as expected.

I currently have a TileList with a custom itemRenderer based on a VBox. I have bound the DefaultTileListEffect to the itemChangeEffect property on my TileList. However, I've run into a weird problem when I drag an item to a new location in the TileList. When going through the sequence of events (in this case, FadeOut, Move, FadeIn) th...

air flex windowed application rotation

Hi, We have a air/flex app that we want to add an effect to. Basically we want to rotate the whole window when a particular button is clicked. Similar to say how, the clock widget behaves in mac os dashboard when you click the 'i' button, the whole widget rotates. I'm wondering if this sort of thing is possible in air/flex 3? Thanks ...

Passing $(this) to jQuery fadeOut callback

I know I need to use a callback so that html() doesn't happen until after fadeOut(), but inside the fadeOut() callback I don't have access to $(this) from .hover. I tried passing the selection using var point, but it's not working. if(!$.browser.msie) { points = $("div.point"); } else { points = $("div.flash"); } Problem Area: $(p...

Swing: How to make non-rectangular windows with soft borders?

Hello! How could I make non-rectangular windows with soft borders in Java? Soft borders (also known as soft clipping) are borders without aliasing artifacts. I searched the web a lot and found several posts about translucent and/or non-rectangular windows. The topic "soft border" is confusing. It seems that the information I found dea...

Jquery cycling through multiple images and showing 3 at a time

Hi folks! Can you please point me to a jquery plugin, or a snippet I can use to make this? Here's the question: Say I have 12 images and I want to show 3 at a time and cycle through the 12 in this fashion: (img1-img2-img3) then (img2-img3-img4) then (img3-img4-img5)... See what I mean? In fact, I want a kind of marquee for images. ...

jQuery's slideToggle does both slideDown and slideUp in IE8 simultaneously

I've uploaded my problem here : http://gotchance.com/k2/ Try clicking on the "Login" link. It works fine in FF and Safari. However in IE8, the form slides down and then slides up again automatically. For testing purpose, i added 4 more "test" links and found that only the links inside #navigation div cause this problem. Also, if i tog...

WM6 .Net Form Effects C#

Hi All, I would like to know if it's possible to create nice form effects on the compact framework. My plan is that when a user selects an image on the main form this is opened in a new form, this currently works. What I now want to do is make the form that contains the fullsize picture to load off the edge (left or right) of the scre...

[jQuery] Show LIs based on ID in sequence

I'm working on creating a for-loop that calls a javascript effect and applies it to an LI, doing it in sequence. Here's what I've got: $(document).ready(function () { for(i=1;i<=10;i++) { $("li#"+i).show(); } }); However, this doesn't work. I need it to apply the effect to LI#1 then LI#2, LI#3... and so on. What I'm tryi...

How to Customize Animation in Blend?

I'm developing a small application using Blend, basically what I have in my application are two list views, lets call them List View A and List View B. List View A represent the files in my computer that I want to sent to the server and List View B represent the files that are in the server. What I want to do is to create a transition ...