all groups > flash actionscript > november 2006 > threads for friday november 24
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
I just want to return to a frame.
Posted by litdesign at 11/24/2006 9:26:18 PM
I'm not certain about how to say this correctly. From the end of a movie, I
want to loop back - not to the beginning, but to another frame. I labeled the
frame I want to loop to, but I have been unable to find the correct code to get
back there. I have tried several goToAndPlay scenarios, but ... more >>
swf random looping
Posted by Chris Pierik at 11/24/2006 8:17:46 PM
Hi all,
I am calling a random swf movie out of 11 using the following:
choice = Math.round(Math.random()*11);
switch (choice) {
case 0 :
loop_mc.loadMovie("loop0.swf");
break;
case 1 :
loop_mc.loadMovie("loop1.swf");
break;
case 2 :
loop_mc.loadMovie("loop2.swf");
b... more >>
monitoring the progress of externally loaded jpgs
Posted by dalewb at 11/24/2006 6:34:38 PM
I am trying to get a preloader to monitor the progress of 8 jpgs that are being
loaded into 8 empty movie clips simultaneously. Right now the preloader
doesn't work. I tried grouping all of the 8 MCs into one MC and referencing
that, as suggested
http://www.adobe.com/cfusion/webforums/foru... more >>
OOP Help
Posted by crispymuscat at 11/24/2006 5:37:38 PM
Please could someone explain to me as clearly as possible how I instantiate an
object in this situation
i have
holder.createEmptyMovieClip("holder",getNextHighestDepth());
i want to instantiate a another object (from a custom built class which
extends the Movieclip class)
within t... more >>
Loading Text Files with Hyperlinks into Dynamic Text Field
Posted by ChuckRWD at 11/24/2006 5:05:44 PM
Describes the mood or content of the topic posted 11-22-06 04:41 PM
I am using Flash 8 and loading external text files in dynamic text fields on
my webage. These texts contain html links (<a href="page.html"
target="_blank">Click Here</a> and I have "render as HTML" on and "selectable"
off ... more >>
External SWF Load Problems
Posted by timbronze at 11/24/2006 3:34:54 PM
Hello,
I am creating a Flash movie that loads an external swf. The external SWF loads
in itself some text information.
The problem I have is this. When I run the SWF the background of the external
swf is visible... however the text information is not being displayed.. If I
run the se... more >>
simple checkbox stupidity
Posted by Kree8R at 11/24/2006 2:39:58 PM
i have a checkbox on stage that i want to dynamically set to either selected
or unselected... but i'm having problems with a simple test:
cb_checker.selected = true;
this does not set the checkbox to selected... do i need to create and place
the checkbox onstage with script only to have th... more >>
Array in object doesn't duplicate upon instantiating
Posted by Jean-P. at 11/24/2006 2:16:19 PM
I guess I'm victim of my own misunderstanding of OOP but can somebody tell me
why if I create two instances of an object which itself creates another array
object, I end up referencing the same array ?
I've attached some oversimplified code to make things clearer. Why are both
arrays cont... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How can I change the first efect to a second for the same movieclip
Posted by pandeli74 at 11/24/2006 1:58:13 PM
How can I change the first efect to a second for the same movieclip? I mean
after 30 first frames, I need that the same movieclip to change its efect for
30 future frames. Thanks (if I explain right).
... more >>
xml based file path problem on Windows
Posted by UrbanNomad60 at 11/24/2006 1:08:37 PM
Hi
I'm having a problem with a Flash based slideshow based on the tutorial one
from here
http://www.adobe.com/support/flash/applications/jpeg_slideshow_xml/index.html
I've added a timed nextSlide function but basically left the actionscript the
same apart from that.
The problem is that t... more >>
jump to next frame label without specifying a name
Posted by johk at 11/24/2006 12:44:06 PM
Is it possible to jump to next frame label without specifying the name of the
frame label?
For example instead of saying
on (release) {
gotoAndPlay("Step_02");
}
I wanted it just to go to next available frame label.
Thanks
Jonas
... more >>
TextArea Lines
Posted by John27832 at 11/24/2006 9:41:23 AM
Hi.
I'm just wondering how to resize a textarea by height (allowing more lines of
input) without stretching the text inside. _height and _yscale both seem to
simply stretch the box and its content.
Thanks.
... more >>
Playing FLVPlayback from AS
Posted by LSNsaltlamp at 11/24/2006 9:24:29 AM
I am new to using the FLVPlayback component. Currently it is set to not auto
play. I would like begin playing whenever a certain action occurs. For instance:
this.onEnterFrame = function() {
my_FLVPlybk.play();
};
This code doesn't work however. What's the best way to call the play functi... more >>
loadmovie
Posted by Webber at 11/24/2006 5:52:25 AM
Hi,
I made a flash movie that the content must moad from the database
the script in the flash = ImagePlaceHolder.loadMovie(image);
in my webpage I have this:
banner.swf?image=<%= Server.URLEncode((rsBanner.Fields.Item("logo").Value))
%>
its not working, I see no image
when I use ba... more >>
Movieclip button
Posted by Tume91 at 11/24/2006 5:37:12 AM
I have many samekind movieclips in stage, and I want that when you clip them, they run their own function. How I can make this, so when you click them, it happens?... more >>
How to make the size of a flash change with the ieexplore?
Posted by physicsȨÍþ at 11/24/2006 4:18:57 AM
I see many flash,their dimension are very flexible.They are changing
with the size of the explore window.I don't know how to make it.Any
help is appreciated.
... more >>
multiple clips on one target level
Posted by sol martin at 11/24/2006 4:00:36 AM
in a nutshell, I have several movie clips that need to load in on level 2. the
code to load it in and click each one works to view and remove the movies,
using these scripts:
to load in the page, I use this. the page loaded is semi-transparent, so the
buttons below it can be clicked and it... more >>
Double Conditions
Posted by quittle at 11/24/2006 2:29:04 AM
In plain English please...
I need the coding for multiple conditions in the expressions. This is what I
mean.
onClipEvent(enterFrame){
if(Key.isdown(Key.SPACE)) [u](this._x=_example._x) [/u]
{this._y=example._y}
The underlined part is what I need help with. How do I put the ... more >>
|