Hi dcipher,

I'm guessing you have to change your asset hints [1]:
#asset(<args>) -> @asset(<args>)

Furthermore (in order to prevent similar problems) did you migrate [2]
via: "./generate.py migration"? I would recommend that.

If this is not your problem, can you give me more context?

If I understand you correctly, "dcbase" is a library you are using.
And this lib has an image which on the filesystem should reside here:

dcbase/source/resource/dcbase/fltIsEqual.png

Then you should be able to register it (via an asset hints [3]) like this:

  * @asset(dcbase/*)

... and use it like that:

var b = new qx.ui.form.Button("First Button", "dcbase/fltIsEqual.png");

qooxdoo will then use this resource id [3] to request it:

source version ("./generate source")
------------------------------------
http://localhost/dcbase/source/resource/dcbase/fltIsEqual.png
(image loaded from original location, i.e. image must
be reachable via http! => i.e. check DocumentRoot etc.)

build version ("./generate build")
----------------------------------
http://localhost/ml_7jan/build/resource/dcbase/fltIsEqual.gif
(image loaded from same app, image was copied from "../dcbase" to app,
in order to generate a self contained build version)

HTH

Regards
Richard

[1] 
http://manual.qooxdoo.org/3.5/pages/tool/migration/migration_guide.html#compiler-hints
[2] http://manual.qooxdoo.org/3.5/pages/tool/migration/migration_guide.html
[3] http://manual.qooxdoo.org/3.5/pages/desktop/ui_resources.html

------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to