ActionScript 2.0 :: Make A Long Code Into Short And Compact?

Jul 7, 2010

I am using the following code in many places, like you can see, there is m1,m2, m50,m51 m100 etc, it means i have 100 movieclips(in example below, there are 10 mcs only). [code]...

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Unable To Make The Code Short?

Aug 7, 2009

in making this code short

ActionScript Code:
function addlist() {
var dataload = new LoadVars();

[code].....

View 0 Replies

Professional :: Show Only A Short Segment From A Long Video?

Mar 8, 2010

I have a long video of 50 minutes duration..
 
I want only show a segment for that video, for example I want to start from minute 15 until minute 16, Only shows a minute for that video, but, I want to see that video as a complete short video of 1 minute duration. 

View 1 Replies

ActionScript 3.0 :: Show Only A Short Segment From A Long Video??

May 19, 2010

I have a long video of 50 minutes duration..I want only show a segment for that video, for example I want to start from minute 15 until minute 16, Only shows a minute for that video, but, I want to see that video as a complete short video of 1 minute duration.How can I make this goal?

View 1 Replies

ActionScript 2.0 :: Replace Long Object Path With Short Var?

Aug 15, 2006

This is what I would like to do. Change this:

Code:
this.onEnterFrame=function(){
if (blaah){ videoMC.vLoader.vContainer.holder.gotoAndStop(videoMC.vLoader.vContainer.holder._currentframe+2);

[Code]......

Is that possible, to substitute a long path with a short var. I know it can be done with any object property, but I'm not sure how to do it with a path, b/c what I've done so far doesn't work.

View 9 Replies

ActionScript 3.0 :: Optimizing Short Code With XML Objects

Jul 14, 2010

I'm trying to take into account the Garbage Collector (GC), so I decide to optimize this code:[code]For instance, is it useful to put "xmlOne = null" in every iteration?  I'm checking with the Flashdevelop's profiler, but I don't see the difference.maybe, I can also reuse the item object rather than creating it every time, right?

View 1 Replies

ActionScript 2.0 :: Way To Break Up Long Lines Of Code?

Oct 14, 2003

I may have posted this before, but I have searched the forums, and elswhere.Can anyone tell me a way to break up long lines of code, in VB it's possible to continue a line of code, on the next physical line with an _ (underscore).

View 3 Replies

Actionscript 3 :: Short "progress Code" Algorithm?

Apr 21, 2011

Does anyone have ideas to securely encode a small amount of data into approximately 8 characters? I have a project (Flash and Flex (AS3) not that it really matters) that must be deployed on CD/DVD-ROM (no local storage nor network access) but with a requirement to allow people to come back where they left off. Therefore there will need to be a code that is human-friendly to print (on dead-tree or PDF) or write down and to enter back into an input field, as well as being secure to stop cheating between different students.

There are 14 assessment items that can be completed in any order. At the moment I CRC32 their "login name" and take 16 bits from that result, and combine them with the 14 assessment bits into 30 bits that is then encoded using a form of Base32, giving 6 characters, then adding a check character, then using a character replacement for encryption. Upon return to the program and entering the 7 character progress code, after decryption and extraction, if there is a match in the name hash parts, it is assumed the completion bits are correct.

One problem identified was that only two characters change when completing each item. Is there some algorithm that would completely change the entire string if any one bit changes? Or is there a completely better way? I'd also like to store more data (dates, more bits for the hash to reduce collisions, location within the course, etc) but don't want to go above 8 or 10 characters.

View 2 Replies

ActionScript 1/2 :: Shorten / Optimize Repetive, Long Code?

Sep 30, 2009

my code works, but is way too long, infact to get the result I want it would need to be very very long.Here is *some* of my code, this is for Left. I have 3 other similar bits of code for Up, Right and Down.

on (keyPress "<Left>") {  _root.player.gotoAndStop("left"); leftFunc = function () {  if (_root.player.hitL.hitTest(_root.everything.hitAll.hitLeft) || _root.player.hitL.hitTest(_root.everything.hitAll2.hitLeft) ||

[code].....

View 7 Replies

ActionScript 3.0 :: Flash - Possible To Use Such Long Parameters In Tweening Code?

Jul 20, 2011

I am using the following code to tween my PortFolio_mc but now I want to add some more parameters ake the content in the center of the page when resizing. How can I modify the code? The following is the code I am using:Code: TweenMax.fromTo(PortFolio_mc, 5, {x:980, y:410, alpha:.5}, {x:100, y:410, alpha:1, delay:3, ease:Strong.easeOut});The following are the detail parameters which I would like to use in WIDTH & HEIGHT of above code:

Code:
PortFolio_mc.x=stage.stageWidth/2-PortFolio_mc.width/2-180;
PortFolio_mc.y=stage.stageHeight/2-PortFolio_mc.height/2;

[code].....

View 4 Replies

Flex :: Make Paragraph Text That Previews Short Amount Then Expand Link?

Aug 4, 2011

I want to be able to display a paragraph where if the text being shown is (say) over 15 lines long, then a link text will appear and if click it will expand.
Example:
This is a long line for here so I need to make more display but I cant so what will (More)... <== this more link will be clicked and the rest will show up below this paragraph expanded to show the rest of it. (Close)... <== this close link will be clicked and the rest of the page will be hidden again.
Can this be done in Flex? Here is a link example done in javascript [URL].

View 1 Replies

Flash :: Class Code Removed Long Ago (sometimes) Gets Executed With Log Traces?

Nov 11, 2011

I have an issue in which outdated code removed long ago code in an actionscript 2 class sometimes gets executed. I can tell this in that the application fails and trace statements removed long ago gets logged to a console.The closest match I've come across is this post:Flash CS4 refuses to let goHere are the things I've triedI hI have searched an uncompressed debug-enabled version for the trace entry. It is not there.I have decompiled the compiled version and searched that. It is not there.I ave deleted all ASO files and tried to recompile.I have not been able to reliably reproduce the conditions in which the situation arises.I've testet 700 times in a row (yes - sevenhundred times - this is a high profile project) and it would not occur. Then tested another time and it occured. No difference in my approach to testing.I have compiled on another, freshly installed machine. No difference.I have ruled out that it may relate to timestamps since I've tried to compile locally and w/o version control.

View 1 Replies

Best Way To Make Long Animations?

Nov 2, 2010

Would it be better to make long(5+ minutes) animations all in one file on the same timeline, or to make sections and assemble them later?

View 2 Replies

ActionScript 2.0 :: LoadMovieNum - Users Of The Player To See How Long They Have Listen Or How Long Time Back Of The Song

Feb 5, 2004

I'am making a advanced mp3 player arund this tutorial: [URL] and i want the users of the player to see how long they have listen or how long time back of the song. i have the AS i what to use but i cant connect them. becuase the tutorial i used does not make a sound objekt (MUSIC)

[COde]...

View 1 Replies

Flex :: Playing A Large/long H264 File With NetStream Takes A LONG Time To Begin Playback?

Aug 1, 2010

I'm trying to play a 10 minute long video (h264/mp4) which is 39MB in size, after I call stream.play(fileURL) it doesn't start playback until its loaded around 12-16MB of the file (many many seconds later), I finally get onMetaData at this point too. Why doesn't it begin playback right away, or at least w/in a couple seconds? What can cause this bloated lead in time?

View 2 Replies

Professional :: Make A 1 Minute Long Animation?

Apr 29, 2011

I need to make a 1 minute long animation for today that incorporates these three elements:It must have a title and credits Must have at least one character that uses the bone tool It must have shape tweens (with hints)The quality doesnīt really matter, just so long as itīs not completely shoddy, or super professional, it just has to be done by today.

View 1 Replies

ActionScript 3.0 :: Make A Long Case Statement Along The Lines?

Jan 18, 2010

I have a large group of functions.The function to be called depends on the value of a var (which is a int);I could make a long case statement along the lines of this

PHP Code:
var Pos:int = 0;function test1():void{ trace("Test 1");}function test2():void{ trace("Test 2");}function test3():void{ trace("Test

[code]....

View 3 Replies

ActionScript 2.0 :: Make Links In The Middle Of Long Texts?

Sep 29, 2006

"Instead of laboring many hours tracing a bitmap in Illustrator or Freehand, you can use a little known Flash tool to convert a bitmap into a vector - the Trace Bitmap Tool. There are two reasons you may prefer vector over bitmap in your flash movies. One: to achieve a cool look. Two: to lower your file size."

you put that text in a text field in flash but you will need to have links on the word flash and illustrator and freehand... how do you do the links? do you convert all the text to a graphic and then transform the works that you want in buttons??

View 2 Replies

Embed Flash Games Into Windows Forms Application.net Compact Framework Under Windows Mobile 6?

Feb 5, 2010

I want develop an application on windows mobile.In this app, i need to show some Flash games to the end user.ow should I do?embed an Flash ActiveX Control (in Windows mobile Form application) ?embed an IE control?BTW (because i do not have a windows mobile device now)Can I views flash in IE of the windows mobile device?for play flash, Macromedia Flash Player 7 for Pocket PC should be installed on your windows mobile emulator.DIT2:after practice i found following package should be installed before your windows mobile progr

Vista SP2
Visual Studio 2008 SP1
Windows Mobile Device Center

[code].....

View 2 Replies

Professional :: Make A Small Round Ring Rotate As Long As The File Is Loading?

May 30, 2010

im following some suggestions to cut my flash website into a few sections to make preloading a bit easier.
so all i want is to make a small round ring rotate as long as the file is loading. so i looked and followed a lot tutorials but all the preloaders tutorials are much more compliceted then i need. they all have persentige sowing, and a bar that is filling according to how much the file has loaded, and colors changing etc. so i tried to take from the tutorials wat i need for my simple preloader to work but i get stuck.i built the animation of the rotating ring, but i get stuck with the actions i need to make the animation work as long as the file is working. i called my ring animation "circularloader". here is a image of the page with the ring:

View 14 Replies

Professional :: Make A Minute Long Animation Of Two Koi Fish - Slowly Swim In Frame

Feb 21, 2011

I'm trying to make about a minute long animation of two koi fish.

1. Fish slowly swim in frame
2. Fish swim in circle a couple times
3. 4 food pellets drop into water
4. Fish eat them one at a time
5. Fish slowly swim out of frame

I've finished step 2, but now I want to go back and do step 1. I've attatched a picture of my koi and I was wondering if there was any way I could flip the image of them and tween them to make it look like the fish were moving their bodies all in flash.

View 2 Replies

ActionScript 3.0 :: Make One .as File Code Interact With Another .as File's Code?

Mar 16, 2010

I am trying to find out how to make one .as file code interact with another .as file's code.like, if I had one .as file that specified options of movies and then when the user clicks on a movie (loaded through xml) it uses code from another .as file to load the correct movie.

View 5 Replies

ActionScript 3.0 :: Use Arrays For Short Mp3s?

Mar 7, 2010

could I use another array to say 'milk', 'baby', 'yes', 'ball', 'bird' as the words appear using short one word mp3s?

PHP Code:

var words:Array = ['milk', 'baby', 'yes', 'ball', 'bird'];
var step:int = 0;
var readTime:Timer = new Timer(500, 1);

[Code].....

View 2 Replies

Finished Up A Short Cycle And Exported It As A .mov?

Dec 3, 2009

I've recently started using Flash in CS4 and finished up a short cycle and exported it as a .mov to find it had clipped the last two frames, Does anyon know why? Or how to stop it from clipping my work?

View 1 Replies

Professional :: Keyframe Keyboard Short-cut?

Jan 18, 2012

While working on a project involving a mask layer and artwork layer the tutorial that explained the procedure said to press F6 to add a new keyframe to the timeline. While on the current frame, the tutor was hitting F6 and a new frame with a keyframe was produced. I need to click on the next frame then hit F6 to make the keyframe. The project is to make a vine look like it is growing and involves making lots of subsequent keyframes in this manner. The tutor breezed through making one keyframe after another - I have to physically advance to the next keyframe THEN hit F6.This really slows things down.

View 3 Replies

Flash :: Short Hand Methods Available?

Jun 8, 2009

I'm used to using the if else shorthand:

var = (if statement) ? 'something' : 'something else';

Are there any other short hand methods available?

View 3 Replies

ActionScript 3.0 :: Short Delay Before Going To Next Frame

Jul 25, 2011

Im working on a small drag and drop project and for the life of me I cant seem to work out how to get my movie to delay before it goes to the next frame.

Basically when a clip is dropped onto the target I need a short delay of about 5 seconds before going to frame 2.

I know that I need to set a variable but cant work out how to utilise it [code]...

View 2 Replies

ActionScript 2.0 :: More Short Hand Operations?

Jul 27, 2006

This is what Have done but will take up a lot of lines

Code:
check.onRollOver = function(){
_root.check.gotoAndStop(2);
};
check2.onRollOver = function(){

[code]....

View 7 Replies

Create Banner With Imbedded Short Video No More Than 5-6 Sec?

Jan 18, 2011

I'm quite new to flash but have experience in other adobe programs, I'm trying to create banner with imbedded short video no more than 5-6 sec.I was desperately trying to find some tutorials or any help on this subject without success.

View 2 Replies

Java :: Putting Short Into 2 Bytes Of String

Oct 28, 2011

So I'm making my own networking protocol for a online game, to save space each message (sent over TCP) is given a ID which is a short, 2 bytes, all messages sent from the server to the client and vice versa are strings, how can I convert a short to a string in java in just 2 bytes (characters)? I want to be able to convert a short int into 2 characters, so that I can send the short over the network in a string format in just 2 bytes and decode it back into a short on the other side (in actionscript 3). A character can hold 256 possible values right? So 256*256=65,536 which is the size of a unsigned short int!

Here's what I've got so far:
public static String toCode(int c){
if(c <= 255 ){
return Character.toString((char)c);
}else{
return null;
}}
public static int fromCode(String c){
return ((int)c.charAt(0));//Return the character code of the send string, 1 char only
}

This can turn a int into a single character which can be sent over the network, now I just need to have it use 2 characters and it can do up to a short.

View 3 Replies







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