Is it possible to load fxg graphics at runtime

Hi All,
I have costumers that want to change and update icons that where constructed with AI and are FXG graphics.
Is is possible to load FXG graphics at runtime?
Lior

The AppModule for a page is configured in an attribute of the root element of that page. Maybe that attribute is available at the OAWebBean parameter in processRequest.

Similar Messages

  • Load FXG Documents at Runtime?

    Anybody know if this is possible?

    Hi,
    I am a developer at rocketboots. I have been working on a runtime FXG parser, we call XInstance. Actually its a more generic MXML parser.
    It supports "{}" (binding syntax), but doesn't actual bind expressions but only assigns id's.
    We use it internally to load xml models at runtime and convert them to modal classes.
    I didn't really know where the FXG classes existed in the flex sdk, so i was building all the FXG classes myself (already spent 4 days) and i realised today that the classes are distributed in the spark and mx namespaces.
    Its not yet open source, but its going to be in several days, once i get a proper FXG demo working.

  • Loading vector graphics at runtime

    Hi,
    I'd like to know if there is any way or any vector graphic file format that i can load dynamically at runtime on a web-based flash application.
    I have some files in pdf that i want to load in and i can convert them to jpgs at runtime and load the jpgs but then i lose vector graphics so when i zoom in and out they become pixelated.
    I had a look a look at flashpaper to convert pdf to swf and load them in but i can't see anywhere in the documentation about converting the pdf's at runtime rather than manually dragging and dropping them in.
    So far i've looked at pdf, svg and .ai but none of these can be loaded at run time just imported into the .FLA
    So can this be done? Or alternatively is there an application that can do the pdf -> swf conversion from the commandline then i could trigger php to do the conversion at runtime.
    thanks in advance.
    Greg

    Hi All,
    I have a task to save running SWF file to be saved as vector graphics file format and get the same back in the Flex application. Request you to tell me what can be the vector graphics file extension and help me out how to achieve this task.
    Thanks & Regards
    Santosh Kumar G

  • Loading FXG fragments inside FP10

    Hi all,
    I want to consider an application where fragments of FXG (xml
    design markup as generated by, say, Illustrator) are stored in a
    database, then loaded by ActionScript code running inside FP10 in
    the browser and rendered. For example, the FXG could be combined
    with existing graphical elements.
    Is this going to be possible, or must FXG be compiled into
    SWG inside the Flex IDE?
    Many thanks for your help,
    Best, Dominic

    Hi all,
    I want to consider an application where fragments of FXG (xml
    design markup as generated by, say, Illustrator) are stored in a
    database, then loaded by ActionScript code running inside FP10 in
    the browser and rendered. For example, the FXG could be combined
    with existing graphical elements.
    Is this going to be possible, or must FXG be compiled into
    SWG inside the Flex IDE?
    Many thanks for your help,
    Best, Dominic

  • Is it possible to load a URL on stage?

    Hi,
    I'm using Flash CC-Action Script 3, is it possible to load a URL onto the stage?

    Thanks. I think our IT department will handle it since they do html/java/and
    all that stuff except for action script/flash. I am a little desperate
    though. I need to have this at least display a working clock for know and
    the phone list, which will display fine once I get to it. Can you be so kind
    and look at my horrible action script and help me get the clock to work
    continuously and show minutes under 10 with a "0"?  I just need to have
    something to show for our Annual Management meeting.
    Thank you sincerely for your time.
    Code:
    import flash.events.MouseEvent;
    import flash.text.TextField;
    import flash.text.Font;
    import flash.text.TextFormat;
    import flash.display.Sprite;
    import flash.text.*;
    import flash.filters.BitmapFilter;
    import flash.filters.BitmapFilterQuality;
    import flash.filters.BlurFilter;
    import flash.display.Bitmap;
    import flash.display.Loader;
    import flash.net.URLRequest;
    var link:URLRequest = new URLRequest("http://simplegreen.com/");
    //ADD CONTAINERS
    var containerStage:Sprite = new Sprite();
    containerStage.tabChildren = false;
    stage.addChild (containerStage);
    //DATE TIMER
    var my_date:Date = new Date();
    var my_timer:Timer = new Timer(1000);//create a new timer that ticks every
    second
    my_timer.addEventListener(TimerEvent.TIMER, onTimer);
    my_timer.start();
    //MONTH AND DATE
    var months:Array = ["Jan", "Feb", "Mar", "Apr", "May", "June", "Jul", "Aug",
    "Sept", "Oct", "Nov", "Dec"];
    var days:Array = ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri"];
    var todayIs = (days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    trace(days[my_date.day] + "," + " " + months[my_date.month]  +" " +
    my_date.date + " " + my_date.fullYear);
    //Text Loader
    var textLoader:URLLoader = new URLLoader();
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    textLoader.load(new URLRequest("assets/phoneList.txt"));
    var ampm:String = new String();
    var zero:String = new String();
    if (my_date.hours<12) {ampm = "AM";
    else{
    ampm = "PM";
    while(my_date.hours > 12){my_date.hours = my_date.hours - 12;
    if(my_date.minutes < 10){zero = "0" + my_date.minutes;
    else{
    my_date.minutes;
    function onTimer(e:TimerEvent):void {
    //my_date = new Date();
    trace(my_date.hours + ":" + my_date.minutes);
    var myDateTextBox:TextField = new TextField;
    myDateTextBox = new TextField();
    // myDateTextBox = todayIs;
    var dateStyle:TextFormat = new TextFormat;
    dateStyle.color = 0xFFFFFF;
    dateStyle.size = 48;
    dateStyle.font = "myriadMm";
    dateStyle.align = "left";
    var myTimeTextBox:TextField = new TextField;
    myTimeTextBox = new TextField();
    myDateTextBox.text = String(days[my_date.day] + "," + " " +
    months[my_date.month]  +" " +  my_date.date + " " + my_date.fullYear);
    myDateTextBox.width = 600;
    myDateTextBox.x = 70;
    myDateTextBox.y = 70;
    myDateTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myDateTextBox);
    myTimeTextBox.text = String(my_date.hours + ":" + my_date.minutes + " " +
    ampm);
    myTimeTextBox.width = 600;
    myTimeTextBox.x = 70;
    myTimeTextBox.y = 117;
    myTimeTextBox.setTextFormat(dateStyle);
    //Add it to the stage;
    containerStage.addChild(myTimeTextBox);
    //Event Listeners
    phone.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame);
    function fl_ClickToGoToAndPlayFromFrame(event:MouseEvent):void
    trace("directory ready");
    simpleGreen.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
    navigateToURL(link, "_self");
    videoDirectory.addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToAndPlayFromFrame_3);
    function fl_ClickToGoToAndPlayFromFrame_3(event:MouseEvent):void
    trace("Video Player is Ready");
    function textLoaded(evt:Event):void
    info_txt.htmlText = textLoader.data;
    With warmest regards,
    Mary Crotteau
    Graphic Design Specialist
    Sunshine Makers, Inc./Simple Green

  • How Air 3.7 load pure graphic swfs freely without using AOT mode

    Hi Nimisha1,
    I made an ios app which loaded pure graphics swfs from remote server. I cannot use AOT mode because the new pure graphics swfs increasing every day.   AIR 3.5 works very well, but I wonder how to make it work in the same way in AIR 3.7?
    thanks in advance,
    Jackie

    Loading a swf from remote server in Air 3.7 must be in AOT mode?
    I think i should first make some terms clear to you:
    AOT mode here applies to the target ipa-app-store which is supposed to published at Apple App Store.(And offcourse for testing purposes there are ipa-ad-hoc, ipa-test and ipa-debug and these all create IPA in AOT mode).
    Till AIR 3.5 on iOS - It was not possible to load child SWFs(containing ABC code) neither locally or remotely. But yes pure assets SWFs can be loaded remotely and locally as well.
    In AIR 3.6 on iOS- Loading of child SWFs(containing ABC code) locally was made possible. More info@  http://blogs.adobe.com/airodynamics/2012/11/09/packaging-and-loading-multiple-swfs-in-air- apps-on-ios/
    And behavior for loading pure asset SWFs remain unchanged.
    In AIR 3.7 on iOS-
    Loading of child SWFs(containing ABC code) remotely was made possible. More info @ http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/
    And behavior for loading pure asset SWFs remain unchanged.
    But in the following screenshot I can see that publishing in AIR 3.7 is getting failed and this must be happening because some of your child SWFs must be containing ABC code and that is not getting compiled properly.
    Can you please narrow down which SWF(s) is creating this problem?

  • Urgent - Is it possible to Load a DLL in ABAP ?

    Hi All,
       Is it possible to Load a DLL from ABAP ? If so how ?
    Thanks
    Sunil.M

    Hi sunil,
    1. Its not possible for DLL,
      but if its Activex EXE,
      (ie. OLE concept is there),
    2. then it can be done.
    regards,
    amit m.

  • Qosmio E10: Is it possible to upgrade the graphic adapter?

    Hello there,
    I have a question regarding a Qosimio E10. Is it possible to upgrade the graphics Adapter to a more recent one. (Now : Geforce FX 5200 Go 64 Mb) Because the one i use now is ot of date and I dont want to buy a new notebook just because of a Graphics Card !
    Thanks for your help
    Marco

    Hi
    No, its not possible because the graphic card is a little small chip which was fixed on the mainboard. The graphic card design is not the same like on the PC desktop.

  • Is it possible to upgrade the graphics card on a mid 2012 MacBook Pro? And is it possible to upgrade the RAM without voiding the warranty?

    Hi I was wondering if it is possible to upgrade the graphics card on a MacBook Pro and the RAM without voiding the warranty? I have a gt 650m in my MacBook Pro, non retina, and to me, its not enough power for me, so i was looking around, and I found a retailer that would give me a nvidia gtx 660m for a decent price. Also, the ram needs to be at least 12gbs, to ensure that my computer would run fast.
    If you can help, please tell me,
    Thankyou.

    No, the video card cannot be exchanged - you have a pretty decent GPU there; not sure why you'd want to switch it out. You can upgrade the RAM to a maximum of 16GBs. Apple recommends upgrading in matching pairs, so I don't really think I'd try 4GB and 8GB stick.
    Both Crucial and OWC have memory available for the new Macs. Both are reputable dealers and know Macs well and I would only buy from these sources (and I would buy Crucial, were it me).
    Although your Mac didn't come with a users manual outlining the installation of the additional RAM, you can download the late 2011 model users guide as the models themselves are almost identical.
    Good luck - write back with any questions.
    Clinton

  • Is It Possible To Upgrade The Graphics Card In A Late 2006 MacBook (original)?

    I have this Late 2006 Macbook, that still runs great and everything, but the only problem iv been running into, is video. So when i watch a video in QuickTime Player, or QuickView, or even YouTube, the video just randomly starts to flip out. So, is it possible to upgrade the Graphics Card?

    Sorry, not possible.

  • Is it possible to upgrade the graphics card on a 2010 iMac ?

    Is it possible to upgrade the graphics card mon my 2010 iMac for a more powerful one ?

    Have a look under 'More like this' on the right of this page.

  • Is it possible to upgrade the graphics card in the HP ENVY 17-j053ea?

    Hi
    I'm considering buying the HP ENVY 17-j053ea for use as a portable workstation for applications such as Max Design, autocad and photoshop as a second system for when I need to be away from the office but still need the ability to work.
    This machine seems to have a lot of bang per buck and is more in line with my budget than a full on portable workstation.
    As far as upgrade options I presume I could max out the ram at 16GB and put in an SSD as the main OS and application drive and use the main 1TB drive as the mass storage unit.
    What I'm wondering is if it possible to upgrade the graphics card in this machine?
    I don't imagine I would be attempting such an upgrade myself but assuming I leave it into a professional is this possible.
    My worry is that with some of my heavier model files I could feel the limitations of the mid range portable gfx card onboard. I could probably live with it if it is not an option but just putting feelers out.

    Thanks for the reply Paul
    I see.
    That doesn't sound feasible so.
    I can manage the other 2 upgrades within my budget but things seem to get quite expensive on the higher end platforms very quickly.
    It's my first foray into the laptop/workstation arena so I'm not that familiar yet with clever upgrade strategies.
    I did have the use of this model for a few days and It is a really nice overall laptop, both aesthetically and value wise.

  • Is it physically possible to upgrade the Graphics Card contained within the Mid 2011 Mac Mini that starts @ $799 (The one containing a AMD Radeon HD 6630M w/256MB)?

    Simply put, I may occasionally use a handful of high-demand video games on this device. An AMD Radeon HD 6630M w/256MB dedicated is a decent card, but may fall behind on the more demanding games, especially if I keep this system for an extended period of time. And if, sometime in the future, this device still stands but I find I require a more potent graphical source, is it physically possible to upgrade this piece of hardware without irreparably damaging the machine, regardless the methods needed?
    I would be more than willing, at that time, to void the warranty if it still stands and perform extensive deconstruction of the device, or have qualified computer repair workers do so for me. I just want to know if it can be done reasonably. I am aware that if this were the Integrated Intel HD graphics 3000 ONLY version, this would be impossible since that system is connected to the motherboard itself. I am hoping this is not a similiar case
    Worse case scenario, it turns out to be entirely impossible, and I will either have to look into other possible devices (should the price of SSDs drop soon, the iMac models as of late look encouraging, but only in that lower price scenario) or make the most of the 6630's capabilities, which I honestly doubt will be too terrible.
    Before answering in the negative, please attempt to investigate every possibility.

    Nope, the "Integrated Graphics" aren't really a video card at all.
    http://wiki.answers.com/Q/Is_it_possible_to_change_the_video_card_in_a_mac_mini_ a_mac_mini_10.5.5_Leopard_that_meets_all_the_other_system_requirements_so_that_i t_can_play_Spore
    http://forums.macrumors.com/showthread.php?t=1291669
    http://answers.yahoo.com/question/index?qid=20080920184551AAiwZ1x

  • Is it possible to load same vi in several subpanel ??

    Hi,
    Is-it possible to load same vi in several sub-panel on a vi ????
    Eddy DUCHENE
    12 F Chemin de Boutary
    69300 CALUIRE ET CUIRE
    [email protected]

    Well - as far as I know, that is not possible.
    If you try it with just two subpanels and the same vi to place in the subpanel, you once get error 1145 (LabVIEW: Cannot open VI because it is already in a subpanel control.).
    One way you could code a similar functionality was the usage of a tab-control. You could place your "views" on 5 tabs, make the tab-registers invisible and access the single tabs using a drop-down.
    Using LV8.0
    Don't be afraid to rate a good answer...

  • Is it possible to load a non-standard image using some Java API?

    Hi,
    My "problem" is:
    1. I have an image called "mediterranean_sea.IMG" (non-standard image format)
    2. I need to process it (histogram, palette, etc).
    3. I'm wondering if it is possible to load this image an process it using some Java API.
    4. I've tried to do this using JAI but I think that this API only works with TIFF, PNG, JPEG, etc.
    Any idea?
    Thanks in advance,
    Roger

    [url http://forum.java.sun.com/thread.jsp?thread=468188&forum=31]Cross-post

Maybe you are looking for

  • HashSet - equals and hashCode

    I must be missing the obvious over here..from what I understood of HashSet's/equals and hashCode, the program below should not add the Person object twice. Please suggest whats wrong... import java.util.*; public class TestHashSet2 { Set set = null;

  • TS1424 I am getting an 8008 error, file is corrupt when I try to DL my Harry Potter part 2 digital purchase to my laptop

    Can anyone help? It is DLing on my iphone 4 just fine. When it gets to 10mb on my Windows 7 laptop it restarts, 3 time and then gives me the error.

  • Weblogic installation hangs  rh v3.0 weblogic 8.1.3

    hi, The installation hangs after a while. the message is "updating file permissions" . I have full rights on the directory (rwx) in which i am installing . Do I need any other rights? Also the dumb thing hangs. no message .. Any help will be apprecia

  • Sizing text with key commands

    I recall seeing a co-worker use a sequence of key commands to resize text, but I can't recall what they were. Rather than highlighting text and going through a series of adjustments at regular increments until the text looked about right, the writer

  • Recommended mobile security management

    Hi,  I'm looking at deploying Windows Intune to manage mobile devices, beginning with mobiles. I would like to know if there are any specific Ms recommendations for policies which I can apply? I'm really looking for an Ms best practices guide about W