IDE :: Stuck In Outline View - User Preferences File
Oct 4, 2011
I run a school lab with a few users on each machine. One students came up with a problem. She is always in outline view, even when the outline button in the layers panels is not punched. When I log in to the same machine, I do not have the problem. I assume the problem is in the user preferences file. We are on Windows 7. I went into AppData and deleted what I thought was the preferences file, but it continues to return.
View 1 Replies
Similar Posts:
Oct 4, 2011
I run a school lab with a few users on each machine. One students came up with a problem. She is always in outline view, even when the outline button in the layers panels is not punched. When I log in to the same machine, I do not have the problem. I assume the problem is in the user preferences file. We are on Windows 7. I went into AppData and deleted what I thought was the preferences file, but it continues to return. Anyone have any ideas why I can't get her out of outline view? Adobe Flash CS5
View 3 Replies
Jun 13, 2011
What's the standard way of storing user preferences in a Flex application for AIR? I need to store simple parameters like lists of recently opened files, window positions and sizes etc.
View 3 Replies
Mar 15, 2012
I need to create and read a user preferences XML file with Adobe Air. It will contain around 30 nodes.
<id>18981</id>
<firstrun>false</firstrun>
<background>green</background>
<username>stacker</username>
...
What's a good method to do this?
View 1 Replies
Sep 27, 2010
I'm on the user have to be able to draw/trace outlines of different shapes. So for example an "S" shape is on the screen, and the user needs to try to draw OVER that shape. So it's not just mouse recognition, it has to see if the user draw over that shape good enough. So it's kind of like a colorbook but you only draw the outline of the shape, if you know what I mean.
I've been searching the web and haven't found any pre made solution for this, but I thought that before I try to make it all from scratch I could ask you guys here about it.
View 8 Replies
Jul 17, 2010
- I create a new fla file in Flash CS5 Professional,- I go to publish settings and select AIR2 as the target- I click the Settings button on the rightThese settings are supposed to be saved with the fla file, since all of them are related to the project.Application name, icons, files to include, etc, are all preferences related to the fla file of which you are editing the settings.However, when you go to the "Signature" tab and select a digital certificate to sign the air application with, this setting will NOT be saved into the file.Instead, whenever you publish ANY air application, it will use by default the lastcertificate you have used, even if you used it to publish _another_ application.That is absurd, because this is a tab within the "publish settings" and all publish settings are specific to a fla file.
View 2 Replies
Sep 25, 2010
Now, I have a file, prefs.elf, that contains my preferences in the following formatlocation:USAaccountID:48996151894Now, what I'm hoping to be able to do is create an object with the labels as the object.So, I have an object, preferences, which I'd like to be able to get at these values through - like this: preferences.email or preferences.location. can read the file and toss these in an array really easily, but I'd like to do it a little more eleganty with objects.My main question is, how do I create the sub-objects to hold the value? In other words, how would I create preferences.location, or preferences.accountID without explicity specifying them in my code
View 2 Replies
Dec 12, 2011
I have my swf files which are getting called in browser when user opens its corresponding page. To ensure my swf is not used by user for his other purposes, i had to strict it to view from HTML page which has a variable. Same variable is passed from swf to this HTML.
if both variables does match then only swf starts preloading. this works fine for first time. But when user open the same page second time, he is only able to view preloader which does not progress further.
When i delete my temp file then user is again able to view the swf only once.
1. what is reason the swf from temp file cannot access variable of its HTML
2. am I doing it wrongly?
3. do i need to clear cache everytime or their is another method to do it?
View 6 Replies
Feb 17, 2010
A friend of mine asked for a simple program. Input: Coordinates of some points, spheres, planes etc. (from an excel document (strictly) ) Output: A 3D view of the input which the user can move the camera. The questions is, how can I do that easiest way. I have experience in C++, C#, Flash (AS), Java
View 2 Replies
Aug 14, 2011
i saw a flash movie clip used on a site and I like the way it was designed. The whole length of the file file is stable and then only the image outline slides into view on the screen. i have tried to do that but my whole image slides in just like normal motion tween.
View 6 Replies
Jul 23, 2009
I have a large swf that needs a preloader. With a normal preloader it took a couple seconds and then came in loaded halfway through. To solve this I created a small swf that loaded first and then loaded the larger swf through this one.
[Code]...
My problem: when the user goes back to the menu and tries to view the larger swf again the script that checks if it has loaded (and it has been loaded completely already) does not fire and therefore the file will not play again.
View 1 Replies
Dec 20, 2010
I'm making a plugin that used for posting a http url to the server every 3mins when we open a stream. and the server system will return
- 200 OK
- 400 FAIL.
In case of OK do nothing In case of FAIL stop the stream and open an pop-up window. User can press OK and a new page will be open.
View 0 Replies
Sep 10, 2009
In my flex app I have custom tooltips on buttons that hide and show based on user context. The problem that I dealing with is that when I call my showTips() function I only want to show tooltips on the buttons that visible in the view. So buttons that on a un-selected tab (tabNavigator) should not show the tooltips. For some reason all tooltips are showing. Is there a way to detect if a button is not in current view, like on a un-selected tab?
View 2 Replies
Jul 5, 2010
I have a movie which is serving as a button.When you rollover the image, it grows, and stops.When you rollOut, it shrinks, and stops.This code works fine. The Problem:When you scroll the mouse over quickly, the animation get stuck and doesn't execute the rollOut code.This is most likely because the first rollOver action hasn't yet completed.Here's my code:
thumb_test_4.onRollOver=function () {
this.gotoAndPlay(2);
}[code]....
View 9 Replies
Apr 29, 2010
When I try to load an xml file it gets stuck at 100%. It never completes. Does anyone know what to do about that? The code:
[CODE]....
View 2 Replies
Jun 5, 2010
I've been trying to get this preloader working for days! I finally got it working, and now when I upload it to my site and refresh the page, the .swf file is stuck at the preloader screen.
This is my code:
//Stop Framestop();
//Create a listener to call the loading function as the movie loadsthis.loaderInfo.addEventListener (ProgressEvent.PROGRESS, loading);
//Runs when the loading progress has changedfunction loading(event:ProgressEvent):void{//Determine the percent loaded from bytesLoaded and bytesTotalvar percent:Number = event.bytesLoaded / event.bytesTotal * 100;
//Stretch a progress barprogressBar.scaleX = percent / 100;
//Set the progressText text box to the percent loadedprogressText.text = int(percent) + "%";
//When the load is finished, go to frame 2if(percent == 100){this.gotoAndStop(2);}}
View 10 Replies
Apr 28, 2010
When I try to load an xml file it gets stuck at 100%. It never completes.Does anyone know what to do about that? The code:
Code:
private function onProgress(event:ProgressEvent):void {
var loaded:Number = loader.contentLoaderInfo.bytesLoaded;
[code].....
View 1 Replies
Oct 25, 2011
I am trying to run this AS code from wonderfl.net: [URL] I have downloaded the right files to ensure this works:
[Code]...
Might the errors be because the code is for Flash Player 11? As I am running Flash CS4, when I go to Publish settings, the highest flash player I can use is 10, so I can't choose 11. If anyone has time to take a peek, I have put the code together here, which contains the FLA, AS file, and the include libraries I mention above:
[Code]...
View 2 Replies
Jun 25, 2009
It is possible to make file transfer from air application via server?I think need to create like byte array streaming or somethink like this from sender and write the destination file on receiver user pc.
View 2 Replies
May 31, 2011
I followed the instructions located here:when i load the player and put the correct rtmp link, the video is stuck in bufferingI also tried the strobe media playback and getting the same issue.I also tried playing the sample.flv file located in the vod/media directory and getting the same problem
View 2 Replies
Apr 8, 2009
I have tried for a while to do a flash banner but i am stuck.I have cs4 flash installed.I want to have a banner like this one on top:http:[url]....My question is how to design this banner?I have tried to do a big banner in startup panel, i have read cs4 flash for dummies but i get stuck when the ball shall move in the fla-file.
View 4 Replies
May 12, 2008
loadVariablesNum("testimonials.txt", 0);
gotoAndPlay("load");
This code works perfect when testing, and it works perfect viewing the SWF, but when you view the HTML file with the SWF embedded, it doesn't display the text file content.
View 5 Replies
Apr 15, 2011
When i save the file as an .swf file to view it in my browser the video gets really big (sized the flash document 250x240 px) . How can i easily control my flash video sizes?
another thing: When im doing a video and work with things that are outside of my white document (in the gray area) for instance things that are to be faded into the document and so on. These things also show up in outside of my video when i view it in my browser.
View 1 Replies
Jun 5, 2010
I've been trying to get this preloader working for days! I finally got it working, and now when i upload it to my site and refresh the page, the .swf file is stuck at the preloader screen.
[Code]...
I've been reading up on it for a while now, but I can't seem to figure it out.
View 1 Replies
Aug 10, 2009
Why i can not get "Apply" to activate? I have done something (likely to .actionScriptProperties) that has messed up my entire projects profile in flex...i can't even reset the default application class.
View 1 Replies
Mar 25, 2011
Does it happen to anyone else when you edit anything in the preferences window that Flash CS5 crashes? I've reinstalled the program as well.. any tips I can try?
View 2 Replies
Aug 19, 2010
I have to run Flash Builder as administrator to install an xml formatter that I want to use.I found that it has removed all my preferences like hot keys that I setup and my perspectives etc.If I switch back to just running not as administrator I get them back but now I don't have the xml formatter anymore.
View 1 Replies
Jul 22, 2011
I've developed an ActionScript 3.0 for Adobe Air application (it will run on Blackberry Playbook).
This app has some bugs and I've made an update.
When user install the new version I want to delete previous user data.
How can I do that?
View 1 Replies
Oct 4, 2010
I have a problem with a dynamic video player that I have created in flash. The video player is "SCORM" compliant so that when the user clicks the "exit" button a class file is called to mark the user complete in an LMS.I have tested the SCORM Code previously and it works with out issue. Usually I have the completion code embedded in an Actions Layer of the movie. This is the first time I have attempted to call the completion status in a class file, I have added a "trace statement" when the movie is tested within flash it runs the trace statement properly, but when uploaded to the LMS environment the course does not complete properly
View 3 Replies
Jul 14, 2009
I'm having a very weird problem, I cannot flash CS3 on my mac, I tried uninstalling, manual uninstall,deleting all prefernces, installing under new user, everything that was mentioned in this document
[code]...
I have no idea why this is happening, I have a valid licence and I did everything as its supposed to be done, when I try to open Flash it gives me the error illustrated in the attched image.
View 1 Replies