Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Force Cursor Into Subsequent Txt Boxes


Hi,
I have done a thorough search on this - there is more than 2 pages on Selection.setFocus(), however unable to find a solution to this prob:
I have a form that contains several input boxes and I want to use a key down ( enter) event to force the cursor into the next input box, I have an idea that I may need to use an addListener in order to get this to work, but I am not certain how ( or even if that is right) - this is how it is set up so far -

PHP Code:



Selection.setFocus("fname");
/*this gives me a flashing cursor in the first input box*/

this.onEnterFrame = function()
{
if(Key.isDown(Key.ENTER) && Selection.setFocus("fName"))
{
Selection.setFocus("ma");
/*the above forces the cursor into the 2nd input field*/

}
else if(Key.isDown(Key.ENTER) && Selection.setFocus("ma"))
{
trace("key down")
//Selection.setFocus("ym")
/*the above doesn't respond to the Key.isDown code
as nothing appears on the trace*/
}





So, what do I need to do to get the second ( and subsequent) key down action recognised ?

Do I need an addListener() event, and if so, how do I implement it

Cheers

Vosgien
p.s.
btw - I have put the AS in PHP tags, not sure if the AS tags are working again properly yet !




ActionScript.org Forums > ActionScript Forums Group > ActionScript 1.0 (and below)
Posted on: 02-20-2004, 06:01 AM


View Complete Forum Thread with Replies

Sponsored Links:

AS3 Force Textfield Hand Cursor
Hi,

I'm working on a flash project with AS3. Nice, really powerful!

I realized that I only need to create a simple textfield for my buttons.
Great! No need for complex structures with too many movieclips/sprites, then
other sprites simulating background effect, border effect, and so on.
So know with simply one object I can animate color, textcolor,
backgroundColor, borderColor, x, y. I can also have Mouse interaction just
like a button or movieclip like in AS2. PERFECT!!!!! With a textfield I get
all the properties I need.
My only problem is that when applying Mouse Events to the textfield I lose
the hand cursor. Unfortunately I thing this would be a loose of usability in
my project.

Is there a way to force the textfield or the Mouse Event to swap cursors?

Thanks
PM

View Replies !    View Related
Move Textfiled Cursor - Force Keypress
Here is my problem:
I have a textfield, input text (var PN). Whenever the entered text reaches 3 characters, I need to add a space, then at 7 characters again.

This is my code:
if (_root.PN.length==3) {
_root.PN = _root.PN +" ";
}
This works like a charm, just that the textfield cursor is behind the 3rd number and "pushes" the space. I have not found a way at all, to get the cursor to go to the end. The Selection object/methods did not do the trick for me.

Can I force a keypress, meaning write a line of code that acts as if the user had pressed the space key?

View Replies !    View Related
Input Boxes - Flashing Cursor? Help
Hi!! first post of a new member (be gentle, lol)

have been given a Flash 8 project which requires a quiz page.. the sort where you get asked a question (eg maths 24 + 23 = ?) and then hit the enter button.. I've got everything working fine.. except the interface.. to enter an answer you have to click on the box and then click on the enter button..

was wondering if anyone knew how to give the answer box a flashing cursor to start with, and how to make the enter button able to accept a hit on the Enter/Return button of a keyboard (instead of mouse clicking on the button)??.. it would make the whole thing a lot more usable!

have been chasing my tail for a bit, any help appreciated! Thanks in advance
Chris

View Replies !    View Related
Text Boxes How Do They Make The Cursor Flash And Erase Whats Currently In The Box?
Please help me out if you can. I have wondered this for so long now. How do they make it so when you click on a text box w.e is in it disapears so you can type your own stuff. as well as the cursor flashes?? can someone help me out please. Thanks.





Matt

View Replies !    View Related
Turn Sounds Off On Second And Subsequent Loops
I've got a short movie which includes a sound effect. The sound get annoying after the movie has looped a few times, so I'd like it to play only N times. How would I approach doing this? Is there an actionscript function that counts the number of times the movie has looped?

--Jeff

View Replies !    View Related
HtmlText + <img> Subsequent Text On New Line?
hi there. i'm working with externally loaded, html formatted text which employs the <img> tag, wondering if anyone knows a way to force the text directly following the <img> tag to display on a new line starting BENEATH the image in the textField rather than the default behavior of flowing AROUND the image to the right or left?

inserting multiple <br> tags works, but that seems like a crappy and way to do it, fills the source file with a lot of <br> tags and requires a trial + error approach to finding the right number.

is there a better way?

View Replies !    View Related
Subsequent Folder Path For LoadMovie
I gotta typical problem here. I have several multimedia applications made in flash. Each application inturn calls hundreds of smaller swfs which reside in their same folder as the applications and they work well within the application. Now I wanted a single menu that calls each application’s starting swf. Upto this it is fine the menu calls the first swf. The rest of the swfs are not called. And I am in no mood to re-publish each set of those hundred swfs with additional path prefix.

Is there a method or a workaround like setAppPath(”//New Folder 1”) before calling a loadMovie()

menu.swf
//App Folder1
1.swf
2.swf
3.swf
…
//App Folder2
1.swf
2.swf
3.swf
…

View Replies !    View Related
Subsequent Tweens By Tween Class
I'm trying to get a series of movieclips to do some tweens right after the previous one is finished.

so right now, I have a loop running and I tell the first element (from an array) to tween. Then I go (thatTween).onMotionFinished = function... and tell the next element to tween.

What I want is a way to, with a few lines of code (as opposed to the almost hundred I would need the way I'm doing it now) to run a subsequent tween right after the one before it.

thanks

View Replies !    View Related
Subsequent Swf’s View Obscured By Initial Swf.
Hi… I have a page that starts off with a small swf file. Part of that initial swf has a ‘button’ which launches a second (which can launch a third and so on….). The subsequent swf’s are larger than the first and need to appear over the first. However, all subsequent swf’s display and in area where the first swf is they show behind it rendering them partly obscured by it.

I require the first to remain on the screen so that when a second and subsequent swf’s are finally closed the viewer is ‘returned’ to the first.

Is their a way to have secondary swf’s appear over the top of any that call them.

Many Thanks

View Replies !    View Related
Subsequent Fadein Effect Problem(Urgent)
Hi all

I have a sub.swf file that does a fadein jpg. very simple.
stop();
import mx.transitions.Tween;
import mx.transitions.easing.*;

this.createEmptyMovieClip("HomePic", 0);
this.HomePic._x=2;
this.HomePic._y=0;
HomePic.loadMovie("AboutUs.jpg");
new Tween(HomePic, "_alpha", Regular.easeIn, 0, 500, 3, true);

Now i have main.swf that loads the sub.swf using loadmovie, but i set it out of the stage by setting _y=1000
_root.createEmptyMovieClip("Movie1", 0);
_root.Movie1._x=170;
_root.Movie1._y=1000; // load to offstage position
_root.Movie1.loadMovie("sub.swf");

and i have a buttons on the main.swf. once the button is clicked, it should show the fadein jpg in sub.swf.

on(release)
{
Movie1.gotoAndStop(2);
_root.Movie1._y=100;

}

My problem: when i click the button first time, it does show me the fade in jpg, but the subsequence click only shows me the jpg, but not the fade in effect. Please help!!! Assume it should be soemthing simple to fix.

Thanks
Nancy

View Replies !    View Related
Question About Preloader Screwing Up Subsequent Movie
Using the following:

bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}


for my preloader, it causes the buttons and their variables not to run afterwards. If I don't have the preloader, it works fine. By the way I am running the preloader in a scene before the main movie. Do I need to reset variables or something ? Thanks

View Replies !    View Related
Flash Toolbar Shows On Initial Load, But Not On Subsequent Pages
Hi!

I have a flash toolbar which loads when you first hit the site, but if you go to any other page, it doesn't appear until you hover over it. Once you move your mouse over it, it pops right up.
This only happens in IE, not firefox.
Does anyone have any idea why this could be happening?
Thanks,
Shelly





























Edited: 03/01/2007 at 02:47:40 PM by *Shelly*

View Replies !    View Related
Drag And Drop Quiz - Why Do Targets Keep Appearing In Subsequent Quiz Questions?
I'm trying to create an e-learning quiz that will be a series of drag and drop questions (one per page). The user will be asked a question and will have 8 images visible, but only one of them is correct. So, there are 8 drags to one target.

When the user drags an incorrect image to the target, a text image appears that says to try again, and the image will return to its original location. When the correct question is dragged to the target, a button appears that will take them to the next question. Everything was working until I started to create question 2. I created new drag and drop instances for question 2, but it seems that the images from question 1 continue to be visible in the subsequent question(s) when testing my movie. Depending on how many choices I try to drag before I pick the correct answer in question 1, I also find that some of the button states are no longer active in question 2. What I am doing wrong?

I'm new to AS3 and actionscript in general. Part of my code is based on this tutorial: http://www.monkeyflash.com/flash/drag-and-drop-in-as3/.

I'm attaching my .fla file in hopes this will help others who are having the same problem.

View Replies !    View Related
Contact Form, ASP.NET, Text Boxes, Check Boxes
Hello,

I have to do a Contact form in flash with , text boxes, check boxes and.. IN ASP.NET

could any one help me with that?

give any sample or advice ?

I will really appriciate this

View Replies !    View Related
Subsequent Sound Loops Sound Quieter
Anyone else noticed this in Flash MX?

I have a sound loop which is fine when initially played, but then its subsequent loops play at a quieter volume.

Extra info:

I have a movieclip which has the sound placed in its first frame.

The sound is set to "start" as opposed to "event" or "stream"

The sound in the library has a linkage that only exports for Actionscript.

The wav sound has an export setting (via the library) for Mp3, and is not overridden by the publish settings.

Anyone know the reason for the reduction in volume for subsequent loops?

View Replies !    View Related
Flash Script - Cursor Trick 1: Cross Hair Cursor
This is a dedicated thread for discussing the SitePoint article 'Flash Script - Cursor Trick 1: Cross Hair Cursor'

View Replies !    View Related
Flash Script - Cursor Trick 3: Cursor Tracking Effect
This is an article discussion thread for discussing the SitePoint article, "Flash Script - Cursor Trick 3: Cursor Tracking Effect"

View Replies !    View Related
Cursor Speed And Direction Math To Jump Cursor
Looking for a little help.

I have a project that implements a jump type of desktop mouse interaction. Basically what this does is ...when the user moves the mouse, if moved fast enough (beyond a set speed threshold) the mouse jumps a predetermined amount in the direction the mouse was originally traveling. So I've tried to break it down this way.

First I need to calculate the speed. Based on the below code I can calculate speed on x and y axis but not sure how to evaluate overall speed as a function of both together.


Code:
attachMovie("mouseMC","mouse_mc",1000);
mouse_mc.onLoad = function() {
Mouse.hide();
};

var vxMouse:Number = 0;
var vyMouse:Number = 0;
var xi:Number = _xmouse;
var yi:Number = _ymouse;
mouse_mc.onEnterFrame = function() {
vxMouse = _xmouse - xi;
vyMouse = _ymouse - yi;
xi = _xmouse;
yi = _ymouse;
_root.speedX =vxMouse;
_root.speedY =vyMouse;
_root.cordX =xi;
_root.cordY =yi;
setProperty(this, _x, _root._xmouse);
setProperty(this, _y, _root._ymouse);
updateAfterEvent();
};
I have also added some code to provide a cursor trail.

Code:
onClipEvent (mouseMove) {
if (i >= 100) {
i = 0
}
i++;
this.duplicateMovieClip("flare"+i, i+10);
_root["flare"+i]._x = _root._xmouse;
_root["flare"+i]._y = _root._ymouse;
}
onClipEvent (enterFrame) {
if (this._name == "flareMC") {
_visible = 0;
} else {
this._alpha -= 5;
this._rotation += 2;
this._xscale -= 5;
this._yscale -= 5;
if (this._alpha<=5) {
removeMovieClip(this);
}
}
}
The next part is to evaluate the direction. Now I have done this in reference to a set spot MC using the following code accept that it doesnt update as the mouse moves therefor its only provides the direction from the starting point. Is there a way to update this on the fly as the mouse moves.

Code:
onClipEvent (mouseMove) {
//mouse angle code
x = this._xmouse;
y = this._ymouse*-1;
angle = Math.atan(y/x)/(Math.PI/180);
if (x<0) {
angle += 180;
}
if (x>=0 && y<0) {
angle += 360;
}
_root.angletext = angle;
updateAfterEvent();
}
Thirdly once I have the the speed and the direction how to I go about jumping the mouse distance x in the direction the mouse was moving?

I hope I explained this well enough...if not please shooot me some questions. Any help would be greatly appreciated.

View Replies !    View Related
Hand Cursor Turns To Text Cursor Over Button
if you goto the action section and then click the 13th from the left. ( kris foley) the hand turns to a text thing.

I'm not sure whats going on.

Thanks

http://www.ryanhamiltonphotography.com

View Replies !    View Related
Custom Cursor To Return To The Regular Mouse Cursor
How can I get my custom cursor to return to the regular mouse cursor when in the bottom 3rd of my flash movie. I need to do this for nav functions and I want the regular cursor actions in this area. So to recap: within the top 2/3 of the movie I will have my custom cursor, upon entering the bottom 3rd of my movie I need the cursor to switch back and vice verse...

my code below, please any suggestions are very helpful as I have tried several things:

stop();

import flash.events.Event;
import flash.events.MouseEvent;
import flash.ui.Mouse;

Mouse.hide();

stage.addEventListener(MouseEvent.MOUSE_MOVE, moving);
function moving(evt:MouseEvent):void {
if (cursor.currentFrame != 0) {
cursor.gotoAndStop(1);
}
cursor.x = stage.mouseX;
cursor.y = stage.mouseY;
cursor.mouseEnabled = false;
evt.updateAfterEvent();
}





//These three eventlisteners are telling flash to "listen" for specific events
//in our case if the mouse moves and if the mouse button is down or up.
//then if one of these events happens, it calls a function (mouse_down, mouse_up or moving).
stage.addEventListener(MouseEvent.MOUSE_DOWN, mouse_down);
stage.addEventListener(MouseEvent.MOUSE_UP, mouse_up);


// This is how to construct a simple function,
// this function will write in our text field "mouse is moving"
// when the even is raised by the eventlistener

// function just like above, just for the mouse down event.





function mouse_down(e:MouseEvent) {
if (mouseX < 800 && mouseY < 450) {
timer.start();
timer2.start();
}
}

// function just like above, just for the mouse up event.
function mouse_up(e:MouseEvent) {
timer.stop();
timer2.stop();
}

Thanks again and help!

View Replies !    View Related
Input Boxes - Then Printing A Frame With Dynamic Boxes With The Input Text In Them...
I have created a flash document with input text... I put the input text with a a variable for each.. I need to print the variables on a seperate page. I used a bounding box inside a movie clip and the printing is working correctly... However it is not reading my input boxes into the dynamic text boxes..

What I did is I have the input boxes on the root timeline........ You input it and go through a few frames and you get the option to print from a button (which is printing 2nd frame of a movie symbol) NOTE: the printing is working correctly using #b.... This is what I have on the 2nd frame of the movie clip for the dynamic text boxes to read the input boxes and place those variables inside of those dynamic text boxes so it will print them as they inputted them...

Here is what I have for my button:

on (press) {
print(_root.Printing, "bmovie")
}


Here is what my variables are on the input boxes which are sitting on the root timeline, each word is a variable:

curious
passionate
accountable
resourceful
commited
teamwork
open
engerizing

External_focus
Clear_thinker
Imagination_courage
Inclusive_leader
Expertise


INSIDE THE PRINTING MOVIE I HAVE A FRAME WITH THIS ACTION ON IT FOR THE DYNAMIC TEXT BOXES TO READ THE INPUT TEXT BOXES:

External_focus1 = _parent.External_focus;
Clear_thinker1 = _parent.Clear_thinker;
Imagination_courage1 = _parent.Imagination_courage;
Inclusive_leader1 = _parent.Inclusive_leader;
Expertise1 = _parent.Expertise;
curious1 = _parent.curious;
passionate1 = _parent.passionate;
accountable1 = _parent.accountable;
resourceful1 = _parent.resourceful;
commited1 = _parent.commited;
teamwork1 = _parent.teamwork;
open1 = _parent.open;
engerizing1 = _parent.engerizing;


FOR SOME REASON IT IS NOT PRINTING MY INPUT BOX INFORMATION IN THE DYNAMIC TEXT BOXES.... DOES ANYONE KNOW WHY?

View Replies !    View Related
How Do You Get The Hand Cursor? Not The Finger Cursor
how do you get the hand cursor with all 5 fingers spread out, and when u click down the hand looks like it grabs the object.

thanks

View Replies !    View Related
MC Follows The Cursor. How To Restrict The MC Movement And Not The Cursor?
I am trying to make something similar to this idea but my MC has a couple of buttons that follow the standard cursor - which is not hidden.
The movieclip movement is working by using:

Code:
onClipEvent (enterFrame) {
this._x += (_root._xmouse-this._x)/25;
this._y += (_root._ymouse-this._y)/25;
}
At the moment with this code, the button mc follows the mouse over the entire stage. I am trying to figure out how I can limit the movement to a smaller proportion of the stage, by either a hit area or some other method
Obviously I wont want this to effect the normal cursor movement, just the MC that follows it. Anyone give me a clue of how I should go about trying to do this?
Thanks

View Replies !    View Related
Force 100%
how do I make my movie to freeze at 100%
so that it's impossible to zoom in/out or
to choose show all?
thx
haerty

View Replies !    View Related
Force Reload
I was wondering if any one knows how to force the user to reload the SWF file. Right now they don't so if i update the site they will not reload the site.. Instead they will just use the SWF file that was stored on the users computer

View Replies !    View Related
Force X Pos Of Pointer?
Is it possible to force the mouse pointer to go to a specific x position?

View Replies !    View Related
Force It To Point Down?
i need to create a semi complex animation, first i need an arm that pivots up and down straight out of which a part extends(now this far i can get easy) but attatched to the end of this piece i need a weight like object that always points down. i tried setproperty rotation 0 but that only references the extention for 0 degrees in the extention object and does not take into account the pivot of the arm.... if that makes any sense and you can create it or offer a suggestion of where to look for help please respond.

View Replies !    View Related
Force To Stop
Hey everyone,
i have a question that is about scripts,
is there some kind of a script that can force stop ANY loop or any flash animation.
you see, i really liked a Flash animation posted in this web site in the FREE FLA section, (you can see and download the one i liked by clicking hear - http://www.flashthief.com/flamovies/fxzone/9.zip)
and i thought about integrating it with my web site, but i don't want it to run for ever, and i don't know how to make it stop or fade out,
can any one help me?

View Replies !    View Related
Force Download
I have links to mp3 files on a site and I want it force the user to download instead of doing it only in the status bar. Is there a way achieve this??

View Replies !    View Related
Force CD Open
I am creating a Flash project to be published to CD for viewers. Two non-tech saavy people have had trouble using the Flash projectors even though I labeled them PC users.exe! Is there anyway that a viewer can put the CD into his machine and have the Flash files open automatically without the viewer having to click the projector? Thanks for your help!

View Replies !    View Related
Can You Force Instances Above Another?
I'm building an online portfolio (finally)

I built a complex transition between the loading of sections, and I'm soooooooooooooooooooooooooooooooooo unhappy with it. When you click on the main menu buttons on top, the windows fly around to and from the backdrop, but if you will notice on the left hand side where the sub menus are and the main screens are while they fly around, the instances are wierd, they overlap each other, what I want is for all the smaller windows on the left to always be on top during transitions.. right now the large window is always mixed in with them..

You will see what I mean when you click around the top menu.

My question is.. is there a way to force certain instances or MC's to be on top, then move them back to another layer level when needed?

The site isn't completed yet.. hopefully this friday i'll have it all done, but this one thing has been bothering me the last 2 days....

Thx in advance.

http://www.dkbds.com/index2.htm

View Replies !    View Related
Force Reload Of Swf
I need to force a reload of a child swf. I am using the same logic that I use with loading variables, but it doesn't seem to work.

Code:
var rand = random(8564);
loadMovieNum("mymovie.swf?rand", 3);
Any tips on how to accomplish this?

View Replies !    View Related
Force To Not Print
Hi

Do you guys know a way to force your site to not print?


Thank you

View Replies !    View Related
How To Force Download (.e.g Mp3)
hi all, im goin crazy tryin to figure something out...

i have a few questions about basically the same thing.

I wanna be able to allow a download of a file, but this file is an mp3, so whatever method i try and do to have the file downloaded, instead of coming up with a SAVE AS dialog, it juz opens it with the associated MIME app - which is sometimes cool, but not in this case!
obviously i dont wanna change anything on my pc to make it work, cos i want it to work on all computers!!!

I want to be able to do it in two ways:
1. actionscript: I use geturl("file://[url of file]") and it juz opens in wmplayer instead of opening the SAVE AS dialog.

2. I would also like to be able to do it from an html page WITHIN flash. I have a html enabled textbox, and i load the contents of it dynamically. On that i want DOWNLOAD links to mp3s, obviously when i use < A HREF="mp3filename.mp3">mp3filename</ A> it does the same thing,

so what do i do!?!

cheers,

View Replies !    View Related
How To Force An Action
Refering to the 1st bug I've mentioned on this other post http://www.flashkit.com/board/showthread.php?t=650277.

I was wondering if it was possible to force an action to happen. In this case I would force the dropdown menu to hide ALSO when the pointer enters another button.

Like maybe attach this to the other buttons (dropdown2):
[code]
on (rollover) {
myDropDown1.GotoandStop ("hidden");
}

could that work or is there something better?

ANY helpl is appreciated

p.

View Replies !    View Related
Force Refresh?
Hi everybody.

If you can do me a favor and test my page: http://www.lillebo.org/ that would be nice...

You see when some people (including me) load my page, the links that are loaded into the page via actionscript doesnt appear..( it is supposed to be where the CFH logo is). And when it does appear it is not updated.
(the link page is updated everyday), but if it loads in it is the same as always...

Is there anyway to force refresh the page that's loaded into my page via actionscript?

If that made any sense, please give me a ringeding!

View Replies !    View Related
Force Upgrade
So I did some testing and realized people cant see my flash, since it is published in 8, and if you dont have 8 certain aspects either dont show up, or nothing shows up at all. Now is there a way I can have it setup so when they see my flash it shows a message that tells them to download Flash 8, ive seen this done before with certain flash sites.

View Replies !    View Related
Force Re-download
I am wondering if there is a way to force viewers to re-download a website every time they visit rather than loading a site from their harddrive.

In order to speed up load times, computers often download webpages so that they don't have to wait for them to be loaded up again the next time the page is viewed. I am trying to prevent computers from downloading the page or, at least, force the computer to re-download a fresh copy every visit.

I have a flash movie that I need to update several times during the day, so I'd like to make it so that those updates are seen by everyone, EVERY time they view the page.


make sense?

I'm stumbling over my words today... sorry

View Replies !    View Related
Force Animations
I'm in the process of doing a series of animations on structures and forces. I want to create (in Flash 8) animations which show how forces are transmitted within structures. See the attached pdf, I'd like a way of animating the force arrows perhaps so they change colour or size in a flow in the direction of the arrows. Hopefully this will be a way that will be easily adaptable to other structure diagrams. Any help would be gratefully received!
Thanks
- Rob

View Replies !    View Related
Force Focus
how can I force flash to have focus upon load? I am using the SWFobject in my html...and this used to work before...but somewhere along the line, I must have broken something...what I want is to be able to use my mouseWheel as soon as the swf loads in the browser...without having to click the stage first...what is supposed to happen is the map is supposed to zoom in/out with the mouse scroll...but it doesnt do that until you click anywhere on the stage...like I said it used to load and work right away...now i have to click (even though the flash swf is active in the browser)...also this is the same way it works running it locally in flash...it will load fully but I still have to click on stage to use the mouse scroll...any idea how to get around this?


http://www.expocadvr.com/new/default.html

thanks

View Replies !    View Related
Force Download
Hi there

this is my first post and i hope its not a tricky one

well, my problem is with forcing file download through actionscript. i have tried a couple of things with dodgy popup where i send filename through $_GET and run the script in that php file, but it doesnt seem to be a good solution and i am always left with a popup which wouldnt close, unless i close ot from my flash movie.

anybody know how to handle that?
thanx

View Replies !    View Related
How To Force Focus?
Hi guys, I have a text field that I need to automatically be "focused" when the .swf loads. I don't want to have to click on the field to set the focus but I want the focus to exist already on the first frame.

Is that possible????

View Replies !    View Related
Force Frame
I am really new to actionscript and I need some help. I want to beable to force a webpage to load a specific frame instead of starting from the beginning. I have looked for solutions for about an hour and none really helped. Please help. and please if you can over explain stuff. thanks

View Replies !    View Related
Force Low Quality.
Hi!

i need to force the quality of my movie to low. i have tried
fscommand("quality", "low");
but that doesnt work.

thx for the help.

View Replies !    View Related
How Do I Force An Unsubscribe?
Hi,

If multiple users are subscribed to the same live stream, is it possible for the FMS server to force one user to unsubscribe from the stream, or otherwise prevent him from viewing, without affecting any of the other subscribers?

My server needs to cut off a subscriber when his access expires, and for security reasons I can't trust the client to unsubscribe when instructed to, so the server must force an unsubscribe somehow. I can't figure out how to do this for one subscriber without unsubscribing everyone watching that stream.

Any and all replies are much appreciated.


Thanks in advance,
Barry

View Replies !    View Related
Force Downloads
I have a page set up for people to download mp3s for my band's latest album. However, I dont want the links to have them open up in Windows Media Player, I want it to make them download the mp3 file. Does anyone have a solution for this? Thanks

View Replies !    View Related
Force KeyPress
Hey folks! In one of my Flash movies, I need to "force"/fake a Enter or spacebar keypress without the user actually pressing the key. Does anyone know how I could do that?

View Replies !    View Related
Force An Event
Hi all,

I have a problem where I have declared an onRollOver event handler on frame 5. I also have a button on frame 4 telling flash to go to frame 5.

But, if the mouse is already over the movieclip on frame 5, the rollover event will not play.

Is there a way to force this onRollOver or another workaround for this?

Thanks.

View Replies !    View Related
Force Smoothing
How do you implement the new forceSmoothing?


ActionScript Code:
new_mc.holder.loadMovie(myNv["image"+(x)]);  new_mc.holder.forceSmoothing = true;


I've tried this but it doesn't seem to be making any difference.

Any ideas?

View Replies !    View Related
Force Download Of Mp3
Hi

I know this question been asked too many times before, but i simply do not understand the answers.

My question, I hope is really simple:

myButton.onRelease = function () {
//what do I need to put here to force the download of the mp3 (not a zip);
}


Thanks in advance,

Julian

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved