|
I have been using zendesk as a light-weight web-based help desk application for my organization (15 employees; 25 machines), and I am quite happy with it, however they don't currently have any asset management.
I am looking for the following features:...
Started by James McFarland on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
The community around it is very helpful and there are a ton of 3rd party add-ons a solution for Asset Management in the works - we will announce something soon :-)
Cheers, Michael.
And asset management.
|
|
I'm creating a 2d flash game (coded in flex/actionscript 3) where assets are downloaded when they are needed. Currently I have it setup like this:
AssetLoader.as
package { import flash.display.Loader; import flash.net.URLRequest; public class AssetLoader...
Started by Tom on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You should always uncached asset'); urlRequest = new URLRequest....
This is consistent with the way the Loader class we're extending works .
Update the asset.
Routine and don't forget to populate your static object with the newly loaded asset.
|
|
Alright, I need to set up a database for tracking fishing supplies inventory. The problem is that for each type of asset (rods, reels, jigs, hooks, etc.) there are different combinations of attributes that need to be entered.
Eventually I would like to...
Started by RCopeland on
, 13 posts
by 2 people.
Answer Snippets (Read the full thread at access-programmers):
Then create separate tables for each unique....
The Asset PK is the field that will be used throughout the app as the FK when linking back to the Asset table.
A completely normalized schema, use the asset table to hold all common fields.
|
Ask your Facebook Friends
|
Which is a better format to store graphic assets for a Flex application, SWF or SWC?
Are there any real differences, and if so what are they?
Started by defmeta on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's the docs you might be interested....
SWF is more likely what you're looking for when embedding graphics .
You have access to the classes and can import individual parts .
SWC is what you use when you're looking for a library to compile into your app .
|
|
I'd like to develop a CMS for fun/personal using asset-based architecture rather than page-based (why, is the purpose of this question), but I can't find much information on the subject. All I've found barely scrapes the surface (there's a good chance...
Started by Thomas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
<page....
It uses an MVC pattern and it provides classes called elements that may be inserted into layouts and can load whatever content you want based on the page, user, moon phase, etc .
You could very quickly scale this up using the CakePHP framework .
|
|
Is there any good way to handle large assets (i.e. 1000's of images, flash movies etc.) with a DVCS tool such as hg and git . As I see it, to clone repositories that are filled with 4 GB assets seems like an unnecessary overhead as you will be checking...
Started by Spoike on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Asset repository overhead even though it only affects those who do since you need to clone the large ....
Disadvantages :
DVCS tools don't keep track of other of these changes on their own .
RoR, etc.) and is syncing with the asset repo.
|
|
So, I have Flex project that loads a Module using the ModuleManager - not the module loader. The problem that I'm having is that to load an external asset (like a video or image) the path to load that asset has to be relative to the Module swf...not relative...
Started by onekidney on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For help in dealing with URLs, see the URLUtil class in the standard Flex... .
You can import mx.core.Application and then use Application.application.url to get the path of the host application in your module and use that as the basis for building the URLs .
|
|
Looking for something that looks nice, is flexable with reporting, and can track everything you would expect with good IT asset management.
Started by Forrest on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
It's a nice looking, easy to use web-based asset management system.
Will tell you where it is.
|
|
Hi all,
We are building a internal static asset server. Each environment (dev, staging, prod) has its own asset server, and the asset is reference throughout the web application (html, aspx, ascx, css, javascript, etc...)
To reference the correct asset...
Started by Herman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a library method which generates your static asset URL's AssetUrl(string relativePath) { // returns asset server address from web config with relative path the path relative to the static asset....
This at the application level, i.e.
|
|
I'm still learning how to compile with the Flex SDK. And I'm learning how to use SWC files and [EMBED] statements to pull my assets into my application.
With the Flash IDE, I can link a library asset to a class and it's automatically embedded into my ...
Started by Pup on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
?
Then, when asset is if it inherits from the base class , so it seems I can't associate custom classes with SWC.
A class associated with a Flash library asset must be contained within the same SWC.
|