ActionScript 2.0 :: Price Band Slider To Load PHP?
Sep 15, 2009
I have created a Flash price slider which when you scroll up and down the number in a dynamic text box changes to suite where you are on the slider (when you release it).I am using this code:
this.price=0 ;
dragger.onPress=function(){
this.startDrag(true,0,0,line._width,0);[code]........
View 0 Replies
Similar Posts:
Mar 29, 2009
I would like to know if it is possible in flex to do the following actions. I have made an HTTPService to a MySQL database, table: orders_open and it has columns
Id | product | price | units | total_price | customer | waiter | printed | paid_cash | paid_card | date
The datagrid is filtered by the customer column. Default value of | printed | paid_cash | paid_card is 0
1)How can I make flex take the price and units and calculate automatically the total_price? In the datagrid and update the database lines when I save.
2) Sum up all filtered total_price �s and give the bill_total in a text field
3) When paid, print the ticket | product | price | units | total_price | and the bill_total in a printer
My code has been created by Flex (create application from database)
View 1 Replies
Dec 27, 2010
My band has a reverbnation profile, and I just recently started editing a flash7 site template that I purchased for the band. I happen to know enough to edit everything that is existing, but adding new content is a bit beyond my imagination and most of the tutorials I have found are all for creating new movies and use AS3 instead of AS2.
I created a new "dynamic" "classic text" text field (instance name of "rss" - variable set to "rss_output") in layer 1 of a section of my scene (movie clip) called "pages_tours".There is no other item in layer 1, frame 1 of this movie clip.In this thread: the author states that he was able to call xml data from another domain and post it on his site and this could possibly be used to snatch & display RSS data as well.I had created the proxy.php file, with code inside, saved as proxy.php (no .txt attached.)
PHP Code:
<?php $url = $_POST['http://www.reverbnation.com/rss/artist_shows_rss/**mybandnamehere**'];readfile($url);?>
I right clicked the frame of layer 1 and clicked "actions" and then pasted the code presented in that thread.
Code:
var Sender = new LoadVars();
var GetData = new XML();
GetData.ignoreWhite = true;
GetData.onLoad = function(success) {
[code]....
I tried a CTRL+ENTER test run and nothing happened in the page_tours area of the site.There were no compiler errors.
View 1 Replies
Feb 21, 2012
I would like to do script to do 10 band equalizer which would change sound from microphone dynamicly (in real time) and result play in earphones (also realtime) with small time lagIs that possible? Maybe some paid library? I would like to get 15 band EQ.
View 4 Replies
Dec 17, 2009
I am trying to setup a way to sell my music downloads through paypal with a "name your price" method.I want to use a textinput component. If the person types 0 (zero), it will take them to the DOWNLOAD PAGE. If they type in any other positive number, it will take them to paypal with that amount as the unit price.This is an editable link to a paypal item:URL...[code]within that link, there is a code for the price. it its "amount=1234" is there any way i could make it that whatever the person types into the textinput will be put into that code and then they are sent to that link?
View 1 Replies
Aug 22, 2010
I've got an annoying little problem with recreating a RTS style interface, specifically with selection and issuing movement commands to units. It's goes something like this...
[CODE]...
The idea is that you click on the tank to select it (a new listener is added) and then you click again elsewhere on the screen to tell the tank to move/shoot whatever (the new listener is acted upon). However what actually happens is that when you select the tank, the listener for "handleOrder" is added but is then also immediately executed..!? How, why, what the f.
View 4 Replies
Jan 13, 2012
Looking for help! I need to post a stock price on a swf webpage. The stock symbol SNA.V is only available from yahoo finance (as far as I can tell). It's a Canadian company traded only on TSX. Anyway, I need a way to display the current stock price and have it refresh by itself. Yahoo finance offers a widget, but does not support most international codes. I don't need anything other than the current price in text. I can get flash to retrieve the external text from [URL].. - but, I can't get it to refresh on its own - also, the swf won't access the external source once it's online (just displays a security warning). I'm looking for any ideas to work around this issue.
View 11 Replies
Sep 21, 2009
how to create price strings from numbers.E.g. a product could have a price of 25.50. however this will show as 25.5, as it removes the 0.I would like to convert this number (25.5) to a string, and format it as a price, e.g. "25.50"In C#, its easy, you just do .toString("0.00");but i can't find any way of doing it in Actionscript. Is there an easy way or do i have to do some string splitting and such?
View 2 Replies
Oct 21, 2010
The problem is that I want to load external images. But it's keep giving me output errors, these are they:
Error opening URL 'file:///C|/Users/Tim%20Backx/Documents/2.%20Stage%20werk/Website%20V isual%20Brand/Bronnen/Sliders/undefined'
I know I'm giving only one error. But this multiplies by 3 and they are al the same.So the swf works but the don't show up.
Here is my AS code:
playclip._visible = false;
menu.button_mc1.title_txt = title1;
menu.button_mc2.title_txt = title2;
menu.button_mc3.title_txt = title3;
menu.button_mc4.title_txt = title4;
[code]...
View 6 Replies
Feb 18, 2010
So i want to make a form which people can use to get price quotes immediately. There will be about 15 fields. I have 'some' clue as to how this 'might' be done. The 'if' statement could be used. But that sounds like a lot of combinations and a lot of scripting. I would also like them to be able to send the form to my email if they want.
Now i know how to script the basic forms.. eg. contact forms.. etc. with php and all. So once they've selected specific info from the fields, i'm sure i can have it sent into my inbox. But I don't get how to do the main thing (the price quote display - according to the information selected). Will it have to be XML based? Something to do with a database? Or what?
View 2 Replies
Jan 10, 2012
I'd like to build image slider like Nivo slider with Adobe Flash Builder.
i'd like to have image controls, image titles displayed above the image(like layers in flash). i'd like to read the data from xml.
i'd like to have nice transitions between images.
mayebe u can provide tutorial or source code.
View 1 Replies
Mar 25, 2010
What I have is a map that you can click on points and it will zoom in, you can also click on a "plus/minus" buttons to zoom in and out (I even have the mouse wheel zooming in and out). The client wanted me to add a "zoom slider bar" to it so you know you could move it up and down to scale it. Everything is working except the slider, I can't seem to get it to work with the position of the slider. All of the zoom functionality is there but the slider is killing me.
I am putting up the fla file since there is a lot of code in there and I didn't want to put it all in the forum. if you look in the fla in frame ten on line 726 you can find the function that is supposed to handle the zooming when you move the slider. Up on line 74 you can find the slider onPress and onRelease functions, but those I believe should be fine.
View 2 Replies
Dec 1, 2009
I am trying to create a basic timeline, similar to the timeline we all use in flash (see attached).
I have a playhead slider, which when dragged, just drags within its startDrag() limits.
I also have horizontal window scroller which also when dragged, just drags within its startDrag() limits.
I am trying to work out how to get the horizontal window scroller to scroll when the playhead slider hits the left or right edge. I am using hittest for this collision.
I have the playHeadSlider scrolling along the top. When playHeadSlider collides with hittestThing I want mcContents to then move.
It kind of works.. mcContents moves when the playHeadSlider is in collision with the hittestThing.. but it just moves rather than 'drags' across. I have it set up so that mcContents is twice the width (approx) of mcScrollWindow.
I need to somehow update what I have so that if the playHeadSlider collides with hittestThing on the right, mcContents only moves to the right and if playHeadSlider collides with hittestThing2 on the left, mcContents only moves to the left.
View 0 Replies
Sep 8, 2006
I am trying to sort XML data based on an attribute "price" (or p). I'm trying to sort the prices numerically so that, for example, 1230.00 does not show up before 19.00. I have defined a preliminary price sort function as follows:
[Code]...
How do I edit this function so that the prices will display in numerical order rather than string value order?
View 4 Replies
Aug 21, 2009
will post the code if concatenate a string to be a price?
View 2 Replies
Dec 17, 2009
I am trying to setup a way to sell my music downloads through paypal with a "name your price" method.I want to use a textinput component. If the person types 0 (zero), it will take them to the DOWNLOAD PAGE. If they type in any other positive number, it will take them to paypal with that amount as the unit price.
This is an editable link to a paypal item:
https://www.paypal.com/cgi-bin/websc...item_name=item name&amount=1234%2e00¤cy_code=USD&button_sub type=products&no_note=1&no_shipping=1&rm=1&bn=PP%2 dBuyNowBF%3abtn_buynow_SM%2egif%3aNonHosted
within that link, there is a code for the price. it its "amount=1234" is there any way i could make it that whatever the person types into the textinput will be put into that code and then they are sent to that link? some people recommended php and html, but i feel like i could do this in flash.
View 2 Replies
Jul 3, 2009
I'd like to make a circle slide ( Slider that on the shape of circle instead of vertical and horizontal Slider) like this one:
[URL]
Is there a ready Component on the web.
View 0 Replies
Aug 18, 2009
I am just learning AS3, and have no idea whatsoever about the differences between 2 and 3. There is a bit of code from [URL] that I wanted to update to use AS3, but it was written in AS2. Here it is:
[Code]....
I get twelve total errors (there are six buttons with a slider next to them, and there are 2 types of errors). The first is: 1119: Access of possibly undefined property onPress through a reference with static type flash.display:SimpleButton. The other is 1120: Access of undefined property _root. The key parts of the code (I think) are the button names, and slider_mc., a little black square that slides up and down the height of the menu. All of the buttons are button symbols, each with a unique name. I read that to fix the 1119 error, I can convert them to movie clips, but then they no longer function as buttons (which is sort of the point).
View 2 Replies
Apr 22, 2010
I was wondering if anyone knew or could point me in the direction of a tutorial that will allow me to achieve this slider effect - but without using xml The effect is exactly what I need but on the particular network I need to upload to it doesn't seem to be able to load the images, I have tested it on other sites so know it is not a error.s there a way to achieve the same effect with the images already embeded in flash?
View 3 Replies
May 11, 2009
I'm a designer that inherited a project with a volume slider. I'm not that good with actionscript yet and haven't been able to figure out the code. The volume and slider starts at 100%, and I need it to start at 50%. Can you tell me how to set both the volume and slider at 50%? I'm sure it is a simple solution but I can't figure it out. I tried a few things but have not been able to get it to work correctly in both the volume level and start position for the sliderHere's the code on the 2nd frame of the mc:
Code:
stop();
var NiVol:Sound = new Sound(_root.Container);
[code].....
View 4 Replies
Aug 16, 2009
I apologize for being a newbie. I have been trying to figure out how to reverse an EKG movieclip to go from right to left instead of the direction it is currently moving:
View 16 Replies
Sep 2, 2009
[url]...Is this done purely in Flash CS4 or is another one of Adobe's products involved too?
View 2 Replies
Mar 1, 2012
Is it possible to add a slider to a datagrid. Basically, a column of sliders.
View 3 Replies
Aug 21, 2011
I apologize, the math must be too complicated for my right-brained mind. I've created a slider bar widget with a slider knob thingie who's start/stopDrag is restricted to 100px along the x axis.
I need to resize another movie clip from 25%-400% based on the slider's knob position.
I need slider(and respective MC) to start at 100% by default. I've started with something like this (below) but the math is wrong, and I can't figure out how to do this for the life of me.
[Code]...
View 3 Replies
Feb 28, 2006
First, when you download attache file, make sure that file will be in same directory(c: emp). in file test.fla in frame 5 in layer snowing is movie clip, name mcPoly. Now, load testing.swf and hit the movie button. The movie(test.swf) is load, now push the play button and wait until the snowing come, then press the pause botton, and you will see that the snowing keep snow.My questions is, how to stop the snow, when the pause button is press, and when you move the slider, where the snow is starting, the snow has to rest until the play button is press.
View 3 Replies
Jun 30, 2008
I have mad this from a tutorial. Now the slider goes left but i wants it to go right but i just cant seem to get it to work.[code]
View 2 Replies
Oct 20, 2008
I have been working through this tutorial [URL] and have everything working pretty well but have two questions/problems:
1. Does this only work with buttons? I have tried to replace the buttons with MC and keep the same instance name but then it does not work - can I get this effect using movie clips instead of buttons?
2. How can I get the slider to appear on rollover (on any button) and then start its sliding effect as demonstrated?
View 2 Replies
Mar 30, 2009
I made a volume slider which works with a draggable mc to control the volume. But I want to do a bit different slider using a mask like the slider in Component box. The aria I want to drag over is a rounded rectangle. I make a rectangle which will be my bound and i use the rounded rectangle to mask it. How should i continue.
View 1 Replies
Dec 30, 2009
I am creating a timeline for a website and there is a slider located at the top of the page where the years are defined on a line. The slider should be able to be moved by the clicking on it with the mouse and dragging it thus moving the timeline information directly below it from right to leftIf ANYONE knows any codeing or how to accomplis this in Flash CS3 actionscript2; If I am able to log onto my tempsite soon... I will upload what I have so far and post it in a reply thread. I have created the pieces of this puzzle in flash just as a motion tween to show the concept that I am trying to create. When the slider moves right to a greater year, the timeline image pans left. Vice versa
View 1 Replies
Mar 5, 2012
So i got the slider itself working, but how would I, for example with a slider length of 1 to 100 pixels create an array of numbers between 20 and 200? (or simply between numbers x and y)?I figure theres tutorials all over the web for a formula, and that theres even a simple 9th grade math equation for it, but im simply too lazy.
View 9 Replies