Flex :: Underline Line Thickness Always One Pixel?

Jan 17, 2010

Its an mx:Text object. (The Text object is actually being used as a mask so don't know if that's the problem.) If underline is set with the <u> tag in Text.htmlText, or Text.textField.setTextFormat, the underline thickness is always just one pixel which is not acceptable. (There are other problems with <u> so I'm limited to using setTextFormat currently.)

Can the thickness of an underline be set through CSS? (textField.styleSheet, etc.)

I may have another problem as I already use setTextFormat extensively, and the documentation says you can't use textField.setTextFormat if you use textField.setStyleSheet.

I primarily need the underline to simulate correctly the look for an anchor tag.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Using A Slider To Change Line Thickness?

Jan 16, 2010

trying to make a slider that changes the line thickness in a drawing app that I would to share with my students. When moved from left to right a circle changes scale. This circle would act as a visual reference on the stage telling the viewer that the line thickness is changing. Right now I just want to figure out how to connect the slider so that the circle changes dynamically. Once I get that I feel I can figure out how to connect it to lineStyle(). The current code I am attaching has the circle change size at onle two points-the far left and far right. I keep trying to write something that uses mouseX properties but so far nothing is working.

View 5 Replies

ActionScript 2.0 :: Editing Line Thickness Inside A Movieclip?

Oct 28, 2009

(Im using CS4 and actionscript 2)

I have some movieclips with a graph (not generated, manually drawn). I want to change the thickness of the line inside the movie clip. How do I do that?

When I move the mouse over the line the graph must highligt (become thicker). I can do this with the line as a button, mouse-over graphics. But I also need to highligt the graph when the mouse is over some text (to link the graph with the text). If I have 2 - or several - buttons can I have them all show the mouse-over image at the same time, if the mouse is over just one of them?

Another ideer: I have made an actionscript the fades (using alpha 0 and 100) for 2 similar movieclips each with different thickness positioned over each other. But the initial value for both lines is a problem, only the thin line must be shown, the thick line must be alpha=0. If I set it at the start of the actionscript then it resets every time the flash starts over. Is there some way to set the inital value (alpha=0) just once? When the flash playes first time?

View 1 Replies

ActionScript 3.0 :: Increasing Line Thickness Reduces Size Of Box

Sep 24, 2009

I made a small box that is filled with navy blue and has a red line around it, but when I increase the thickness to say 50, it reduces the size of my navy blue box.

PHP Code:
public class Box extends MovieClip {
public var color:uint = 0x000099; // class property of navy blue
public function Box() :void {
initialize();
construct();
this.graphics.lineStyle(50, 0xFF0000);
this.graphics.beginFill(color);
this.graphics.drawRect(0, 0, 100, 100);
this.graphics.endFill();
}

View 2 Replies

ActionScript 3.0 :: Control Line Thickness Via Mouse Speed

Feb 28, 2011

how can i control my line thickness with the speed of the cursor?Right now ive got this code, but how can i convert (speed) into something that can be translated into thickness?

ActionScript Code:
var prevPt:Point=new Point(mouseX,mouseY);
addEventListener(Event.ENTER_FRAME,mouseSpeed);
function mouseSpeed(e:Event){

[code]....

View 7 Replies

ActionScript 2.0 :: Paint Program - How To Change Thickness Of Line

May 23, 2005

Right now I create a paint program, which will consist of _xmouse, _ymouse, different colors to draw lines, different sizes. But I have a problem:
_root.line.lineStyle(size,0x00ff99,100);
The size is the thickness of the pen. But it don't seems to work inside of that script.

View 8 Replies

ActionScript 2.0 :: Changing The Thickness Of The Line Being Drawn At Runtime?

Apr 17, 2007

I am working on a interactivity wherien i draw lines using a pen/pencil just as in MsPaint application in Microsoft. Ia m done with the pencil/ pen tool and its working fine but I basically want to change the thickness of the line at runtime by using a slider functionality.

Code:

drawing_mc.lineStyle(1, 0x99CC00, 100);

View 1 Replies

Professional :: Deco Tool - Line Looses Thickness Along Rotation

Feb 10, 2010

When using a simple line shape graphic (that was created in Flash) to supply Deco Tool > Symmetry Brush > Rotate Around, the line looses it's thickness along the rotation. See attached image. I'm following chapter 2 in Flash CS4 Classroom In A Book, and the visuals from the book do not match what is happening on my computer.

View 1 Replies

IDE :: Make Flash Not Bother The Line Thickness When Changing Scale Or Some Sort Of Alternative?

Apr 11, 2012

I'm having an issue when it comes to line thickness on movie clips, when a movieclip is flipped the line thickness vanishes due to Flash thinking I'm squishing the MovieClip. Is there any way I can make Flash not bother the line thickness when changing scale or some sort of alternative? Or is my only choice to kill line thickness altogether.

View 1 Replies

Flex :: Comparing Bitmap Data In AS3 Pixel For Pixel

Mar 30, 2010

I am looking for a fairly simple image comparison method in AS3. I have taken an image from a web cam (with no subject) passed it in to bitmap data, then a second image is taken (this time with a subject) to compare this data, from these two images I would like to create a mask from the pixels that match on both bitmaps. I have been scratching my head for a while, and I am not really making any progress. Could any one point me in the right direction for pixel comparison method, something like getPixel32()

View 2 Replies

Flash :: Get Perfect Pixel Line Rendering In As3

Jan 7, 2010

I'm making an arcade game in as3 and I want to draw pixely(unsmoothed by flash) lines. I'm drawing the pixels 'by hand'(not with flash's lineTo or anything) onto a bitmapdata object. The lines don't appear quite right though, when zoomed out the line is rendered 2 pixels thick at some parts. However by zooming it its apparent that the algorithm is fine and its not doubling the pixels. Changing the quality doesn't seem to change anything.

[Code]...

View 2 Replies

Css :: Underline Flex Mx:Text On Mouseover Using External CSS

Aug 29, 2011

I have some text in a Flex 3 application defined as follows

<mx:Text id="textbutton"
text="Link Text"
click="doSomething()"

[Code]....

It does not seem to work however as the text does not underline when I mouse over it.

Is there a way to do this purely through CSS or do I need to programmatically capture the mouse events and set the styles accordingly (seems like overkill)?

View 1 Replies

Flex :: Underline Style For Text/labels?

Feb 3, 2012

I use the setStyle("textDecoration", "underline"); for showing an underline on text hover. This works fine but the underline is touching the text itself. Is it possible to put some spacing between text and the underline?

Update: 02/072012 I'm using Flex SDK 3.5 so I cant use the spark solution for now. Im using Label component and setting the textfield's style.

View 1 Replies

ActionScript 2.0 :: Movie Start With A Line Which Is 1 Pixel Long - Increase It To 500 Pixels In 36 Frames?

Oct 20, 2002

I want my movie to start out with a line which is 1 pixel long. Then I want to increase it to 500 pixels in 36 frames. I can do this without actionscript by just going down 36 frames and increasing the line then creating a motion tween, but I would like to see this done in actionscript

View 5 Replies

Flex :: Underline Cont - Draw Lines Or Shapes Or Whatever Directly Onto An Mx

Jan 18, 2010

Basically I discovered its no problem at all to draw lines or shapes or whatever directly onto an mx:Text object using its graphics property (Text.graphics.lineTo, etc.). If just displaying that text, then any such drawn lines are displayed as well. However, if that Text object is used as a mask, then any drawn lines on that text object are merely ignored when the mask is rendered. And its hard for me to see the reason behind this, if anyone else is able to. I mean you're designating the Text object itself as the mask. It seems like any visual change to that text object should be part of the mask.

View 1 Replies

ActionScript 3.0 :: Get Pixel-by-pixel Bitmap Data?

Nov 23, 2009

I have a 100x100px image. I want to get 1 pixel vertical line from x- 1 to 100. How can I do that?

View 7 Replies

Regex :: Replace Contiguous Line Feeds Or New Line Characters With A Single Newline In Flex

Dec 26, 2011

I need to replace multiple contiguous new line/line feed characters in flex with a single new line character.

Example:

The string

"My name is blah blah

My name is blah
"

Should be converted to

"My name is blah blah
My name is blah
"

Hope the example makes it easier to understand.

I am using a component to render it.

I guess using regex would be the easiest way to do this, but still it would be great if people can point me out to references/examples to get this done with ease.

I am using flex 4.5.

View 2 Replies

Flex :: Reading Large CSV File Line By Line?

Oct 8, 2010

I need to read a large CSV file (8-15 MB) and generate a LineChart in Flex AIR. Since Chart need data in structurd format like XML. When I read CSV and convert it to XML object 8 MB file size become 24 MB XML object and not able to graph.

Best solution is to read Line by line and read only part of data. How can I acheive this in Flex AIR ? Is it possible to read line by line in Flex.

Otherwise what are the best ways to draw a graph in FLEX using large data.

View 2 Replies

Flex :: Create An Image From Array Of Pixel Colors?

Apr 15, 2010

I have a Width and Height parametr. I have been given an array of colors in such format: [r, g, b, a, r, g, b, a, r, g, b, a... etc] Data can be acsessed by something like this

for(var y = 0; y < height; y++)
{
for(var x = 0; x < width; x++)
{

[Code].....

I want to paint that data on some sprite. How to do such thing?

BTW: I use Flash Builder for mxml+actionscript coding. So if it is easy for you you can give example using MXML (not todraw on some sprite but on some MXML component).

View 1 Replies

Flex - Find The Color Of A Pixel At A Point Within A VGroup?

Jul 29, 2011

I'm having trouble with this code

var imageMap:ImageSnapshot= ImageSnapshot.captureImage(object);
var pixelValue:uint = imageMap.bitmapData.getPixel(x, y);

View 1 Replies

Flash :: Fonts For Different Types Of Thickness?

Apr 21, 2011

This css can set style for all normal Arial, but I have Arial bold in project, how can I apply bold font for them?

@font-face {
src:url("fonts/ARIAL.TTF");
fontFamily: Arial;

[code].....

View 2 Replies

ActionScript 3 :: Pixel Bender Chroma Keying Code For Flex 3

Mar 27, 2010

Where I can find a good chroma keying pixel bender code example. Or How to write such a code in pixel bender. Or a create pixel bender tutorial to create a chroma keying filter. How to get it in flex 3.

View 2 Replies

Flex :: Get Actual Text Width In Pixel Of Spark TextInput?

Dec 21, 2010

As textWidth property is no more accessible in spark textinput how we can get that property ?

View 1 Replies

ActionScript 3.0 :: Graphics.lineStyle() And Stroke Thickness?

Feb 3, 2009

Is there a way to draw a line with graphics.lineTo() that is thinner than 1point? According to the documentation the thinnest lineStyle possible should be 0 but I cannot see any difference between a 0 stroke and a 1 stroke?

View 4 Replies

Actionscript :: Flash LineStyle Rounds Thickness?

Feb 24, 2010

The sprite which contains all element in my game world uses the real-world meter as distance unit, it doesn't know what pixels are. I then apply a scale to this sprite to make it appear correct on screen. Currently I use 1 meter = 100 pixels, so scale = 100.

If I try to draw a line inside this sprite it appears lineStyle(thinkness) rounds the thickness parameter. If I specify 0.5 (50 cm) it always gets drawn with 1 pixel (1 cm). If I specify 0.6, the line becomes 100 pixels, or 1 meter, thick. So basically I can only draw lines of 1, 100, 200 etc pixels thinkness.

Anything I can do about this? Otherwise I'll have to use a smaller unit like millimeters for my world.

View 1 Replies

Add Underline When Mouse Over Text

Feb 25, 2010

i am working on flash menu. in this menu i make a 4 tabs.. in each tabs i have 2 text.. in this text i have to give a link on google.com. and i also have to add a underline when my mouse over the text.

View 1 Replies

Flex :: Stretch Out The Movie Clip After Applying Some Pixel Bender Filter?

Nov 12, 2009

How to stretch out the movie clip to twice its width and height after applying some Pixel Bender filter? I have some object with video on it (for ex 512 by 512) I apply a Pixel Bender Filter on it. Now I want to stretch the result (for ex to 1024 by 1024). How to stretch it?So my point is 1) Render the result of effect2) Stretch out the result

View 2 Replies

Flex :: Why Pixel Bender Filter Behaves Differently In Toolkit Than In Air Application

Dec 8, 2011

I've tried this simpler filter with same Air code as below:

<languageVersion : 1.0;>
kernel NewFilter
< namespace : "Your Namespace";
vendor : "Your Vendor";

[code]....

Changing HUE_MAX slider in app (binded to MAX_RANGE parameter of filter), it doesn't filter out HUE values smoothly, but instead thresholds at HUE_MAX=59.9, where at lower values looks like no filter is applyed, and at HUE_MAX=299.9 where between 60 and 299.9 looks like this: [URL]

View 3 Replies

Professional :: Changing The Thickness, Style And Colour For Each Of The Tools ?

Mar 14, 2012

Whenever i try to draw anthing (oval, box, pencil, brush) it just comes out as a thin green line. Ive tried the obvious by changing the thickness, style and colour for each of the tools but nothing seems to work.

View 3 Replies

Actionscript 3 :: Graphics - LineStyle Thickness To Fill A Circle?

May 19, 2010

i'm trying to build a circle using lines. each line starts in the centre of the circle and is as long as the circle's radius. using a loop along with sine and cosign waves, i can build the circle using the sine and cosign to mark the coordinates of the lineTo parameter.

my problem is with the line thickness parameter of lineStyle. i would like the ends of the lines to match up perfectly, no matter how big the circumference of the circle, but i can't figure out a proper method for the line thickness.

//this is what makes sense to me, but it still creates some gaps
lineThickness = 1 + (((nRadius * 2) * Math.PI) - 360) / 359;
for(var i:int = 0; i < 360; i++)

[code]....

to make the ends of the lines meet up at the circles circumference, without any gaps, i need to widen the lines to fill in the space that's remaining. what makes sense to me, but doesn't work, is to subtract the 360 from the circumference, then divide that number by the amount of empty slots between the lines (which is 359) and adding that number the the thickness of 1.

what's concerning me is that the lineStyle thickness parameter is a Number, but seems to take only values between 0 and 255, so i'm not sure if a floating point number like 1.354 is a valid thickness.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved