A Flash Developer Resource Site

Search:

Type: Posts; User: ryanmacflashkit

Page 1 of 8 1 2 3 4

Search: Search took 0.13 seconds.

  1. Loading resource files from online source before compiling?

    Hi Chaps

    I'm making use of flexes resource manager to load .properties files to create a multi language site.

    At the moment all the resource files for respective languages sit "offline" in...
  2. Replies
    16
    Views
    2,814

    Just to confirm, have you tried your code in...

    Just to confirm, have you tried your code in different browsers and made sure you are using the latest version of swfaddress?
  3. Replies
    5
    Views
    1,311

    Aaah yes, "favour composition over inheritance"...

    Aaah yes, "favour composition over inheritance" rings a bell now...
    Thanks again for your insight, and taking the time out to give good advice.

    Kind regards
    Ryan
  4. Replies
    5
    Views
    1,311

    Hi Sleeves, thanks for your insight. Yes correct...

    Hi Sleeves, thanks for your insight. Yes correct that was exactly the problem. My array was not available at run time, as it was only populated within my application init function.

    I created a...
  5. Replies
    5
    Views
    1,311

    Looks like it's my modelsArray array that coming...

    Looks like it's my modelsArray array that coming through as null, and not the function, as I originally thought. Getting closer.
  6. Replies
    5
    Views
    1,311

    Bindable Dynamic Objects?

    Hi Guys,

    I'm doing something incorrectly and I need some best practice this one.
    In my flex app Im using a function to return me my objects for images in my mxml. I thought it would be the best...
  7. Replies
    6
    Views
    1,180

    Mate! You are a legend... I was stuck on...

    Mate!

    You are a legend...

    I was stuck on this for a while (the whole day pretty much), really looked into your advice and eventually figured out what a bindable tag in the mxml was.

    Working...
  8. Replies
    6
    Views
    1,180

    Got it to populate the text on innititialize from...

    Got it to populate the text on innititialize from resourceManager.
    So I'm guessing something like this should do the binding?
    http://www.dreaminginflash.com/2008/07/29/flex-bindings-in-as3-projects/
  9. Replies
    6
    Views
    1,180

    Sure it makes sense. If I can get my swc to...

    Sure it makes sense. If I can get my swc to realise when flex has called resourceManager.localeChain then Im half way there. After that I'll work the binding. Thank you.
  10. Replies
    6
    Views
    1,180

    Localization Question

    Hi Guys,

    Ive got a Flex 3 question, and I need confirmation. Although Ive got a feeling the answer is probably not what Im expecting.

    Maybe im missing something obvious. So if you guys could...
  11. Replies
    4
    Views
    5,577

    Yes, UI(flash) and data layer(server) are...

    Yes, UI(flash) and data layer(server) are seperate. So it should be secure.
  12. Replies
    6
    Views
    506

    best practise here would be to create a paralell...

    best practise here would be to create a paralell array that runs along side your button array.

    so...

    var buttonlinks:Array = new Array("m1.swf","m2.swf","m3.swf")

    and run whatever function...
  13. Replies
    2
    Views
    1,045

    im not too sure how your frames are layed...

    im not too sure how your frames are layed out(proximity wise) but if they are layed out one by one. IE previous frame from 6 would be 5.

    Then...

    on(release)
    {
    if((_currentframe-1) != 5)
    ...
  14. Replies
    14
    Views
    943

    More of a principle when working with the...

    More of a principle when working with the timeline.

    Glad to help. Great panoramics.
  15. Replies
    6
    Views
    506

    One real easy way to do it would be to store your...

    One real easy way to do it would be to store your buttons in an array.

    so...

    var buttonHolder:Array = new Array(b1,b2,b3);

    then when each button is clicked you call a function that will tell...
  16. Replies
    14
    Views
    943

    Looks like if you are splitting your frames on...

    Looks like if you are splitting your frames on the buttons layer, you will have to also split your onRelease codes to seperate frames.

    If you do that then it works.
  17. Replies
    14
    Views
    943

    heres an mx version better for you.

    heres an mx version better for you.
  18. Replies
    14
    Views
    943

    When working in flash...these are the kind of...

    When working in flash...these are the kind of small annoying bugs that will drive you mad. The best thing to do is always to take it back to basics and focus exactly on what you are trying to do.
    ...
  19. Replies
    14
    Views
    943

    Is all your code in the actions frames?

    Is all your code in the actions frames?
  20. Replies
    3
    Views
    835

    Kind of...but more like...

    Kind of...but more like
    _root.movieclipA.hitTest(_root.movieclipB)
  21. Replies
    8
    Views
    1,238

    Yes...so function loadExternalData() { var...

    Yes...so

    function loadExternalData()
    {
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    aColors = new Array();

    xml.onLoad = function(success)
    {
  22. Replies
    3
    Views
    835

    did you try hitTest(target:Object):Boolean yet?

    did you try hitTest(target:Object):Boolean yet?
  23. Replies
    14
    Views
    943

    Try putting the text layers below the mc layers...

    Try putting the text layers below the mc layers and let me know if that works.
  24. Replies
    8
    Views
    1,238

    You'll have to restructure your app to work only...

    You'll have to restructure your app to work only once all the data has loaded.
    Split your functions up even further. You just have to get all your logic working in the right order.

    easy example...
  25. Replies
    6
    Views
    506

    So, youve got three buttons...when one is...

    So, youve got three buttons...when one is selected the other two become deselected/disabled/unfocused?
Results 1 to 25 of 179
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center