Questions tagged [asset-management]

94 questions
1
vote
1 answer

Asset Database Design issues

I'm setting up an asset tracking database. Assets vary among black berries, PCs, servers, monitors, speakers, keyboards, mice, chairs, desks, cubicals, cubical walls, printers, refrigerators, microwaves... the whole range of things. That range would…
Maslow
  • 18,464
  • 20
  • 106
  • 193
1
vote
3 answers

Load file based on int value / filename android

I am trying to load a file from the assets folder, the file name i want to be based on the current value of an int i (ie if i = 2 then open 2.txt and 2.jpg). I have the following code that deals with the asset manager side of things, and is…
andy
  • 391
  • 13
  • 33
1
vote
2 answers

Howto extend Loader class and return cached assets in actionscript / flex 3?

I've been trying to create an universal asset loader class (with help of the folks here at stackoverflow), which remembers previousely downloaded assets by storing them in an associative array. This is the end result: AssetLoader.as package { …
Tom
  • 8,536
  • 31
  • 133
  • 232
0
votes
0 answers

Asset not found error in Expo CLI for Android platform and images not working

I'm encountering an "Asset not found" error in my React Native project using Expo CLI specifically for the Android platform. The error message mentions a missing asset file, "Puls%20Button.png," at a specified path. I've verified the file path and…
0
votes
0 answers

TypeError for get_nasdaq_symbols()

When writing: from pandas_datareader.nasdaq_trader import get_nasdaq_symbols traded_symbols = get_nasdaq_symbols() it gives "TypeError: read_csv() takes 1 positional argument but 2 positional arguments (and 3 keyword-only arguments) were…
user1680859
  • 1,160
  • 2
  • 24
  • 40
0
votes
1 answer

What is a good sample project to get into Digital Twin

we have developed a designed automation tool using Forge and VB.net to automate several tasks in the manufacturing/oil and gas industry, that makes the designing of pressure vessels take about a fourth of the time and steps required than without our…
0
votes
1 answer

Distribution a file with my android project that will be updated in the future

I'm creating a simple Android App, it will be a map with a number of points marked on it. These points will sometimes change, based on an XML file hosted on the internet. To reduce the initial load time my intention is to distribute a serialized…
Andy Smith
  • 3,308
  • 4
  • 26
  • 34
0
votes
1 answer

How to save a non txt file in data/files folder in android

A way to save a non text file to /data/files folder. If file resource is from assets folder.
eunique0216
  • 875
  • 1
  • 16
  • 28
0
votes
1 answer

Asset for multiple views in Yii2

So i am into the challenge of in passing the asset for a number of different views. As far as I am concerned, there are some ways, apart from adding use app\assets\SomeAsset; SomeAsset::register($this); to the layout page or calling out this…
Tony
  • 1
  • 2
0
votes
1 answer

Reloading Assets after android app has been paused

According to this libgdx wiki page https://github.com/libgdx/libgdx/wiki/Managing-your-assets OpenGL resources like Textures need to be reloaded after app has been paused. Here is my way to manage libgdx app assets I am loading all assets using…
MAGS94
  • 500
  • 4
  • 15
0
votes
0 answers

Should Java Heap Monitor show multiple instances for single object

I'm trying to find a memory leak in my Android Game (LibGDX). I Dumped the Java Heap and looked at my Asset Manager. It is showing 9 instances. In my code there is a single Object for Asset Manager which is being passed through multiple layers. i.e…
Greg Peckory
  • 7,700
  • 21
  • 67
  • 114
0
votes
1 answer

AssetManager not doing anything - LibGDX

My AssetManager class: public class AssetLoader { public AssetManager manager = new AssetManager(); public void load(){ manager.load("antoanimation.png", Texture.class); manager.load("antoButton.png", Texture.class); …
vladutelu
  • 157
  • 1
  • 7
0
votes
1 answer

Cassette.AssetReferenceException: Reference error in "~/Scripts/this.js", line 1. Cannot find "~/Scripts/jquery-1.7.1.js"

I cloned a git repo but have been unable to run the program due to the runtime error "Cassette.AssetReferenceException: Server Error in '/' Application. Reference error in "~/Scripts/this.js", line 1. Cannot find "~/Scripts/jquery-1.7.1.js". " At…
CoderCat
  • 1
  • 2
0
votes
1 answer

unable to access text file in asset folder

I'm trying to read from a txt file located apps/main/src/asset. The text contains fortune cookies that start with %. But my main problem it's been opening the file. What's the proper way to open a file in Android Studio. I created the asset folder…
miatech
  • 2,150
  • 8
  • 41
  • 78
0
votes
1 answer

LibGDX AssetManager and black textures & fonts

I have a game which does not/cannot use a "Loading Screen". I'm having some trouble using AssetManager to load assets on the fly after an Ad shows, or an IAP process happens - essentially whenever the OpenGL context changes. I've followed the wiki…
Townsfolk
  • 1,282
  • 1
  • 9
  • 21