Questions tagged [urlloader]

223 questions
0
votes
1 answer

Flex: Getting feedback from URLLoader after sending information to a coldfusion file

I have a scheduling application that allows users to save any changes. When the user clicks the save button, Flex sends all the information to a coldfusion script which picks the information apart and sends saves it to the database. That all works…
Brds
  • 1,035
  • 3
  • 17
  • 37
0
votes
2 answers

Is it possible to extract the symbol out of swf file which was downloaded using URLLoader (and not embedded))

I am trying to download a heavy swf dynamically to my site using URLLoader class. I'd like to know if it is possible to use a symbol inside the swf as a separate object? The code used right now uses the embed statement as…
Shiva Nandan
  • 1,835
  • 1
  • 13
  • 11
0
votes
1 answer

Webpack: 414 Request-URI Too Long for an image

I am developing a website using React and I use Webpack to bundle the files. I use several .png images on the site but I have a problem with one of these since when I try to create the package, this image is not loaded and in the Google Chrome…
El_Merendero
  • 603
  • 3
  • 14
  • 28
0
votes
0 answers

Not able to view the Uploaded image (on the backend server) using Webpack with url-loader/file-loader in React

I am working on a FileUploader ( Images for now) which will enable the user to upload multiple files to the backend server in one go. I have the following setup Webpack configured with url-loader supporting all kinds of images. I have a React…
ryan
  • 694
  • 9
  • 23
0
votes
0 answers

Wepack url-loader is ignoring CSS backgrounds

Im trying to use url-loader to convert file URLs into inline data URLs for my CSS backgrounds. When I run the build command, it generates the CSS & JS files without any error but the background image URLs remain unchanged in the CSS output. Here's…
jd182
  • 3,180
  • 6
  • 21
  • 30
0
votes
2 answers

Flex 3: reading external xml file - having some issues

I've tried every example I could find, but nothing really worked. What I'm looking for the to actionscript code (without using classes - i'd like to do all the code in the section of the mxml file) to load in an XML file that is stored in the same…
Brds
  • 1,035
  • 3
  • 17
  • 37
0
votes
1 answer

URLLoader in actionscript 3 not using the same web session on some machines?

var loader:URLLoader = new URLLoader(); var request:URLRequest = new URLRequest("http://domain.net/registerVideo.php"); var vars:URLVariables = new URLVariables(); vars.action = "insert"; vars.record = publishMode; vars.name =…
compile-fan
  • 16,885
  • 22
  • 59
  • 73
0
votes
2 answers

Flash player breaks when loading .csv file with URLLoader

Greetings everyone... I've made a little flash, with AS3, to view the data generated by some program I wrote... The data is in a .csv file and are loaded to the memory with a URLLoader object. The flash loads well .csv files which can come to almost…
Girardi
  • 2,734
  • 3
  • 35
  • 50
0
votes
0 answers

Webpack url-loader encodes image url but breaks file Path

I following this post of how to setup webpack and url-loader can successfully encode the url but the image path is broken and image does not show up. I am not sure what I am doing wrong. Am I missing something obvious? Thanks for any help you can…
bilcker
  • 1,120
  • 1
  • 15
  • 43
0
votes
0 answers

Cannot load background image in react

I am new to react and I am trying to set a background image with scss in react. However, I get an error in webpack: ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js!./src/styles/styles.scss Module not found: Error: Can't…
rajput sufiyaan
  • 61
  • 1
  • 14
0
votes
1 answer

Webpack URLLoader limit want small

I want my url loader limit small but many examples have over 5000. Why do that? If the limit is big then the css file size is also big { test: /\.(jpe?g|png|gif|ico)$/, loader: …
shanek
  • 3
  • 2
0
votes
1 answer

Unable to load static image with react@16.4.2 component with webpack

I am trying load static image in my component named as Top.js so i have import image like below in Top.js: import logo from './images/logo.png' path for logo.png is frontend/src/images/logo.png . After that i am trying to use this in my JSX in…
Jitendra
  • 3,135
  • 2
  • 26
  • 42
0
votes
1 answer

ActionScript operator as

does anybody have a good explanation of the as operator? On one hand it seems to me, that it is often better to use as instead of instantiating a new object. But then there are situations, when this operator let's me down. For example when loading a…
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
0
votes
1 answer

404s on some images from Webpack url-loader

There are a lot of questions on this, and a lot of answers, read below to see what I've tried, and how they didn't work. I assume my problem is coming from a fundamental misunderstanding of how url-loader works. I have images included like this in…
Caleb Jay
  • 2,159
  • 3
  • 32
  • 66
0
votes
0 answers

Webpack Muti Page Application bundle the image into different fold

I have a Multi Page Application, entry: { vendor: ['vue', 'vue-router'], index: path.join(__dirname,'../src/pages/index' ,'main.js'), page2: path.join(__dirname,'../src/pages/page2' ,'main.js'), }, add the url-loader…
Leon
  • 11
  • 5