Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
8answers
3k views

CSS box shadow on container div causes scrollbars

I have a website with the following setup: <div id="container"> <div id="header"></div> <div id="content"></div> <div id="clearfooter"></div> ...
5
votes
1answer
339 views

Spritesheet in Silverlight

Does anyone have an example of using a spritesheet in Silverlight? I'd like to clip the image and, when a button is pressed, jump to the next frame. (If the user keeps tapping the button, it'll look ...
5
votes
2answers
2k views

How to use HTML5 <canvas> clip()

I am new to HTML5 <canvas> and was trying to make something, actually draw the PORTAL2 logo :). Till now I have got it so far but as you can see leg is protruding out of the wall, i want to ...
4
votes
1answer
643 views

Canvas 'Clip' reverse action?

Assuming I have: var context = document.getElementById('test').getContext('2d'); // Background context.fillStyle = '#000'; context.fillRect(0,0,300,300); // 'P' context.beginPath(); ...
4
votes
0answers
188 views

amazon mp3 clips widget - how can I find the ASIN codes?

Let's say I have a list of track titles and I want to get an Amazon ASIN code for each. Instead of searching manually, is there some API to use? Couldn't find anything on the Amazon MP3 Clips Widget ...
3
votes
1answer
119 views

Clip.stop() freeze for few seconds

I have a class Sample and Clip inside, written in Java. I'm playing it in loop: public void play() { clip.loop(Clip.LOOP_CONTINUOUSLY); } I have also a stop method: public void stop() { ...
3
votes
1answer
114 views

html canvas: clipping and text

I'm working on a paint app using canvas, and i want to let the user the option to draw only in a selected area. for that I can use the clip() method. but if I want the user to be able to draw inside ...
3
votes
1answer
335 views

How to make clipping geometry scale with the target?

In the following example whenever Grid size is changed, the clipping region size remains as it is expressed in absolute coordinates. <Grid Clip="M10,10 L10,150 L150,150 L150,10 Z"> ...
2
votes
2answers
33 views

clip-path in Raphaël.js

How can I use clip-path with Raphaƫl.js like this example. It seams that Raphael.js has only clip-rect in it.
2
votes
2answers
43 views

How to have multiple css clipped sprites?

I want to have a row of images, which I have assembled into one with pnmcat -lr. I don't want an image map, because the pieces get exchanged for highlighting. I have meaningful images, so I want ...
2
votes
1answer
55 views

Animating clipping area in <canvas> element

I've used stackoverflow.com as a source of inspiration and problem-solving for many months now. I've just never run into a problem without a solution so far, which is the reason why I'd first like to ...
2
votes
0answers
58 views

drawing clipping plane and wireframe simultaneously in android

I am trying to clip a 3D model . It works fine with shaded mode but the application crashes when it is in wireframe mode in some devices only. Is there any issue using glClipPlanef and GL_LINES? I ...
2
votes
1answer
56 views

iPhone How to clip crescent moon pattern

With help from stack overflow i am getting familiar with quartz drawing in iPhone. I want to make code that clips crescent moon pattern, this what i have so far, but its not working quite as i expect: ...
2
votes
3answers
118 views

Component painting outside custom border

In this custom border class, I define a RoundRectangle2D shape. This object is used to paint the border. Unfortunately, since the paint method of a JComponent invokes paintComponent before ...
2
votes
4answers
163 views

Is a multiple clip on a plot possible?

I am editing this to provide a better example of what I need. I will keep the original message at the bottom in case that helps. I have the following data: ...
2
votes
1answer
51 views

Clip an image using several patches in matplotlib

I have a plot in pylab which I want to clip to the borders of a map of the UK. I've also made a series of patches which contain the outlines of each country: one for England, one for Wales etc. ...
2
votes
1answer
81 views

Drawing outside a component's bounds

I'm making a component (extending JComponent) which will have some decoration drawn over the top of it and partly outside its bounds. I would like to know if there's a way of drawing outside the ...
2
votes
1answer
127 views

How to invert clipping geometry in Silverlight/WPF?

The UIElement.Clip property takes a Geometry object and uses it to clip away the outside of the UIElement. I would like to do the geometric inverse and punch a hole into the element instead. Anyone ...
2
votes
1answer
92 views

Second audio clip does not play.

Well, specifically, why this code here doesn't seem to want to play the second audio file: public static void main(String[] args) { //Plays first file for a few seconds playMusic(new ...
2
votes
5answers
184 views

Clip images with HTML and CSS

I want to display images in a 144px x 144px div element. Images are always larger than 144px and so I want to zoom scale them. By that I mean that the smallest side will touch the edge of the div, ...
2
votes
1answer
142 views

Clipping image using Path in Silverlight

How to clip image in Silverlight using custom Path (in code behind, not in XAML). I have puzzle piece like shape written in path and want to use it to clip any image. Currently it works by clipping ...
2
votes
2answers
195 views

Problem with Javas Audio Clips on frequent playback of beep sounds

I want to playback short beep sounds (WAV files) on success and error of a GUI triggered action. I came across javax.sound.sampled.Clip, which seemed to work. Here is the basic code I use: ...
2
votes
3answers
161 views

Java Applet painting clips to [195,200] despite resize

Intention I have a java.applet.Applet subclass MyApplet with a java.awt.Canvas subclass MyCanvas added to it. My code changes the size of MyApplet to new Dimension(600,400) and changes the size of ...
2
votes
2answers
157 views

Pygame: How to draw in non rectangle clipping area

Hi I would like to set in pygame non rectangle clipping area (in this case as character "P"), where it would be strict limited, where to draw another objects. Is there any option? thanks a lot
2
votes
1answer
1k views

Use UIElement as Clip in WPF

Please pardon my ignorance- I'm very new to WPF. I am looking to implement a minor, visual effect in my application that gives the look of "inner" rounded corners. The window in question has a dark ...
2
votes
4answers
2k views

CSS Clip and Absolute Positioning

I'm using clip to create thumbnails for a gallery. Unfortunately, clip can only be used when an element is absolutely positioned. Applied equally to each img, this of course makes them all sit on ...
2
votes
2answers
1k views

Clip a wpf Popup at bounds of a main window

From what I understand, the popup exists within it's own visual tree. However, I've noticed a few properties, Clip and ClipToBounds. What I am wanting to do is Visually clip a popup at the right and ...
2
votes
3answers
618 views

Mixing Sound in Java?

How do I play the same sound more than once at any given time with numerous other sounds going on at the same moment? Right now I've got a "Clip" playing but it won't overlap with itself. ( I hear one ...
1
vote
1answer
39 views

OpenGL- issue with glClipPlanef in android

I am trying to clip a 3D model in 3 planes XY,YZ and ZX. When I use GL11.GL_CLIP_PLANE0 it's working but GL11.GL_CLIP_PLANE1 and GL11.GL_CLIP_PLANE2 are not working. The java code I am using is pasted ...
1
vote
3answers
84 views

Using CSS Clip with percentage

I'm trying to display only the top half of an image and the bottom half of the same image in 2 separate divs. I've tried with the CSS property clip, but it doesn't seem to support % as a unit. Is it ...
1
vote
1answer
164 views

HTML Canvas clip area - Context restore?

Am trying to set a "dirty zone" on my canvas to prevent the repainting of unmoved items (background image, static items, etc.) i.e. only the background painted behind a moving player needs to be ...
1
vote
1answer
73 views

Keeping metadata when using gIntersection from rgeos package in R

I have a set of coordinates as a SpatialPointsDataFrame object in R and I am clipping these points using a polygon to get only those points that are found within this polygon. I am doing this with the ...
1
vote
0answers
221 views

WPF/Silverlight: Clipping to Grid Cell Size & RenderTransform

I've a simple Grid defined this way: <Grid> <Grid.RowDefinitions> <RowDefinition Height="24" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> ...
1
vote
0answers
31 views

Video Contents for Testing [closed]

Is there any repository of free video clips with technical details for testing? E.g. MPEG2 with closed captions, H264 with registered\ unregistered user data, etc. Thanks.
1
vote
1answer
60 views

How to copy arbitrary path from one UIImage to another

I'm new to iPhone graphics and it's a bit daunting. The problem: I have UIImageA, and UIImageB. Both are the same picture, except UIImageB has all the pixels values darkened. I'd like to copy an ...
1
vote
3answers
253 views

How can a Java application play a sound clip?

The following is a link to the most likely explanation I've seen, but I still have questions. How can I play sound in Java? I'll quote the code here: public static synchronized void playSound(final ...
1
vote
1answer
249 views

How to get small images from big Bufferedimage really fast

I had a BufferedImage an image of size (100mb) pixels 6720x9239 and needed many small images with pixels 60x60 firstly i used this code i found on the net BufferedImage bi= ImageIO.read(new ...
1
vote
1answer
132 views

How do I crop the text horizontally?

I need my content in a specific container. If the content increases horizontally, the container should crop, and if the content increases vertically the container should expand. here is my code: ...
1
vote
1answer
306 views

Rounded corners of <img/> element in Opera browser

I have implemented rounded corners for html elements as it is written in this article (final result of that article you can see here). Everything was ok, but! it doesn't work in Opera browser. While ...
1
vote
1answer
3k views

iPhone - Drawing a simple linear gradient inside a rect that is inside a view

I'm reading the documentation about gradients and I'm a little bit lost. I have a view, and inside that view, I just want to draw a simple black to gray linear gradient inside a rect (smaller than the ...
1
vote
1answer
209 views

Java: Quickly fade in and out the gain of a javax.sound.sampled.Clip

I want to smoothly transition between two audio clips that are loaded into an array of javax.sound.sampled.Clips in my Java applet. At the moment I stop one clip and start the next but this produces ...
1
vote
1answer
217 views

Java Sound Clip Looping Frame Position

I have a little problem with a loopting clip: If you have a soundfile e.g. 20000 samples long, the frame position will not reset after looping, so I get values that are "out of bounds" of the original ...
1
vote
2answers
598 views

How to play sounds in Java games?

I'm successfully playing sounds in a Java (1.5) applet game using the following code: // get an available clip to play it Clip clip = null; for (Clip clipTemp : players) { if (!clipTemp.isOpen()) ...
1
vote
1answer
200 views

How to play a sound clip in JNLP?

I have the following line to play a sound clip : Applet.newAudioClip(new URL("file:/C:/Dir_Sound/music.au")).play() it works in standalone app, but in jnlp I got an error message : ...
1
vote
3answers
1k views

How do I clear Cursor.Clip in C# and allow the cursor to move freely again?

I am trying to lock the cursor into the form, this is for a mouse locker application, I am trying to dispose the cursor so it will reset the Cursor.Clip when they unlock it. So far I have: ...
0
votes
0answers
35 views

How to play multiple Clip instances?

I've looked over this reference on Java sound, and made a clip play. URL url = new URL("http://www.chiptape.com/chiptape/sounds/medium/Taito_Carousel.wav"); AudioInputStream ais = ...
0
votes
1answer
56 views

Multiple elements using clip-path in Raphael

All, We have a shape made of paths (lets call this parent), on which a user can drag & drop different objs. We are using clip-path to hide the obj., i.e. if it goes beyond the boundary of the ...
0
votes
1answer
21 views

Cropping instead of clipping

When clipping a WPF element using a RectangleGeometry, part of the original element will never be shown. Can I then crop to this part of the visual, so that the remainder is stretched to fill the ...
0
votes
1answer
51 views

iPhone How to clip circle inside a circle?

I have two circles, one bigger and one smaller. I want to clip smaller circle from bigger one, and then use that new shape (big circle with a hole in it) to apply it to arbitrary image. I have played ...
0
votes
1answer
48 views

Android clip upper part of text in TextView

I need to have two TextViews displaying same number, first of which should display upper half and second lower half in order to animate those parts differently. (See images below, there's an example ...

1 2