Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

flex3

How can I get list of properties in an object in Actionscript?

December 30, 2023 by Tarik

If it’s a dynamic object I believe you can just do something like this: var obj:Object; // I’m assuming this is your object for(var id:String in obj) { var value:Object = obj[id]; trace(id + ” = ” + value); } That’s how it’s done in AS2, and I believe that still works for dynamic objects … Read more

Categories actionscript-3 Tags actionscript-3, filterfunction, flex3 Leave a comment

How can I get an instance’s “memory location” in ActionScript?

December 20, 2023 by Tarik

In realy I advise to you don’t to use this too much… it is very expensive. Adobe need to create a native function to return this to us. But, for now… try this: You will need to cause a explicit coercion to get it! Because when you make and explicit coercion you get an Error … Read more

Categories apache-flex Tags actionscript, actionscript-3, apache-flex, flex3 Leave a comment

Fastest way to delete one entry from the middle of Array()

August 19, 2023 by Tarik

Don’t have any benchmarks to support this, but one would assume that the native Array.splice method would be the fastest… So, to remove the entry at index 5: array.splice(5, 1);

Categories actionscript-3 Tags actionscript-3, apache-flex, flex3 Leave a comment

Flash versus Flex

August 9, 2023 by Tarik

Flash and Flex both use the same underlying rendering engine, just with different front-ends. Flash is better suited for making movies and animations. Flex is better for application development.

Categories apache-flex Tags apache-flex, comparison, flash, flex3 Leave a comment

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa