Questions tagged [uiloader]
17 questions
2
votes
1 answer
QUiLoader: requirements for loading .ui file with custom widgets?
I've created a UI using Qt5-Designer which I load at runtime by calling
QUiLoader().load(qfile_object, this);
Works like charm but now I've promoted some QLabel elements to a widget class MyQLabel with is derived from QLabel.
When I now try to…

frans
- 8,868
- 11
- 58
- 132
2
votes
1 answer
Possible uiloader issue when converting pyside app using cx_freeze
I am trying to convert a pyside app to an executable (.exe) on Windows using cx_freeze. The packaging works with no problem, but when starting the generated .exe file, I get the following error:
ImportError: could not import module…

eggerra
- 21
- 2
1
vote
2 answers
AS3 UILoader: Load never completed
I am trying to load cover art from movies into UILoader components in Flash CS5.
I'm using the IMDB API to retrieve the URL's to these images, but I know for a fact that this code works, and that the URL's are valid (copy-pasting them into a browser…

Jort
- 1,401
- 8
- 23
- 39
1
vote
2 answers
addEventListener in SWF Nesting
I currently have a .swf file that is nested into another .swf file.
In the parent SWF file I use a UILoader to load the other .swf file.
uiLoader.source = "data/child.swf";
-
In the child SWF file I have…

triangulito
- 202
- 2
- 16
1
vote
1 answer
AS3 UILoader swf continues to play in the background
I have a simple expandable advertisement which loads an external SWF file. The external SWF file contains an embedded video.
Using the UILoader component, I have loaded the SWF, added it to the stage and the video displays and plays fine.
The main…

Chris
- 4,762
- 3
- 44
- 79
0
votes
1 answer
Getting Physical Path in SWF File
I'm using UILoaders to load different .swf files into the main .swf and am having a problem when I try to load a specific .swf file after a series of steps.
I wanted to know if there was a way to see which is the current path that the application is…

triangulito
- 202
- 2
- 16
0
votes
1 answer
EventListener still active even though uiloader unloaded
I'm currently using three uiloaders inside a parent movieclip which loads three other swf files. Each of these movieclips have keyboard events that when struck call different sounds.
I'm having a problem when I go to a movieclip and return to the…

triangulito
- 202
- 2
- 16
0
votes
1 answer
AS3 UILoader External Image Loop
I am looping a code where n images are loaded in n UILoader components on the stage using a dynamic XML.
var aLoader: UILoader = new UILoader();
MovieClip(parent).box1_mc.match1_mc.flag1_mc.source = "C:\\Saverio\\Scoreboard\\Flags\\Squared\\" +…

DiegoG
- 11
- 1
0
votes
1 answer
FlashPaper and UILoader acting strange
I've got a timeline with multiple frames. In tow of those frames, I have UILoader which loads a FlashPaper SWF(different for each frame). When the user clicks on the button to navigate to one of them, that UILoader will properly load the FlashPaper.…

Moshe
- 57,511
- 78
- 272
- 425
0
votes
2 answers
I am looking for a simple solution to loading a new/different mp3 sound file upon clicking a thumbnail using my existing code below
This seems simple enough, I just can't crack it though.
currently, in the below code. its a UILoader with a series of thumbnail mc's horizontally across the bottom of the FLA. when the thumbs are clicked and new SWF loads in the UI.
I am simply…

Paul Fenn
- 1
- 1
0
votes
1 answer
UILoader cover background in ActionScript 3
I'm using ActionScript 3 and the UILoader component to show a .jpg image.
I would like a "covered background" result, like the css property :
background-size : cover;
I tested the parameter scaleContent (true or false):
uilBackground.scaleContent =…

Julien Malige
- 3,295
- 1
- 20
- 39
0
votes
1 answer
How to add two UILoader inside a UILoader and save the contents of the UILoader using actionscript 3
I have been into a research these past hours in figuring out how to add a UILoader inside a UILoader and save all the contents of a UILoader. I have two instance of UILoader (loader_inner and loader_outer) and they are both placed manually using the…

Vindi
- 3
- 2
0
votes
1 answer
AS3 - Smooth images loaded in UILoader
The UILoader size is 200x200 pixels. but when I load large images to this small square (image sizes like 600x600 pixels), it looks like it isn't smooth. I've tried:
theUILoader.source = "a.png";
Bitmap(theUILoader.content).smoothing = true;
but it…

Milad
- 1,239
- 3
- 19
- 37
0
votes
1 answer
How do i get my UILoader to play an .SWF once then disappear?
How do i get my UILoader to play a .swf file once then disappear until called upon again?
I am creating a guitar tutorial app that shows you chords and the transitions between them. to display the chords I'm using standard Flash graphics and for the…
0
votes
1 answer
Panel Color custom in FLASH CS6
I have a Flash file.
I'm working on this demo project where I want to customize the color of the panels according to the thumbnails when clicked on them.
The colors of the front floor must change accordingly to the color mentioned and same goes for…

Lemdor
- 150
- 3
- 15