IDE :: Make Text To Appear On The Screen?
Apr 2, 2009i would like to know how to make text to appear on the screen as if im writing it...with my mouse or hand or whatevs?
View 2 Repliesi would like to know how to make text to appear on the screen as if im writing it...with my mouse or hand or whatevs?
View 2 RepliesI have a map of the US and each state has a rollover that changes the color of the state...what i am trying to figure out is how to click on the state and have text appear to the side of the US map and have that text stay up until the user clicks on another state.
View 16 RepliesI am trying to make scrolling text appear on a few screens, so that when I click on a button to go to the next frame the characters of a sentence will appear one after another as if someone is talking. This works a few times however when I go back to the first frame the following error occurs and the text no longer appears??
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at rollingtext_fla::MainTimeline/runthree()
at Function/[URL]::apply()
at SetIntervalTimer/onTimer()
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()
This is my code basically the same for each new frame
stop()var talkinterval=setInterval(runone,60)var i:Number;
i=0 function runone() { var text:String = "Restrictive signs come in red and blue circles."; text1.appendText(text.charAt(i)); i++; };
b_next.addEventListener(MouseEvent.CLICK, nexts)function nexts(e:MouseEvent){ clearInterval(talkinterval) gotoAndStop("h")
}
When you drag the screen in any direction the background scales and rezises.But How do I make the text stay center and a certain size so that it wont scale to fit the screen and will stay a certain size
View 1 RepliesI want to make text slide accross the screen when my page loads up. Is there an onload function so that when my page loads up it will play the animation?
View 1 RepliesIf the counter reaches 350 and I move my mouse down now it hops on over to 250. I just want it to start counting down. I.e. 349, 348, 347 and so on. What do I need to change?
//Function
function countUp(e:TimerEvent):void{
if (mouseY < 180)
{
[code]...
EDIT: What do I need to write in AS3 to make a dynamic text field increase in increments of 1 if the user hovers at the upper half of the screen, and decrease in increments of 1 if the user hovers at the lower half of the screen?Purpose, it isn't a game.
What I have right now isn't actually doing any of those things, I've just been mucking about trying to get all the masks working and they finally are.
I've included the code to offer as much information as possible about my specific project. There is also a few more lines that changes the colour of the dial when the user rolls over the specific coloured bars. I can post that as well if it helps.
To clarify the scene, the arrow part of the dial tracks the user's mouse. Always pointing towards it. The bars, when rolled over changes the colour of said dial. The "73M" is static, as well is "POINTS" but the 380 value is dynamic. It is that string I need to affect.
If anything is unclear please feel free to ask, I've been at this all night so there is a chance I'm so into it that I can't see straight.
[code]
How can I make a action script controlled print screen that will save a part of a screen And can I filter a color out of it (so that only that one color will NOT be visible on the saved img) with AS
View 3 RepliesHow do i make site resize to a persons screen so that it fills their screen.
View 2 RepliesI want to make a box come from off screen then bounce back and forth and then come settled down in the middle of the screen. It can be random bouning intervels or a set amount.
View 6 RepliesI've been trying to attempt to make it so a .flv video will fit to the entire screen of the browser window. ( I already have my .swf file fit to re-size to any browser on any computer. I just can't figure out how to make the video as well) And obviously an external video so the flash file wont take forever to load.The point is this is to be able to have the Video be the background. So I may put content (Links, information or whatever else) on top of the video.
View 2 RepliesMy question is what needs to be done in order to make a .swf file go into full screen without falling to a black screen when a movie is played? I have tried coding it, however I come up with the following error.
[Code]....
What should I do to fix this? This is not going to be an HTML file, however, so the initial thought of changing the publish settings does not seem to work this time.
Hi, I have got a game, have a set resolution of 1024x768. May i know how can i make my game display as full screen?
View 2 RepliesMaking an Flex App. Just wondering if anyone has created something that fits automatically to the users' screen size and how I go about doing this? One of the principle things is that I need an background image, which is obviously going to have to scale / resize to match the users screen.
View 1 RepliesI have a problem regarding text appearence on screen. I have few TFL dynamic text fields in CS5.5 that update each time according to users choises (a dictionary, in hebrew if it matters). As a text field I can't break lines or organize the text in paragraphs or any other way, the corrent situation is a text block that is not pleasent to read, it's need to be organized (it's for children so it has to be as clear as possible).
[Code]....
I am using a main .SWF that contains the actions for buttons. Each button opens another .SWF file like so:
Code:
on (release) {
_root.contents.loadMovie("frontpage.swf");
}
My problem is I want to make the .SWF files I load INSIDE my main .SWF fit the screen. The main .SWF with the buttons is already fitted to the screen with HTML:
[Code]...
I have a flash movie that I have published as a .swf file. I want the swf movie to open full screen on the user's computer.
View 1 RepliesI'm making an interactive video and the title screen isn't working. Instead of waiting to start until the play button is hit the video just plays the 1 frame screen and startsThis is what I have:
play_btn.addEventListener(MouseEvent.CLICK, clickPlay);
function clickPlay(event:MouseEvent):void
{
[code].....
I'm making a game like Super Smash Bros., and so far it's pretty good. However, I came across one problem: I can't get the camera to move. Basically, I somehow want the camera to always show 100% of everything on the screen. If a character goes really far down, I want the camera to zoom out. If they're next to each other, I want it to zoom in. How do I do this? I didn't get a single dang response to like the last 4 posts I made.
View 2 Replieshow to make a my swf appaer as a percentage of the screen not a defined size and I can't seem to work it out. I nee something to appear on screen at a resonable size. 640 by 480 is too big for certain users and width="480" height="360" is too small for others.
see code I used below:
[Code].....
I would like to ask you, how can i make screen shoot(of movie clip for example) by As3 and send this data to php and there make jpg or somethink like this. I do not want JPGEncoder a thinks like this, because it's slow, when i want make screen 2000x2000 px. I need solution which will be quick, so just send data to php and there find solution how this data convert to jpg.
View 1 Repliesso for my loading screen, I want a block to appear for every 10% loaded (so they'red be 10 blocks at the end). I know how to make a loading bar, but I'm having trouble making this one.
View 3 RepliesI'm new in flex.I faced problem to make full screen in flex 3.My layout container type like below.
<mx:Application >
<mx:Panel>
<mx:ViewStack>
[code].....
i have a MC named "intro" with two images and a video inside it, and i need to make this MC fit the whole window, so it will be 100% maximized but keep the aspect ratio/dimensions (so the video dont get distorted and stretched).
So far i have this on the MC:
ActionScript Code:
onClipEvent (load) {
this._width = Stage.width;
this._height = Stage.height;
}
but that will just stretch and distort the video/MC to fit the window... and i need to constrain the proprtions (like when you resize a video in a video player).
I've created a walk cycle using bone tool on a character but i don't know how to make it move from one part of the screen to the other. The character is made up of 6 layers, 4 of which are armatures and 2 have motion tweens.
View 1 RepliesI saw some cool vibrations on a Flash site (forgot the URL) when you click on a button how do you do that in Flash?
View 1 Repliesi saw some site tat can make the whole screen move and it look interested, sample site below
View 3 RepliesI want to make an old pannel with a screen, but you have to adjust your "focus". This has to be done by a knob or slider almost like you would a pair of binoculars. I want to use the blur filter for this effect.
View 2 RepliesI have a multidimensional array, and my arrays are joined together to an array arrGrid. I want to randomly show one of my arrays from my list arrGrid. So far I have the randomizer, but it goes through them all and stops at the very last name in my array. I want to be able to stop the array from randomly going through them all, and just show one at a time.
stop();
var arrGrid:Array = new Array; // master array that holds arrays
var arrname:Array = new Array; // all the names
var arrcontainer:Array = new Array; // all the package types
[Code]....
[URL] They wanted me to make the gallery images full screen.. I have done this but this time the next and other buttons stays behind the big image when you enter the gallery (koleksion and showroom parts). Also the sliding menu stays behind this picture.. How can I fix this that the buttons and menu stays on the picture..
View 16 RepliesI have a Mac (intel) CS3 flash fla that I am exporting asprojector. The exported Mac projector and windows exe file will notopen full screen w/o the flashplayer's top toolbar. I have testedthe projector file on Mac 10.4 and Windows XP and all show theflashplayer's top tool bar. The only way to go full screen is tomanually select view/full screen in the player toolbar. I havetried the fscommand("fullscreen", "true"); toggle (true/false/true)workaround w/o any success. Any other workarounds I can try
View 4 Replies